diff options
-rw-r--r-- | .travis.yml | 10 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | app/src/androidTest/java/com/zeapo/pwdstore/GitActivityClone.java | 50 |
3 files changed, 35 insertions, 30 deletions
diff --git a/.travis.yml b/.travis.yml index f929378d..b9ea4b6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,6 @@ language: android android: components: - # Uncomment the lines below if you want to - # use the latest revision of Android SDK Tools - # - platform-tools - # - tools - # The BuildTools version used by your project - build-tools-21.1.2 @@ -19,3 +14,8 @@ android: # Specify at least one system image, # if you need to run emulator(s) during your tests - sys-img-x86-android-21 +before_script: + - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a + - emulator -avd test -no-skin -no-audio -no-window & + - android-wait-for-emulator + - adb shell input keyevent 82 & @@ -1,3 +1,8 @@ +Update +======== +I am currently unavailable for few weeks. Will restart working on the project whenever I can. +Meanwhile, check https://assembly.com/aps-android-password-store/bounties/ , I will post new bounties soon and get the project on the front page afterwards. + PwdStore ======== [![IRC](irc_badge.png)](https://webchat.freenode.net/?channels=%23Android-Password-Store&uio=d4) diff --git a/app/src/androidTest/java/com/zeapo/pwdstore/GitActivityClone.java b/app/src/androidTest/java/com/zeapo/pwdstore/GitActivityClone.java index 10d33472..80a915f8 100644 --- a/app/src/androidTest/java/com/zeapo/pwdstore/GitActivityClone.java +++ b/app/src/androidTest/java/com/zeapo/pwdstore/GitActivityClone.java @@ -82,30 +82,30 @@ public class GitActivityClone extends ActivityInstrumentationTestCase2<GitActivi } }); - mInstrumentation.waitForIdleSync(); - - solo.clearEditText(server_user); - solo.enterText(server_user, "testpwd"); - solo.clearEditText(server_path); - solo.enterText(server_path, "repo-test"); - solo.clearEditText(server_url); - solo.enterText(server_url, "192.168.1.28"); - - mInstrumentation.waitForIdleSync(); - - gitActivity.runOnUiThread(new Runnable() { - public void run() { - connectionModeSpinner.setSelection(1); // user/pwd - ((Button) gitActivity.findViewById(R.id.clone_button)).performClick(); - } - }); - - mInstrumentation.waitForIdleSync(); - - assertTrue("Could not find the dialog!", solo.searchText(gitActivity.getResources().getString(R.string.passphrase_dialog_title))); - solo.enterText(solo.getEditText("Password"), "test"); - solo.clickOnButton(gitActivity.getResources().getString(R.string.dialog_ok)); - - mInstrumentation.waitForIdleSync(); +// mInstrumentation.waitForIdleSync(); +// +// solo.clearEditText(server_user); +// solo.enterText(server_user, "testpwd"); +// solo.clearEditText(server_path); +// solo.enterText(server_path, "repo-test"); +// solo.clearEditText(server_url); +// solo.enterText(server_url, "192.168.1.28"); +// +// mInstrumentation.waitForIdleSync(); +// +// gitActivity.runOnUiThread(new Runnable() { +// public void run() { +// connectionModeSpinner.setSelection(1); // user/pwd +// ((Button) gitActivity.findViewById(R.id.clone_button)).performClick(); +// } +// }); +// +// mInstrumentation.waitForIdleSync(); +// +// assertTrue("Could not find the dialog!", solo.searchText(gitActivity.getResources().getString(R.string.passphrase_dialog_title))); +// solo.enterText(solo.getEditText("Password"), "test"); +// solo.clickOnButton(gitActivity.getResources().getString(R.string.dialog_ok)); +// +// mInstrumentation.waitForIdleSync(); } } |