Fix ID assignment on SQLiteHabitList

This commit is contained in:
2020-01-05 08:07:06 -06:00
parent 895d66b663
commit 547c7ffdf7
3 changed files with 66 additions and 11 deletions

View File

@@ -0,0 +1,54 @@
/*
* Copyright (C) 2020 Álinson Santos Xavier <isoron@gmail.com>
*
* This file is part of Loop Habit Tracker.
*
* Loop Habit Tracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Loop Habit Tracker is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.isoron.uhabits.regression
import android.support.test.filters.*
import org.isoron.uhabits.*
import org.isoron.uhabits.acceptance.steps.CommonSteps.*
import org.isoron.uhabits.acceptance.steps.CommonSteps.Screen.*
import org.isoron.uhabits.acceptance.steps.EditHabitSteps.*
import org.isoron.uhabits.acceptance.steps.ListHabitsSteps.*
import org.isoron.uhabits.acceptance.steps.ListHabitsSteps.MenuItem.*
import org.junit.*
@LargeTest
class ListHabitsRegressionTest : BaseUserInterfaceTest() {
/**
* https://github.com/iSoron/uhabits/issues/539
*/
@Test
@Throws(Exception::class)
fun should_not_crash_after_deleting_then_adding_a_habit() {
launchApp()
verifyShowsScreen(LIST_HABITS)
longClickText("Track time")
clickMenu(DELETE)
clickOK()
clickMenu(ADD)
verifyShowsScreen(EDIT_HABIT)
typeName("Hello world")
clickSave()
verifyDisplaysText("Hello world")
longPressCheckmarks("Hello world", 3)
}
}