Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kaspresso test #965

Draft
wants to merge 8 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,19 @@ class AuthSampleTest : TestCase() {
val activityTestRule = ActivityScenarioRule(SocialAuthActivity::class.java)

@Test
fun test() =
fun testGuestCanLoginWithCorrectCredentials() =
run {
step("Open Social Auth Screen") {
testLogger.d("I am testLogger")
step("Open Credential Auth Screen") {
testLogger.d("Open Credential Auth Screen")
SocialAuthScreen {
signInWithEmailButton {
isVisible()
click()
}
openCredentialAuthScreen()
}
}

step("Open Credential Auth Screen") {
step("Login with email and password on credential auth screen") {
testLogger.i("Login with email and password on credential auth screen")
CredentialAuthScreen {
loginField.isVisible()
loginField.typeText("test@stepik.org")
passwordField.typeText("stepikthebest")
loginField.hasText("test@stepik.org")
loginWithEmailAndPassword(email = "testlearner@stepik.org", password = "512")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,25 @@ object CredentialAuthScreen : KScreen<CredentialAuthScreen>() {
override val layoutId: Int = R.layout.activity_auth_credential
override val viewClass: Class<*> = CredentialAuthActivity::class.java

val loginField = KEditText { withId(R.id.loginField) }
val passwordField = KEditText { withId(R.id.passwordField) }
val loginField = KEditText {
withId(R.id.loginField)
isDisplayed()
}

val passwordField = KEditText {
withId(R.id.passwordField)
isDisplayed()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Чтобы зафейлить тест, попробова скрыть эту вьюху в разметке, в итоге тест падает на моменте, когда не удается вызвать click(). Видимо, тут лучше только писать withId(.. и прочие штуки, которые находят вьюху.

}

fun loginWithEmailAndPassword(email: String, password: String) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мне это нравится, можно переиспользовать для разных кейсов с логином

loginField {
click()
replaceText(email)
}

passwordField {
click()
replaceText(password)
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
package org.stepik.android.view.auth.ui.activity

import androidx.test.ext.junit.rules.ActivityScenarioRule
import com.kaspersky.kaspresso.testcases.api.testcase.TestCase
import org.junit.Rule
import org.junit.Test

class SocialAuthScreenTest : TestCase() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Стоит назвать файл так же как и класс.

@get:Rule
val activityTestRule = ActivityScenarioRule(SocialAuthActivity::class.java)

@Test
// @Link("https://vyahhi.myjetbrains.com/youtrack/issue/TESTAPPS-174")
fun testGuestCanSeeSocialAuthScreen() =
run {
step("Should be dismiss button") {
testLogger.d("Should be dismiss button on social auth screen")
SocialAuthScreen {
dismissButton {
isVisible()
}
}
}

step("Should be Stepik logo") {
testLogger.d("Should be Stepik logo on social auth screen")
SocialAuthScreen {
stepikLogo {
isVisible()
}
}
}

step("Should be title screen") {
testLogger.d("Should be title on social auth screen")
SocialAuthScreen {
titleScreen {
isVisible()
hasText("Sign In with social accounts")
}
}
}

step("Should be More button") {
testLogger.d("Should be more button on social auth screen")
SocialAuthScreen {
moreButton {
isVisible()
hasText("More")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Чтобы избегать ошибок из-за локали, можно вместо "More" написать R.string.social_recycler_show_more, а вверху файла import org.stepic.droid.R.

}
}
}

step("Should be sign in with e-mail button") {
testLogger.d("+")
SocialAuthScreen {
signInWithEmailButton {
isVisible()
isClickable()
hasText("Sign in with e-mail")
}
}
}

step("Should be launch sign up button") {
testLogger.d("---")
SocialAuthScreen {
launchSignUpButton {
isVisible()
hasText("Sign up")
}
}
}
}

@Test
// @Link("https://vyahhi.myjetbrains.com/youtrack/issue/TESTAPPS-175")
fun testGuestCanExpandSocialAccounts() =
run {
step("Click 'More' button") {
testLogger.i("Click more button")
SocialAuthScreen {
moreButton {
isVisible()
isClickable()
hasText("More")
click()
}
}
}

step ("Should not be More button") {
testLogger.i("After click on More Button it disappear")
SocialAuthScreen {
moreButton {
isNotDisplayed()
}
}
}

step("Should be Less button") {
testLogger.i("Should be Less button")
SocialAuthScreen {
lessButton {
isVisible()
isClickable()
hasText("Less")
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,17 @@ object SocialAuthScreen : KScreen<SocialAuthScreen>() {
override val viewClass: Class<*> = SocialAuthActivity::class.java

val signInWithEmailButton = KButton { withId(R.id.signInWithEmail) }
val dismissButton = KButton { withId(R.id.dismissButton) }
val stepikLogo = KButton { withId(R.id.stepikLogo) }
val titleScreen = KButton { withId(R.id.signInText) }
val moreButton = KButton { withId(R.id.showMore) }
val lessButton = KButton { withId(R.id.showLess) }
val launchSignUpButton = KButton { withId(R.id.launchSignUpButton) }

fun openCredentialAuthScreen() {
signInWithEmailButton {
isDisplayed()
click()
}
}
}