├── LICENSE ├── NOTICE ├── README.md ├── downloads ├── Cafe-2.3.zip ├── Cafe-2.4.zip ├── Cafe-2.5.zip ├── Cafe-3.0.zip └── Cafe-3.1.zip ├── make.sh ├── testrunner ├── .classpath ├── .project ├── Android.mk ├── AndroidManifest.xml ├── libs │ ├── android-junit-report-1.5.8.jar │ ├── android.jar │ └── robotium-solo-4.1.jar ├── proguard.flags ├── project.properties └── src │ └── com │ └── baidu │ └── cafe │ ├── CafeExceptionHandler.java │ ├── CafeListener.java │ ├── CafeServiceTestCase.java │ ├── CafeTestCase.java │ ├── CafeTestRunner.java │ ├── TearDownHelper.java │ ├── local │ ├── DESEncryption.java │ ├── FPSTracer.java │ ├── FileUtils.java │ ├── LocalLib.java │ ├── Log.java │ ├── NetworkUtils.java │ ├── SnapshotHelper.java │ ├── record │ │ ├── CafeWebViewClient.java │ │ ├── OutputEvent.java │ │ ├── ViewRecorder.java │ │ ├── ViewRecorderSDK.java │ │ ├── WebElementRecorder.java │ │ └── WebElementRecorder.js │ └── traveler │ │ ├── APPTraveler.java │ │ ├── Logger.java │ │ ├── Operation.java │ │ ├── Util.java │ │ └── ViewHelper.java │ └── remote │ ├── Armser.java │ └── IRemoteArms.aidl ├── tests ├── TestApiDemos │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── libs │ │ ├── cafe.jar │ │ └── cafe_doc.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── example │ │ └── android │ │ └── apis │ │ └── test │ │ └── TestCafe.java ├── TestCafe │ ├── .classpath │ ├── .project │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── libs │ │ └── cafe.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── example │ │ └── demo │ │ └── test │ │ └── TestCafe.java ├── TestRecord │ ├── .classpath │ ├── .project │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── libs │ │ └── cafe.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── example │ │ └── demo │ │ └── test │ │ └── CafeReplay.java ├── TestTravel │ ├── .classpath │ ├── .project │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── libs │ │ └── cafe.jar │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── baidu │ │ └── cafe │ │ └── test │ │ └── CafeTraveler.java └── run_demo_test.sh ├── testservice ├── .classpath ├── .project ├── Android.mk ├── AndroidManifest.xml ├── assets │ ├── WebElementRecorder.js │ └── pointer.png ├── default.properties ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_search.png │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ ├── ic_action_search.png │ │ └── icon.png │ ├── drawable-xhdpi │ │ └── ic_action_search.png │ ├── layout │ │ ├── activity_lock.xml │ │ └── main.xml │ ├── menu │ │ └── activity_lock.xml │ ├── values-large │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ └── strings.xml └── src │ └── com │ └── baidu │ └── cafe │ └── remote │ ├── Arms.java │ ├── ArmsBinder.java │ ├── ArmsBootupReceiver.java │ ├── BatteryState.java │ ├── IRemoteArms.aidl │ ├── LockActivity.java │ ├── Log.java │ ├── MonkeyNetwork.java │ ├── MyIntent.java │ ├── SystemLib.java │ ├── UILib.java │ └── ViewPropertyProvider.java ├── testutils ├── .classpath ├── .project ├── cafe_setup.bat ├── cafe_setup.sh ├── src │ └── com │ │ └── baidu │ │ └── cafe │ │ └── utils │ │ ├── CommandResult.java │ │ ├── ReflectHelper.java │ │ ├── ShellExecute.java │ │ ├── Strings.java │ │ └── TreeNode.java └── utils.sh ├── tools ├── signapk.jar ├── testkey.pk8 └── testkey.x509.pem └── travel.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/README.md -------------------------------------------------------------------------------- /downloads/Cafe-2.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/downloads/Cafe-2.3.zip -------------------------------------------------------------------------------- /downloads/Cafe-2.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/downloads/Cafe-2.4.zip -------------------------------------------------------------------------------- /downloads/Cafe-2.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/downloads/Cafe-2.5.zip -------------------------------------------------------------------------------- /downloads/Cafe-3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/downloads/Cafe-3.0.zip -------------------------------------------------------------------------------- /downloads/Cafe-3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/downloads/Cafe-3.1.zip -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/make.sh -------------------------------------------------------------------------------- /testrunner/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/.classpath -------------------------------------------------------------------------------- /testrunner/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/.project -------------------------------------------------------------------------------- /testrunner/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/Android.mk -------------------------------------------------------------------------------- /testrunner/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/AndroidManifest.xml -------------------------------------------------------------------------------- /testrunner/libs/android-junit-report-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/libs/android-junit-report-1.5.8.jar -------------------------------------------------------------------------------- /testrunner/libs/android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/libs/android.jar -------------------------------------------------------------------------------- /testrunner/libs/robotium-solo-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/libs/robotium-solo-4.1.jar -------------------------------------------------------------------------------- /testrunner/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/proguard.flags -------------------------------------------------------------------------------- /testrunner/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/project.properties -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/CafeExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/CafeExceptionHandler.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/CafeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/CafeListener.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/CafeServiceTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/CafeServiceTestCase.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/CafeTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/CafeTestCase.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/CafeTestRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/CafeTestRunner.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/TearDownHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/TearDownHelper.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/DESEncryption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/DESEncryption.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/FPSTracer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/FPSTracer.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/FileUtils.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/LocalLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/LocalLib.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/Log.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/NetworkUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/NetworkUtils.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/SnapshotHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/SnapshotHelper.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/record/CafeWebViewClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/record/CafeWebViewClient.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/record/OutputEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/record/OutputEvent.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/record/ViewRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/record/ViewRecorder.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/record/ViewRecorderSDK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/record/ViewRecorderSDK.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/record/WebElementRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/record/WebElementRecorder.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/record/WebElementRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/record/WebElementRecorder.js -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/traveler/APPTraveler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/traveler/APPTraveler.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/traveler/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/traveler/Logger.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/traveler/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/traveler/Operation.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/traveler/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/traveler/Util.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/local/traveler/ViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/local/traveler/ViewHelper.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/remote/Armser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/remote/Armser.java -------------------------------------------------------------------------------- /testrunner/src/com/baidu/cafe/remote/IRemoteArms.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testrunner/src/com/baidu/cafe/remote/IRemoteArms.aidl -------------------------------------------------------------------------------- /tests/TestApiDemos/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/.classpath -------------------------------------------------------------------------------- /tests/TestApiDemos/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/.project -------------------------------------------------------------------------------- /tests/TestApiDemos/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /tests/TestApiDemos/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/TestApiDemos/libs/cafe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/libs/cafe.jar -------------------------------------------------------------------------------- /tests/TestApiDemos/libs/cafe_doc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/libs/cafe_doc.jar -------------------------------------------------------------------------------- /tests/TestApiDemos/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/proguard-project.txt -------------------------------------------------------------------------------- /tests/TestApiDemos/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/project.properties -------------------------------------------------------------------------------- /tests/TestApiDemos/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestApiDemos/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestApiDemos/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestApiDemos/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestApiDemos/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/res/values/strings.xml -------------------------------------------------------------------------------- /tests/TestApiDemos/src/com/example/android/apis/test/TestCafe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestApiDemos/src/com/example/android/apis/test/TestCafe.java -------------------------------------------------------------------------------- /tests/TestCafe/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/.classpath -------------------------------------------------------------------------------- /tests/TestCafe/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/.project -------------------------------------------------------------------------------- /tests/TestCafe/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/Android.mk -------------------------------------------------------------------------------- /tests/TestCafe/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/TestCafe/libs/cafe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/libs/cafe.jar -------------------------------------------------------------------------------- /tests/TestCafe/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/proguard-project.txt -------------------------------------------------------------------------------- /tests/TestCafe/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/project.properties -------------------------------------------------------------------------------- /tests/TestCafe/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestCafe/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestCafe/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestCafe/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestCafe/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/res/values/strings.xml -------------------------------------------------------------------------------- /tests/TestCafe/src/com/example/demo/test/TestCafe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestCafe/src/com/example/demo/test/TestCafe.java -------------------------------------------------------------------------------- /tests/TestRecord/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/.classpath -------------------------------------------------------------------------------- /tests/TestRecord/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/.project -------------------------------------------------------------------------------- /tests/TestRecord/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/Android.mk -------------------------------------------------------------------------------- /tests/TestRecord/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/TestRecord/libs/cafe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/libs/cafe.jar -------------------------------------------------------------------------------- /tests/TestRecord/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/proguard-project.txt -------------------------------------------------------------------------------- /tests/TestRecord/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/project.properties -------------------------------------------------------------------------------- /tests/TestRecord/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestRecord/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestRecord/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestRecord/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestRecord/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/res/values/strings.xml -------------------------------------------------------------------------------- /tests/TestRecord/src/com/example/demo/test/CafeReplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestRecord/src/com/example/demo/test/CafeReplay.java -------------------------------------------------------------------------------- /tests/TestTravel/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/.classpath -------------------------------------------------------------------------------- /tests/TestTravel/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/.project -------------------------------------------------------------------------------- /tests/TestTravel/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/Android.mk -------------------------------------------------------------------------------- /tests/TestTravel/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/TestTravel/libs/cafe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/libs/cafe.jar -------------------------------------------------------------------------------- /tests/TestTravel/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/project.properties -------------------------------------------------------------------------------- /tests/TestTravel/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestTravel/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestTravel/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestTravel/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/TestTravel/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/res/values/strings.xml -------------------------------------------------------------------------------- /tests/TestTravel/src/com/baidu/cafe/test/CafeTraveler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/TestTravel/src/com/baidu/cafe/test/CafeTraveler.java -------------------------------------------------------------------------------- /tests/run_demo_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tests/run_demo_test.sh -------------------------------------------------------------------------------- /testservice/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/.classpath -------------------------------------------------------------------------------- /testservice/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/.project -------------------------------------------------------------------------------- /testservice/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/Android.mk -------------------------------------------------------------------------------- /testservice/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/AndroidManifest.xml -------------------------------------------------------------------------------- /testservice/assets/WebElementRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/assets/WebElementRecorder.js -------------------------------------------------------------------------------- /testservice/assets/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/assets/pointer.png -------------------------------------------------------------------------------- /testservice/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/default.properties -------------------------------------------------------------------------------- /testservice/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/project.properties -------------------------------------------------------------------------------- /testservice/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /testservice/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /testservice/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /testservice/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /testservice/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /testservice/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /testservice/res/layout/activity_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/layout/activity_lock.xml -------------------------------------------------------------------------------- /testservice/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/layout/main.xml -------------------------------------------------------------------------------- /testservice/res/menu/activity_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/menu/activity_lock.xml -------------------------------------------------------------------------------- /testservice/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/values-large/dimens.xml -------------------------------------------------------------------------------- /testservice/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/values/dimens.xml -------------------------------------------------------------------------------- /testservice/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/res/values/strings.xml -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/Arms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/Arms.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/ArmsBinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/ArmsBinder.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/ArmsBootupReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/ArmsBootupReceiver.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/BatteryState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/BatteryState.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/IRemoteArms.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/IRemoteArms.aidl -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/LockActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/LockActivity.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/Log.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/MonkeyNetwork.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/MonkeyNetwork.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/MyIntent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/MyIntent.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/SystemLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/SystemLib.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/UILib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/UILib.java -------------------------------------------------------------------------------- /testservice/src/com/baidu/cafe/remote/ViewPropertyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testservice/src/com/baidu/cafe/remote/ViewPropertyProvider.java -------------------------------------------------------------------------------- /testutils/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/.classpath -------------------------------------------------------------------------------- /testutils/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/.project -------------------------------------------------------------------------------- /testutils/cafe_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/cafe_setup.bat -------------------------------------------------------------------------------- /testutils/cafe_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/cafe_setup.sh -------------------------------------------------------------------------------- /testutils/src/com/baidu/cafe/utils/CommandResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/src/com/baidu/cafe/utils/CommandResult.java -------------------------------------------------------------------------------- /testutils/src/com/baidu/cafe/utils/ReflectHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/src/com/baidu/cafe/utils/ReflectHelper.java -------------------------------------------------------------------------------- /testutils/src/com/baidu/cafe/utils/ShellExecute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/src/com/baidu/cafe/utils/ShellExecute.java -------------------------------------------------------------------------------- /testutils/src/com/baidu/cafe/utils/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/src/com/baidu/cafe/utils/Strings.java -------------------------------------------------------------------------------- /testutils/src/com/baidu/cafe/utils/TreeNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/src/com/baidu/cafe/utils/TreeNode.java -------------------------------------------------------------------------------- /testutils/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/testutils/utils.sh -------------------------------------------------------------------------------- /tools/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tools/signapk.jar -------------------------------------------------------------------------------- /tools/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tools/testkey.pk8 -------------------------------------------------------------------------------- /tools/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/tools/testkey.x509.pem -------------------------------------------------------------------------------- /travel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baidu/Cafe/HEAD/travel.sh --------------------------------------------------------------------------------