#filter substitution package @ANDROID_PACKAGE_NAME@.tests; import com.jayway.android.robotium.solo.Solo; import @ANDROID_PACKAGE_NAME@.*; import android.app.Activity; import android.app.Instrumentation; import android.database.Cursor; import android.content.ContentValues; import android.content.Intent; import android.os.SystemClock; import android.test.ActivityInstrumentationTestCase2; import java.io.File; import java.util.HashMap; abstract class BaseTest extends ActivityInstrumentationTestCase2 { private static final String TARGET_PACKAGE_ID = "org.mozilla.gecko"; private static final String LAUNCH_ACTIVITY_FULL_CLASSNAME="@ANDROID_PACKAGE_NAME@.App"; private static Class mLauncherActivityClass; private Activity mActivity; protected Solo mSolo; protected Driver mDriver; protected Assert mAsserter; protected Actions mActions; protected String mBaseUrl; private String mTestType; private String mLogFile; protected String mProfile; static { try { mLauncherActivityClass = (Class)Class.forName(LAUNCH_ACTIVITY_FULL_CLASSNAME); } catch (ClassNotFoundException e) { throw new RuntimeException(e); } } public BaseTest() { super(TARGET_PACKAGE_ID, mLauncherActivityClass); } @Override protected void setUp() throws Exception { // Load config file from sdcard (setup by python script) String configFile = FennecNativeDriver.getFile("/mnt/sdcard/robotium.config"); HashMap config = FennecNativeDriver.convertTextToTable(configFile); // Create the intent to be used with all the important arguments. Intent i = new Intent(Intent.ACTION_MAIN); mProfile = (String)config.get("profile"); i.putExtra("args", "-no-remote -profile " + mProfile); // Start the activity setActivityIntent(i); mActivity = getActivity(); // Set up Robotium.solo and Driver objects mSolo = new Solo(getInstrumentation()); mDriver = new FennecNativeDriver(mActivity, mSolo); mActions = new FennecNativeActions(mActivity, mSolo, getInstrumentation()); mLogFile = (String)config.get("logfile"); mBaseUrl = ((String)config.get("host")).replaceAll("(/$)", ""); } public void setTestType(String type) { mTestType = type; if (mTestType.equals("talos")) { mAsserter = new FennecTalosAssert(); } else { mAsserter = new FennecMochitestAssert(); } mAsserter.setLogFile(mLogFile); mAsserter.setTestName(this.getClass().getName()); } @Override public void tearDown() throws Exception { try { mAsserter.finalize(); mSolo.finalize(); } catch (Throwable e) { e.printStackTrace(); } getActivity().finish(); super.tearDown(); } protected final Activity getActivityFromClick(Element element) { Instrumentation inst = getInstrumentation(); Instrumentation.ActivityMonitor monitor = inst.addMonitor((String)null, null, false); element.click(); // wait for click to take effect before waiting for activity // (otherwise we sometimes get the previous activity) getInstrumentation().waitForIdleSync(); Activity activity = inst.waitForMonitor(monitor); // give the activity time to render itself and initialize views // before continuing, so that views are created before access // attempts are made getInstrumentation().waitForIdleSync(); return activity; } protected final Activity clickOnAwesomeBar() { Element awesomebar = mDriver.findElement(mActivity, "awesome_bar"); return getActivityFromClick(awesomebar); } protected final void enterUrl(String url) { Activity awesomeBarActivity = clickOnAwesomeBar(); Element urlbar = mDriver.findElement(awesomeBarActivity, "awesomebar_text"); mActions.sendKeys(url); mAsserter.is(urlbar.getText(), url, "Awesomebar URL typed properly"); } protected final void hitEnterAndWait() { Actions.EventExpecter contentEventExpecter = mActions.expectGeckoEvent("DOMContentLoaded"); mActions.sendSpecialKey(Actions.SpecialKey.ENTER); // wait for screen to load contentEventExpecter.blockForEvent(); } protected final void loadUrl(String url) { enterUrl(url); hitEnterAndWait(); } protected final void verifyUrl(String url) { Activity awesomeBarActivity = clickOnAwesomeBar(); Element urlbar = mDriver.findElement(awesomeBarActivity, "awesomebar_text"); mAsserter.is(urlbar.getText(), url, "Awesomebar URL stayed the same"); } protected final String getAbsoluteUrl(String url) { return mBaseUrl + "/" + url.replaceAll("(^/)", ""); } protected final boolean waitForTest(BooleanTest t, int timeout) { long end = SystemClock.uptimeMillis() + timeout; while (SystemClock.uptimeMillis() < end) { if (t.test()) return true; mSolo.sleep(100); } return false; } protected interface BooleanTest { public boolean test(); } @SuppressWarnings({"unchecked", "non-varargs"}) public void SqliteCompare(String dbName, String sqlCommand, ContentValues[] cvs) { File profile = new File(mProfile); String dbPath = new File(profile, dbName).getPath(); Cursor c = mActions.querySql(dbPath, sqlCommand); SqliteCompare(c, cvs); } private boolean CursorMatches(Cursor c, String[] columns, ContentValues cv) { for (int i = 0; i < columns.length; i++) { String column = columns[i]; if (cv.containsKey(column)) { mAsserter.info("Comparing", "Column value " + c.getString(i) + " ?= " + cv.get(column).toString()); if (!cv.get(column).toString().equals(c.getString(i))) { return false; } } } return true; } @SuppressWarnings({"unchecked", "non-varargs"}) public void SqliteCompare(Cursor c, ContentValues[] cvs) { mAsserter.is(c.getCount(), cvs.length, "List is correct length"); if (c.moveToFirst()) { do { boolean found = false; for (int i = 0; !found && i < cvs.length; i++) { if (CursorMatches(c, cvs[i])) { found = true; } } mAsserter.is(found, true, "Password was found"); } while(c.moveToNext()); } } public boolean CursorMatches(Cursor c, ContentValues cv) { for (int i = 0; i < c.getColumnCount(); i++) { String column = c.getColumnName(i); if (cv.containsKey(column)) { mAsserter.info("Pass","Column value " + c.getString(i) + " ?= " + cv.get(column).toString()); if (!cv.get(column).toString().equals(c.getString(i))) { return false; } } } return true; } }