-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
454 additions
and
2 deletions.
There are no files selected for viewing
354 changes: 354 additions & 0 deletions
354
app/src/androidTest/java/com/example/util/simpletimetracker/RecordActionsRepeatTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,354 @@ | ||
package com.example.util.simpletimetracker | ||
|
||
import androidx.test.espresso.Espresso.onView | ||
import androidx.test.espresso.action.ViewActions.click | ||
import androidx.test.espresso.matcher.ViewMatchers.hasDescendant | ||
import androidx.test.espresso.matcher.ViewMatchers.isCompletelyDisplayed | ||
import androidx.test.espresso.matcher.ViewMatchers.withId | ||
import androidx.test.espresso.matcher.ViewMatchers.withText | ||
import androidx.test.ext.junit.runners.AndroidJUnit4 | ||
import com.example.util.simpletimetracker.utils.BaseUiTest | ||
import com.example.util.simpletimetracker.utils.NavUtils | ||
import com.example.util.simpletimetracker.utils.checkViewDoesNotExist | ||
import com.example.util.simpletimetracker.utils.checkViewIsDisplayed | ||
import com.example.util.simpletimetracker.utils.checkViewIsNotDisplayed | ||
import com.example.util.simpletimetracker.utils.clickOnRecyclerItem | ||
import com.example.util.simpletimetracker.utils.clickOnView | ||
import com.example.util.simpletimetracker.utils.clickOnViewWithId | ||
import com.example.util.simpletimetracker.utils.clickOnViewWithText | ||
import com.example.util.simpletimetracker.utils.longClickOnView | ||
import com.example.util.simpletimetracker.utils.nestedScrollTo | ||
import com.example.util.simpletimetracker.utils.recyclerItemCount | ||
import com.example.util.simpletimetracker.utils.tryAction | ||
import com.example.util.simpletimetracker.utils.withCardColor | ||
import com.example.util.simpletimetracker.utils.withTag | ||
import dagger.hilt.android.testing.HiltAndroidTest | ||
import kotlinx.coroutines.runBlocking | ||
import org.hamcrest.CoreMatchers.allOf | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import java.util.Calendar | ||
import java.util.concurrent.TimeUnit | ||
import com.example.util.simpletimetracker.core.R as coreR | ||
import com.example.util.simpletimetracker.feature_base_adapter.R as baseR | ||
import com.example.util.simpletimetracker.feature_change_record.R as changeRecordR | ||
import com.example.util.simpletimetracker.feature_records.R as recordsR | ||
|
||
@HiltAndroidTest | ||
@RunWith(AndroidJUnit4::class) | ||
class RecordActionsRepeatTest : BaseUiTest() { | ||
|
||
@Test | ||
fun repeatRecord() { | ||
val name = "Name" | ||
val color = firstColor | ||
val icon = firstIcon | ||
val comment = "Some_comment" | ||
val tag = "Tag" | ||
val fullName = "$name - $tag" | ||
val calendar = Calendar.getInstance() | ||
|
||
// Setup | ||
val current = calendar.timeInMillis | ||
val difference = TimeUnit.MINUTES.toMillis(30) | ||
val timeStartedTimestamp = current - difference | ||
val timeStartedPreview = timeStartedTimestamp.formatTime() | ||
val timeEndedPreview = current.formatTime() | ||
val timeRangePreview = (current - timeStartedTimestamp).formatInterval() | ||
|
||
testUtils.addActivity(name = name, color = color, icon = icon) | ||
testUtils.addRecordTag(tag) | ||
testUtils.addRecord( | ||
typeName = name, | ||
timeStarted = timeStartedTimestamp, | ||
timeEnded = current, | ||
tagNames = listOf(tag), | ||
comment = comment | ||
) | ||
|
||
// Check record | ||
NavUtils.openRecordsScreen() | ||
checkRecord(fullName, timeStartedPreview, timeEndedPreview, timeRangePreview, comment) | ||
|
||
// Repeat | ||
clickOnViewWithText(fullName) | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
|
||
// Check record still there | ||
checkRecord(fullName, timeStartedPreview, timeEndedPreview, timeRangePreview, comment) | ||
|
||
// Check running record | ||
NavUtils.openRunningRecordsScreen() | ||
checkRunningRecord(fullName, current.formatTime(), comment) | ||
} | ||
|
||
@Test | ||
fun repeatUntrackedRecord() { | ||
val name = "Name" | ||
val calendar = Calendar.getInstance() | ||
|
||
// Setup | ||
val current = calendar.timeInMillis | ||
val startOfDay = calendar.getMillis(0, 0) | ||
val timeStartedPreview = startOfDay.formatTime() | ||
val timeEndedPreview = current.formatTime() | ||
val timeRangePreview = (current - startOfDay).formatInterval() | ||
|
||
testUtils.addActivity(name) | ||
val yesterday = System.currentTimeMillis() - TimeUnit.DAYS.toMillis(1) | ||
testUtils.addRecord(typeName = name, timeStarted = yesterday, timeEnded = yesterday) | ||
runBlocking { prefsInteractor.setShowUntrackedInRecords(true) } | ||
NavUtils.openRecordsScreen() | ||
|
||
// Open untracked time | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRecordItem), | ||
hasDescendant(withText(coreR.string.untracked_time_name)), | ||
hasDescendant(withText(timeStartedPreview)), | ||
hasDescendant(withText(timeEndedPreview)), | ||
hasDescendant(withText(timeRangePreview)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
onView(allOf(withId(recordsR.id.rvRecordsList), isCompletelyDisplayed())) | ||
.check(recyclerItemCount(2)) | ||
clickOnViewWithText(coreR.string.untracked_time_name) | ||
|
||
// Repeat untracked doesn't work | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
clickOnViewWithId(com.google.android.material.R.id.snackbar_text) | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
|
||
// Select activity | ||
clickOnViewWithText(coreR.string.change_record_type_field) | ||
clickOnRecyclerItem(changeRecordR.id.rvChangeRecordType, withText(name)) | ||
|
||
// Repeat | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
val runningRecordTimeStartedPreview = System.currentTimeMillis().formatTime() | ||
|
||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRunningRecordItem), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withText(runningRecordTimeStartedPreview)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
checkViewDoesNotExist(allOf(withText(coreR.string.untracked_time_name), isCompletelyDisplayed())) | ||
onView(allOf(withId(recordsR.id.rvRecordsList), isCompletelyDisplayed())) | ||
.check(recyclerItemCount(3)) | ||
|
||
NavUtils.openRunningRecordsScreen() | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRunningRecordItem), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withText(runningRecordTimeStartedPreview)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
} | ||
|
||
@Test | ||
fun repeatNewRecord() { | ||
val name = "Name" | ||
val calendar = Calendar.getInstance() | ||
|
||
// Setup | ||
val current = calendar.timeInMillis | ||
val difference = TimeUnit.HOURS.toMillis(1) | ||
val timeStartedTimestamp = current - difference | ||
val timeStartedPreview = timeStartedTimestamp.formatTime() | ||
|
||
testUtils.addActivity(name) | ||
NavUtils.openRecordsScreen() | ||
|
||
// Open add new record | ||
onView(allOf(withId(recordsR.id.rvRecordsList), isCompletelyDisplayed())) | ||
.check(recyclerItemCount(1)) | ||
clickOnViewWithId(recordsR.id.btnRecordAdd) | ||
|
||
// Repeat untracked doesn't work | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
clickOnViewWithId(com.google.android.material.R.id.snackbar_text) | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
|
||
// Select activity | ||
clickOnViewWithText(coreR.string.change_record_type_field) | ||
clickOnRecyclerItem(changeRecordR.id.rvChangeRecordType, withText(name)) | ||
|
||
// Repeat | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
val runningRecordTimeStartedPreview = System.currentTimeMillis().formatTime() | ||
|
||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRecordItem), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withText(timeStartedPreview)), | ||
hasDescendant(withText(runningRecordTimeStartedPreview)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRunningRecordItem), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withText(runningRecordTimeStartedPreview)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
onView(allOf(withId(recordsR.id.rvRecordsList), isCompletelyDisplayed())) | ||
.check(recyclerItemCount(3)) | ||
|
||
NavUtils.openRunningRecordsScreen() | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRunningRecordItem), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withText(runningRecordTimeStartedPreview)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
} | ||
|
||
@Test | ||
fun repeatRunningRecord() { | ||
val name = "Name" | ||
|
||
// Setup | ||
testUtils.addActivity(name) | ||
Thread.sleep(1000) | ||
tryAction { | ||
clickOnView( | ||
allOf(withId(baseR.id.viewRecordTypeItem), hasDescendant(withText(name))) | ||
) | ||
} | ||
tryAction { | ||
longClickOnView( | ||
allOf(withId(baseR.id.viewRunningRecordItem), hasDescendant(withText(name)), isCompletelyDisplayed()) | ||
) | ||
} | ||
|
||
// Try continue record | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
checkViewIsNotDisplayed(withText(coreR.string.change_record_repeat)) | ||
} | ||
|
||
@Test | ||
fun repeatRecordSameAsAlreadyRunning() { | ||
val name = "Name" | ||
|
||
// Setup | ||
testUtils.addActivity(name) | ||
testUtils.addRunningRecord(name) | ||
NavUtils.openRecordsScreen() | ||
|
||
// Repeat | ||
clickOnViewWithId(recordsR.id.btnRecordAdd) | ||
clickOnViewWithText(coreR.string.change_record_type_field) | ||
clickOnRecyclerItem(changeRecordR.id.rvChangeRecordType, withText(name)) | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
val runningRecordTimeStartedPreview = System.currentTimeMillis().formatTime() | ||
|
||
// Running record stopped | ||
onView(allOf(withId(recordsR.id.rvRecordsList), isCompletelyDisplayed())) | ||
.check(recyclerItemCount(4)) | ||
|
||
// New running record | ||
NavUtils.openRunningRecordsScreen() | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRunningRecordItem), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withText(runningRecordTimeStartedPreview)), | ||
isCompletelyDisplayed(), | ||
) | ||
) | ||
} | ||
|
||
@Test | ||
fun repeatRecordWhileMultitaskingDisabled() { | ||
val name1 = "Name1" | ||
val name2 = "Name2" | ||
|
||
// Setup | ||
testUtils.addActivity(name1) | ||
testUtils.addActivity(name2) | ||
testUtils.addRunningRecord(name1) | ||
runBlocking { prefsInteractor.setAllowMultitasking(false) } | ||
NavUtils.openRecordsScreen() | ||
|
||
// Repeat | ||
clickOnViewWithId(recordsR.id.btnRecordAdd) | ||
clickOnViewWithText(coreR.string.change_record_type_field) | ||
clickOnRecyclerItem(changeRecordR.id.rvChangeRecordType, withText(name2)) | ||
clickOnViewWithText(coreR.string.change_record_actions_hint) | ||
onView(withText(coreR.string.change_record_repeat)).perform(nestedScrollTo(), click()) | ||
|
||
// Running record stopped | ||
checkViewIsDisplayed(allOf(withText(name1), isCompletelyDisplayed())) | ||
|
||
// New running record | ||
NavUtils.openRunningRecordsScreen() | ||
checkViewIsDisplayed( | ||
allOf(withId(baseR.id.viewRunningRecordItem), hasDescendant(withText(name2)), isCompletelyDisplayed()) | ||
) | ||
} | ||
|
||
@Suppress("SameParameterValue") | ||
private fun checkRecord( | ||
name: String, | ||
timeStartedPreview: String, | ||
timeEndedPreview: String, | ||
timeRangePreview: String, | ||
comment: String, | ||
) { | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRecordItem), | ||
withCardColor(firstColor), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withTag(firstIcon)), | ||
hasDescendant(withText(timeStartedPreview)), | ||
hasDescendant(withText(timeEndedPreview)), | ||
hasDescendant(withText(timeRangePreview)), | ||
hasDescendant(withText(comment)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
} | ||
|
||
@Suppress("SameParameterValue") | ||
private fun checkRunningRecord( | ||
name: String, | ||
timeStartedPreview: String, | ||
comment: String, | ||
) { | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(baseR.id.viewRunningRecordItem), | ||
withCardColor(firstColor), | ||
hasDescendant(withText(name)), | ||
hasDescendant(withTag(firstIcon)), | ||
hasDescendant(withText(timeStartedPreview)), | ||
hasDescendant(withText(comment)), | ||
isCompletelyDisplayed() | ||
) | ||
) | ||
} | ||
|
||
private fun Calendar.getMillis(hour: Int, minute: Int): Long { | ||
set(Calendar.HOUR_OF_DAY, hour) | ||
set(Calendar.MINUTE, minute) | ||
return timeInMillis | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.