Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Unified Diff: chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/sync/SyncTestBase.java

Issue 1305213003: Convert ChromeSyncShell to use ChromePublic infrastructure (try #2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/sync/SyncTestBase.java
diff --git a/chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/sync/SyncTestBase.java b/chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/sync/SyncTestBase.java
index 24b7bc5f1a8ccaebe52410c588e7018c0f048503..e5e3987ae93076e734722e3b66bf21e26e88a27f 100644
--- a/chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/sync/SyncTestBase.java
+++ b/chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/sync/SyncTestBase.java
@@ -8,12 +8,13 @@ import android.accounts.Account;
import android.content.Context;
import org.chromium.base.ThreadUtils;
+import org.chromium.chrome.browser.ChromeActivity;
import org.chromium.chrome.browser.identity.UniqueIdentificationGenerator;
import org.chromium.chrome.browser.identity.UniqueIdentificationGeneratorFactory;
import org.chromium.chrome.browser.identity.UuidBasedUniqueIdentificationGenerator;
import org.chromium.chrome.browser.signin.AccountIdProvider;
import org.chromium.chrome.browser.signin.SigninManager;
-import org.chromium.chrome.shell.ChromeShellTestBase;
+import org.chromium.chrome.test.ChromeActivityTestCaseBase;
import org.chromium.chrome.test.util.browser.sync.SyncTestUtil;
import org.chromium.sync.AndroidSyncSettings;
import org.chromium.sync.signin.AccountManagerHelper;
@@ -26,7 +27,7 @@ import java.util.Set;
/**
* Base class for common functionality between sync tests.
*/
-public class SyncTestBase extends ChromeShellTestBase {
+public class SyncTestBase extends ChromeActivityTestCaseBase<ChromeActivity> {
private static final String TAG = "SyncTestBase";
protected static final String CLIENT_ID = "Client_ID";
@@ -38,21 +39,33 @@ public class SyncTestBase extends ChromeShellTestBase {
protected ProfileSyncService mProfileSyncService;
protected MockSyncContentResolverDelegate mSyncContentResolver;
+ public SyncTestBase() {
+ super(ChromeActivity.class);
+ }
+
+ @Override
+ public void startMainActivity() throws InterruptedException {
+ // Start the activity by opening about:blank. This URL is ideal because it is not synced as
+ // a typed URL. If another URL is used, it could interfere with test data.
+ startMainActivityOnBlankPage();
+ }
+
@Override
protected void setUp() throws Exception {
+ // This must be called before super.setUp() in order for test authentication to work
+ // properly.
+ mapAccountNamesToIds();
+
super.setUp();
- assertTrue("Clearing app data failed.", clearAppData());
Context targetContext = getInstrumentation().getTargetContext();
mContext = new SyncTestUtil.SyncTestContext(targetContext);
- mapAccountNamesToIds();
setUpMockAndroidSyncSettings();
setUpMockAccountManager();
// Initializes ChromeSigninController to use our test context.
ChromeSigninController.get(mContext);
- startChromeBrowserProcessSync(targetContext);
ThreadUtils.runOnUiThreadBlocking(new Runnable() {
@Override
public void run() {
@@ -69,13 +82,6 @@ public class SyncTestBase extends ChromeShellTestBase {
mProfileSyncService = ProfileSyncService.get(mContext);
}
});
-
- // Start the activity by opening about:blank. This URL is ideal because it is not synced as
- // a typed URL. If another URL is used, it could interfere with test data. This call is in
- // this location so that it takes place before any other calls to getActivity(). If
- // getActivity() is called without any prior configuration, an undesired URL
- // (e.g., google.com) will be opened.
- launchChromeShellWithBlankPage();
}
@Override

Powered by Google App Engine
This is Rietveld 408576698