diff options
author | cyBerta <cyberta@riseup.net> | 2018-01-29 16:12:02 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2018-01-29 16:12:02 +0100 |
commit | 5c158ea0b57c116744b33392fcd5ebcac21f8fe0 (patch) | |
tree | 9fa11d892e5b419b5381e6f555c0c879e3c36cf6 /app/src/androidTest/legacy/TestDashboardIntegration.java | |
parent | a22a22d8fffb312b0d6dfdf545ff6fe6f05dbcee (diff) |
#8818 keep legacy ui tests in seperate foler until tests are reimplemented
Diffstat (limited to 'app/src/androidTest/legacy/TestDashboardIntegration.java')
-rw-r--r-- | app/src/androidTest/legacy/TestDashboardIntegration.java | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app/src/androidTest/legacy/TestDashboardIntegration.java b/app/src/androidTest/legacy/TestDashboardIntegration.java new file mode 100644 index 00000000..ad2b4a00 --- /dev/null +++ b/app/src/androidTest/legacy/TestDashboardIntegration.java @@ -0,0 +1,60 @@ +package se.leap.bitmaskclient.test; + +import java.io.*; + +import se.leap.bitmaskclient.R; + +public class TestDashboardIntegration extends BaseTestDashboardFragment { + + @Override + protected void tearDown() throws Exception { + solo.finishOpenedActivities(); + } + + public void testSwitchProvider() { + tapSwitchProvider(); + solo.goBack(); + } + + public void testShowAbout() { + showAbout(); + solo.goBack(); + showAbout(); + solo.goBack(); + } + + private void showAbout() { + clickAbout(); + String text_unique_to_about = solo.getString(R.string.repository_url_text); + solo.waitForText(text_unique_to_about); + } + + private void clickAbout() { + String menu_item = solo.getString(R.string.about); + solo.clickOnMenuItem(menu_item); + } + + private void turnNetworkOff() { + ConnectionManager.setMobileDataEnabled(false, context); + if (!solo.waitForText(getActivity().getString(R.string.eip_state_not_connected), 1, 15 * 1000)) + fail(); + } + + private void restartAdbServer() { + runAdbCommand("kill-server"); + runAdbCommand("start-server"); + } + + /*public void testReboot() { + runAdbCommand("shell am broadcast -a android.intent.action.BOOT_COMPLETED"); + }*/ + + private void runAdbCommand(String adb_command) { + try { + String command = "adb " + adb_command; + Runtime.getRuntime().exec(command).waitFor(); + } catch (IOException | InterruptedException e) { + e.printStackTrace(); + } + } +} |