mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
123 lines
4.0 KiB
Java
123 lines
4.0 KiB
Java
#filter substitution
|
|
package @ANDROID_PACKAGE_NAME@.tests;
|
|
|
|
import @ANDROID_PACKAGE_NAME@.*;
|
|
import android.app.Instrumentation;
|
|
|
|
import org.json.JSONArray;
|
|
import org.json.JSONException;
|
|
import org.json.JSONObject;
|
|
|
|
/**
|
|
* Basic test to check bounce-back from overscroll.
|
|
* - Load the page and verify it draws
|
|
* - Drag page downwards by 100 pixels into overscroll, verify it snaps back.
|
|
* - Drag page rightwards by 100 pixels into overscroll, verify it snaps back.
|
|
*/
|
|
public class testPrefsObserver extends BaseTest {
|
|
private static final String PREF_TEST_PREF = "robocop.tests.dummy";
|
|
private static final String PREF_REQUEST_ID = "testPrefsObserver";
|
|
private static final long PREF_TIMEOUT = 10000;
|
|
|
|
private Actions.RepeatedEventExpecter mExpecter;
|
|
|
|
@Override
|
|
protected int getTestType() {
|
|
return TEST_MOCHITEST;
|
|
}
|
|
|
|
public void setPref(boolean value) throws JSONException {
|
|
mAsserter.dumpLog("Setting pref");
|
|
|
|
JSONObject jsonPref = new JSONObject();
|
|
jsonPref.put("name", PREF_TEST_PREF);
|
|
jsonPref.put("type", "bool");
|
|
jsonPref.put("value", value);
|
|
mActions.sendGeckoEvent("Preferences:Set", jsonPref.toString());
|
|
}
|
|
|
|
public void waitAndCheckPref(boolean value) throws JSONException {
|
|
mAsserter.dumpLog("Waiting to check pref");
|
|
|
|
JSONObject data = null;
|
|
String requestId = "";
|
|
|
|
while (!requestId.equals(PREF_REQUEST_ID)) {
|
|
data = new JSONObject(mExpecter.blockForEventData());
|
|
if (!mExpecter.eventReceived()) {
|
|
mAsserter.ok(false, "Checking pref is correct value", "Didn't receive pref");
|
|
return;
|
|
}
|
|
requestId = data.getString("requestId");
|
|
}
|
|
|
|
JSONObject pref = data.getJSONArray("preferences").getJSONObject(0);
|
|
mAsserter.is(pref.getString("name"), PREF_TEST_PREF, "Pref name is correct");
|
|
mAsserter.is(pref.getString("type"), "bool", "Pref type is correct");
|
|
mAsserter.is(pref.getBoolean("value"), value, "Pref value is correct");
|
|
}
|
|
|
|
public void verifyDisconnect() throws JSONException {
|
|
mAsserter.dumpLog("Checking pref observer is removed");
|
|
|
|
JSONObject pref = null;
|
|
String requestId = "";
|
|
|
|
while (!requestId.equals(PREF_REQUEST_ID)) {
|
|
String data = mExpecter.blockForEventDataWithTimeout(PREF_TIMEOUT);
|
|
if (data == null) {
|
|
mAsserter.ok(true, "Verifying pref is unobserved", "Didn't get unobserved pref");
|
|
return;
|
|
}
|
|
pref = new JSONObject(data);
|
|
requestId = pref.getString("requestId");
|
|
}
|
|
|
|
mAsserter.ok(false, "Received unobserved pref change", "");
|
|
}
|
|
|
|
public void observePref() throws JSONException {
|
|
mAsserter.dumpLog("Setting up pref observer");
|
|
|
|
// Setup the pref observer
|
|
JSONArray getPrefData = new JSONArray();
|
|
getPrefData.put(PREF_TEST_PREF);
|
|
JSONObject message = new JSONObject();
|
|
message.put("requestId", PREF_REQUEST_ID);
|
|
message.put("preferences", getPrefData);
|
|
mExpecter = mActions.expectGeckoEvent("Preferences:Data");
|
|
mActions.sendGeckoEvent("Preferences:Observe", message.toString());
|
|
}
|
|
|
|
public void removePrefObserver() {
|
|
mAsserter.dumpLog("Removing pref observer");
|
|
|
|
mActions.sendGeckoEvent("Preferences:RemoveObservers", PREF_REQUEST_ID);
|
|
}
|
|
|
|
public void testPrefsObserver() {
|
|
blockForGeckoReady();
|
|
|
|
try {
|
|
setPref(false);
|
|
observePref();
|
|
waitAndCheckPref(false);
|
|
|
|
setPref(true);
|
|
waitAndCheckPref(true);
|
|
|
|
removePrefObserver();
|
|
setPref(false);
|
|
verifyDisconnect();
|
|
} catch (Exception ex) {
|
|
mAsserter.ok(false, "exception in testPrefsObserver", ex.toString());
|
|
} finally {
|
|
// Make sure we remove the observer - if it's already removed, this
|
|
// will do nothing.
|
|
removePrefObserver();
|
|
}
|
|
mExpecter.unregisterListener();
|
|
}
|
|
}
|
|
|