1
0
Fork 0

Move UI tests to x86 devices on Firebase (#5463)

master
Richard Pappalardo 2019-09-22 19:19:10 -07:00 committed by GitHub
parent c866ae1a1e
commit 057451178c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 25 additions and 103 deletions

View File

@ -54,6 +54,7 @@ class HomeScreenTest {
}
@Test
@Ignore("Temp disable flakey test - see: https://github.com/mozilla-mobile/fenix/issues/5462")
fun firstRunHomeScreenItemsTest() {
homeScreen {
verifyHomeScreen()

View File

@ -62,6 +62,7 @@ class SearchTest {
}
@Test
@Ignore("Temp disable flakey test - see: https://github.com/mozilla-mobile/fenix/issues/5462")
fun shortcutSearchEngineSettingsTest() {
homeScreen {
}.openSearch {

View File

@ -18,7 +18,7 @@ import androidx.test.uiautomator.By
import androidx.test.uiautomator.UiDevice
import androidx.test.uiautomator.Until
import org.mozilla.fenix.R
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTimeShort
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime
import org.mozilla.fenix.helpers.click
/**
@ -33,18 +33,18 @@ class FindInPageRobot {
fun verifyFindInPageCloseButton() = assertFindInPageCloseButton()!!
fun enterFindInPageQuery(expectedText: String) {
mDevice.wait(Until.findObject(By.res("find_in_page_query_text")), waitingTimeShort)
mDevice.wait(Until.findObject(By.res("find_in_page_query_text")), waitingTime)
findInPageQuery().perform(clearText(), typeText(expectedText))
}
fun verifyFindNextInPageResult(ratioCounter: String) {
mDevice.waitForIdle()
mDevice.wait(Until.findObject(By.text(ratioCounter)), waitingTime)
findInPageResult().check(matches(withText((ratioCounter))))
findInPageNextButton().click()
}
fun verifyFindPrevInPageResult(ratioCounter: String) {
mDevice.waitForIdle()
mDevice.wait(Until.findObject(By.text(ratioCounter)), waitingTime)
findInPageResult().check(matches(withText((ratioCounter))))
findInPagePrevButton().click()
}

View File

@ -47,3 +47,7 @@ flank:
# repeat tests - the amount of times to run the tests.
# 1 runs the tests once. 10 runs all the tests 10x
repeat-tests: 1
# The number of times a TestExecution should be re-attempted if one or more\nof its test cases fail for any reason.
# The maximum number of reruns allowed is 10. Default is 0, which implies no reruns.
num-flaky-test-attempts: 3

View File

@ -45,3 +45,7 @@ flank:
# repeat tests - the amount of times to run the tests.
# 1 runs the tests once. 10 runs all the tests 10x
repeat-tests: 1
# The number of times a TestExecution should be re-attempted if one or more\nof its test cases fail for any reason.
# The maximum number of reruns allowed is 10. Default is 0, which implies no reruns.
num-flaky-test-attempts: 3

View File

@ -1,49 +0,0 @@
# gcloud args match the official gcloud cli
# https://cloud.google.com/sdk/gcloud/reference/firebase/test/android/run
gcloud:
results-bucket: fenix_test_artifacts
record-video: true
# The maximum possible testing time is 30m on physical devices and 60m on virtual devices.
timeout: 30m
# will start test then close socket. no reports will be generated.
# to retrieve results later, use the "refresh" command
# reports will be generated from /results/matrix_ids.json
#async: true
# will start test then leave socket open. reports will be published
# to /results
# see: https://github.com/TestArmada/flank/issues/339
async: false
# results-history-name
# by default, set to app name
# declare results-history-name to create a separate dropdown menu in Firebase
# see: https://github.com/TestArmada/flank/issues/341
#results-history-name: tmp_parallel
# test and app are the only required args
app: /APP/PATH
test: /TEST/PATH
auto-google-login: true
use-orchestrator: true
environment-variables:
clearPackageData: true
directories-to-pull:
- /sdcard/screenshots
performance-metrics: true
device:
- model: Nexus9
version: 21
- model: Nexus9
version: 22
flank:
project: GOOGLE_PROJECT
# test shards - the amount of groups to split the test suite into
# set to -1 to use one shard per test.
max-test-shards: -1
# repeat tests - the amount of times to run the tests.
# 1 runs the tests once. 10 runs all the tests 10x
repeat-tests: 1

View File

@ -34,8 +34,10 @@ gcloud:
performance-metrics: true
device:
- model: Nexus7
version: 21
- model: Nexus9
version: 25
- model: Pixel2
version: 28
flank:
project: GOOGLE_PROJECT
@ -45,3 +47,7 @@ flank:
# repeat tests - the amount of times to run the tests.
# 1 runs the tests once. 10 runs all the tests 10x
repeat-tests: 1
# The number of times a TestExecution should be re-attempted if one or more\nof its test cases fail for any reason.
# The maximum number of reruns allowed is 10. Default is 0, which implies no reruns.
num-flaky-test-attempts: 3

View File

@ -1,47 +0,0 @@
# gcloud args match the official gcloud cli
# https://cloud.google.com/sdk/gcloud/reference/firebase/test/android/run
gcloud:
results-bucket: fenix_test_artifacts
record-video: true
# The maximum possible testing time is 30m on physical devices and 60m on virtual devices.
timeout: 30m
# will start test then close socket. no reports will be generated.
# to retrieve results later, use the "refresh" command
# reports will be generated from /results/matrix_ids.json
#async: true
# will start test then leave socket open. reports will be published
# to /results
# see: https://github.com/TestArmada/flank/issues/339
async: false
# results-history-name
# by default, set to app name
# declare results-history-name to create a separate dropdown menu in Firebase
# see: https://github.com/TestArmada/flank/issues/341
#results-history-name: tmp_parallel
# test and app are the only required args
app: /app/path
test: /test/path
auto-google-login: true
use-orchestrator: true
environment-variables:
clearPackageData: true
directories-to-pull:
- /sdcard/screenshots
performance-metrics: true
device:
- model: Nexus6
version: 25
flank:
project: GOOGLE_PROJECT
# test shards - the amount of groups to split the test suite into
# set to -1 to use one shard per test.
max-test-shards: -1
# repeat tests - the amount of times to run the tests.
# 1 runs the tests once. 10 runs all the tests 10x
repeat-tests: 1

View File

@ -82,6 +82,8 @@ else
fi
APK_TEST="./app/build/outputs/apk/androidTest/geckoNightly/debug/app-geckoNightly-debug-androidTest.apk"
echo "APK_PATH: ${APK_PATH}"
echo "APK_TEST: ${APK_TEST}"
# function to exit script with exit code from test run.
# (Only 0 if all test executions passed)

View File

@ -196,7 +196,7 @@ class TaskBuilder(object):
)
test_commands = (
'automation/taskcluster/androidTest/ui-test.sh x86_64 -1',
'automation/taskcluster/androidTest/ui-test.sh x86 -1',
)
command = ' && '.join(