-
Notifications
You must be signed in to change notification settings - Fork 80
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
6 changed files
with
560 additions
and
239 deletions.
There are no files selected for viewing
305 changes: 305 additions & 0 deletions
305
app/src/androidTest/java/com/example/util/simpletimetracker/GoalsDaysOfWeek.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,305 @@ | ||
package com.example.util.simpletimetracker | ||
|
||
import android.view.View | ||
import androidx.test.espresso.Espresso.pressBack | ||
import androidx.test.espresso.ViewInteraction | ||
import androidx.test.espresso.matcher.ViewMatchers.hasDescendant | ||
import androidx.test.espresso.matcher.ViewMatchers.isDescendantOfA | ||
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.GoalsTestUtils.checkNoRunningGoal | ||
import com.example.util.simpletimetracker.GoalsTestUtils.checkNoStatisticsGoal | ||
import com.example.util.simpletimetracker.GoalsTestUtils.checkNoTypeMark | ||
import com.example.util.simpletimetracker.GoalsTestUtils.checkRunningGoal | ||
import com.example.util.simpletimetracker.GoalsTestUtils.checkStatisticsGoal | ||
import com.example.util.simpletimetracker.GoalsTestUtils.checkTypeMark | ||
import com.example.util.simpletimetracker.core.R | ||
import com.example.util.simpletimetracker.data_local.utils.removeIf | ||
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.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.scrollRecyclerInPagerToView | ||
import com.example.util.simpletimetracker.utils.tryAction | ||
import com.example.util.simpletimetracker.utils.withCardColor | ||
import dagger.hilt.android.testing.HiltAndroidTest | ||
import org.hamcrest.CoreMatchers.allOf | ||
import org.hamcrest.Matcher | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import java.util.Calendar | ||
import java.util.concurrent.TimeUnit | ||
import com.example.util.simpletimetracker.feature_change_record_type.R as changeRecordTypeR | ||
import com.example.util.simpletimetracker.feature_dialogs.R as dialogsR | ||
import com.example.util.simpletimetracker.feature_statistics.R as statisticsR | ||
|
||
@HiltAndroidTest | ||
@RunWith(AndroidJUnit4::class) | ||
class GoalsDaysOfWeek : BaseUiTest() { | ||
|
||
@Test | ||
fun daysVisibility() { | ||
fun checkString( | ||
layoutId: Int, | ||
textMatcher: Matcher<View>, | ||
visibilityMatcher: (Matcher<View>) -> ViewInteraction, | ||
) { | ||
visibilityMatcher(allOf(textMatcher, isDescendantOfA(withId(layoutId)))) | ||
} | ||
|
||
val name = "Test" | ||
|
||
// Add data | ||
testUtils.addActivity( | ||
name = name, | ||
goals = listOf( | ||
GoalsTestUtils.getSessionDurationGoal(1), | ||
GoalsTestUtils.getDailyDurationGoal(1), | ||
GoalsTestUtils.getWeeklyDurationGoal(1), | ||
GoalsTestUtils.getMonthlyDurationGoal(1), | ||
), | ||
) | ||
Thread.sleep(1000) | ||
|
||
// Check | ||
tryAction { longClickOnView(withText(name)) } | ||
clickOnViewWithText(R.string.change_record_type_goal_time_hint) | ||
|
||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalSession, | ||
withText("1$secondString"), | ||
::checkViewIsDisplayed, | ||
) | ||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalSession, | ||
withText(R.string.day_of_week_sunday), | ||
::checkViewDoesNotExist, | ||
) | ||
|
||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalDaily, | ||
withText("1$secondString"), | ||
::checkViewIsDisplayed, | ||
) | ||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalDaily, | ||
withText(R.string.day_of_week_sunday), | ||
::checkViewIsDisplayed, | ||
) | ||
|
||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalWeekly, | ||
withText("1$secondString"), | ||
::checkViewIsDisplayed, | ||
) | ||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalWeekly, | ||
withText(R.string.day_of_week_sunday), | ||
::checkViewDoesNotExist, | ||
) | ||
|
||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalMonthly, | ||
withText("1$secondString"), | ||
::checkViewIsDisplayed, | ||
) | ||
checkString( | ||
changeRecordTypeR.id.layoutChangeRecordTypeGoalMonthly, | ||
withText(R.string.day_of_week_sunday), | ||
::checkViewDoesNotExist, | ||
) | ||
} | ||
|
||
@Test | ||
fun changeDays() { | ||
val name = "Test" | ||
|
||
// Add data | ||
testUtils.addActivity(name) | ||
Thread.sleep(1000) | ||
tryAction { longClickOnView(withText(name)) } | ||
|
||
// No days by default | ||
clickOnViewWithText(R.string.change_record_type_goal_time_hint) | ||
checkViewDoesNotExist(withText(R.string.day_of_week_sunday)) | ||
|
||
// Set goal | ||
clickOnView( | ||
allOf( | ||
isDescendantOfA(withId(changeRecordTypeR.id.layoutChangeRecordTypeGoalDaily)), | ||
withId(changeRecordTypeR.id.fieldChangeRecordTypeGoalDuration), | ||
), | ||
) | ||
clickOnViewWithId(dialogsR.id.tvNumberKeyboard1) | ||
clickOnViewWithText(R.string.duration_dialog_save) | ||
|
||
checkViewIsDisplayed(withText("1$secondString")) | ||
daysResIdList.forEach { checkTypeDay(stringResId = it, colorResId = R.color.colorActive) } | ||
|
||
// Disable goal | ||
clickOnView( | ||
allOf( | ||
isDescendantOfA(withId(changeRecordTypeR.id.layoutChangeRecordTypeGoalDaily)), | ||
withId(changeRecordTypeR.id.fieldChangeRecordTypeGoalDuration), | ||
), | ||
) | ||
clickOnViewWithText(R.string.duration_dialog_disable) | ||
checkViewDoesNotExist(withText(R.string.day_of_week_sunday)) | ||
|
||
// Change days | ||
clickOnView( | ||
allOf( | ||
isDescendantOfA(withId(changeRecordTypeR.id.layoutChangeRecordTypeGoalDaily)), | ||
withId(changeRecordTypeR.id.fieldChangeRecordTypeGoalDuration), | ||
), | ||
) | ||
clickOnViewWithId(dialogsR.id.tvNumberKeyboard1) | ||
clickOnViewWithText(R.string.duration_dialog_save) | ||
|
||
daysResIdList.forEach { | ||
clickOnView(withText(it)) | ||
checkTypeDay(stringResId = it, colorResId = R.color.colorInactive) | ||
clickOnView(withText(it)) | ||
checkTypeDay(stringResId = it, colorResId = R.color.colorActive) | ||
} | ||
|
||
clickOnView(withText(R.string.day_of_week_monday)) | ||
clickOnView(withText(R.string.day_of_week_wednesday)) | ||
clickOnView(withText(R.string.day_of_week_friday)) | ||
checkTypeDay(stringResId = R.string.day_of_week_sunday, colorResId = R.color.colorActive) | ||
checkTypeDay(stringResId = R.string.day_of_week_monday, colorResId = R.color.colorInactive) | ||
checkTypeDay(stringResId = R.string.day_of_week_tuesday, colorResId = R.color.colorActive) | ||
checkTypeDay(stringResId = R.string.day_of_week_wednesday, colorResId = R.color.colorInactive) | ||
checkTypeDay(stringResId = R.string.day_of_week_thursday, colorResId = R.color.colorActive) | ||
checkTypeDay(stringResId = R.string.day_of_week_friday, colorResId = R.color.colorInactive) | ||
checkTypeDay(stringResId = R.string.day_of_week_saturday, colorResId = R.color.colorActive) | ||
} | ||
|
||
@Test | ||
fun daysAreSaved() { | ||
val name1 = "Test1" | ||
val name2 = "Test2" | ||
|
||
// Add data | ||
testUtils.addActivity( | ||
name = name1, | ||
goals = listOf(GoalsTestUtils.getDailyDurationGoal(1)), | ||
) | ||
testUtils.addActivity( | ||
name = name2, | ||
goals = listOf(GoalsTestUtils.getDailyDurationGoal(1)), | ||
) | ||
Thread.sleep(1000) | ||
|
||
// Change days | ||
tryAction { longClickOnView(withText(name1)) } | ||
clickOnViewWithText(R.string.change_record_type_goal_time_hint) | ||
clickOnView(withText(R.string.day_of_week_monday)) | ||
clickOnView(withText(R.string.day_of_week_wednesday)) | ||
clickOnView(withText(R.string.day_of_week_friday)) | ||
clickOnViewWithText(R.string.change_record_type_save) | ||
|
||
// Days are saved | ||
tryAction { longClickOnView(withText(name1)) } | ||
clickOnViewWithText(R.string.change_record_type_goal_time_hint) | ||
checkTypeDay(stringResId = R.string.day_of_week_sunday, colorResId = R.color.colorActive) | ||
checkTypeDay(stringResId = R.string.day_of_week_monday, colorResId = R.color.colorInactive) | ||
checkTypeDay(stringResId = R.string.day_of_week_tuesday, colorResId = R.color.colorActive) | ||
checkTypeDay(stringResId = R.string.day_of_week_wednesday, colorResId = R.color.colorInactive) | ||
checkTypeDay(stringResId = R.string.day_of_week_thursday, colorResId = R.color.colorActive) | ||
checkTypeDay(stringResId = R.string.day_of_week_friday, colorResId = R.color.colorInactive) | ||
checkTypeDay(stringResId = R.string.day_of_week_saturday, colorResId = R.color.colorActive) | ||
pressBack() | ||
|
||
tryAction { longClickOnView(withText(name2)) } | ||
clickOnViewWithText(R.string.change_record_type_goal_time_hint) | ||
daysResIdList.forEach { checkTypeDay(stringResId = it, colorResId = R.color.colorActive) } | ||
} | ||
|
||
@Test | ||
fun daysAreWorking() { | ||
val dailyGoalHint = getString(R.string.change_record_type_daily_goal_time).lowercase() | ||
val goalHint = getString(R.string.change_record_type_goal_time_hint).lowercase() | ||
val currentDay = Calendar.getInstance() | ||
.get(Calendar.DAY_OF_WEEK) | ||
.let(timeMapper::toDayOfWeek) | ||
|
||
val name1 = "name1" | ||
val name2 = "name2" | ||
|
||
// Add data | ||
val goal = GoalsTestUtils.getDailyDurationGoal(TimeUnit.HOURS.toSeconds(1)) | ||
testUtils.addActivity( | ||
name = name1, | ||
goals = listOf( | ||
goal.copy(daysOfWeek = goal.daysOfWeek.removeIf { it == currentDay }), | ||
), | ||
) | ||
testUtils.addActivity( | ||
name = name2, | ||
goals = listOf(goal), | ||
) | ||
testUtils.addRunningRecord(name1) | ||
testUtils.addRunningRecord(name2) | ||
Thread.sleep(1000) | ||
|
||
// Checkmark on type | ||
tryAction { checkNoTypeMark(name1) } | ||
checkTypeMark(name2, isVisible = false) | ||
|
||
// Running record | ||
checkNoRunningGoal(name1) | ||
checkRunningGoal(name2, "$dailyGoalHint 59$minuteString") | ||
|
||
// Statistics | ||
NavUtils.openStatisticsScreen() | ||
checkNoStatisticsGoal(name1) | ||
scrollTo(name2) | ||
checkStatisticsGoal(name2, secondString, "$goalHint - 1$hourString 0$minuteString") | ||
|
||
clickOnViewWithId(statisticsR.id.btnStatisticsContainerPrevious) | ||
scrollTo(name1) | ||
checkStatisticsGoal(name1, "0$secondString", "$goalHint - 1$hourString 0$minuteString") | ||
scrollTo(name2) | ||
checkStatisticsGoal(name2, "0$secondString", "$goalHint - 1$hourString 0$minuteString") | ||
} | ||
|
||
private fun checkTypeDay( | ||
stringResId: Int, | ||
colorResId: Int, | ||
) { | ||
checkViewIsDisplayed( | ||
allOf( | ||
withId(R.id.containerDayOfWeekItem), | ||
withCardColor(colorResId), | ||
hasDescendant(withText(stringResId)), | ||
), | ||
) | ||
} | ||
|
||
private fun scrollTo(typeName: String) { | ||
tryAction { | ||
scrollRecyclerInPagerToView( | ||
statisticsR.id.rvStatisticsList, | ||
allOf(withId(R.id.viewStatisticsGoalItem), hasDescendant(withText(typeName))), | ||
) | ||
} | ||
} | ||
|
||
companion object { | ||
private val daysResIdList = listOf( | ||
R.string.day_of_week_sunday, | ||
R.string.day_of_week_monday, | ||
R.string.day_of_week_tuesday, | ||
R.string.day_of_week_wednesday, | ||
R.string.day_of_week_thursday, | ||
R.string.day_of_week_friday, | ||
R.string.day_of_week_saturday, | ||
) | ||
} | ||
} |
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.