summaryrefslogtreecommitdiff
path: root/app/src/androidTest/legacy/TestDashboardIntegration.java
diff options
context:
space:
mode:
authorfupduck <fupduck@riseup.net>2018-02-06 05:53:09 -0800
committerfupduck <fupduck@riseup.net>2018-02-06 05:53:09 -0800
commitedd34192484f4eb618fdcc2a68b18168c155d63c (patch)
treed884f63e74911d2ea2cf7bc864414a623e15a2b3 /app/src/androidTest/legacy/TestDashboardIntegration.java
parentc0848bac7ac44f4b09f9e5d66ab71f079cb0f514 (diff)
parentd2d61a16fd2a3ea0fd42073de98d1311b184444d (diff)
Merge branch '#8832_update_ics-openvpn' into '0.9.8'
#8832 update ics openvpn See merge request leap/bitmask_android!33
Diffstat (limited to 'app/src/androidTest/legacy/TestDashboardIntegration.java')
-rw-r--r--app/src/androidTest/legacy/TestDashboardIntegration.java60
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();
+ }
+ }
+}