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

Unified Diff: sync/android/javatests/src/org/chromium/sync/notifier/signin/AccountManagerHelperTest.java

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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: sync/android/javatests/src/org/chromium/sync/notifier/signin/AccountManagerHelperTest.java
diff --git a/sync/android/javatests/src/org/chromium/sync/notifier/signin/AccountManagerHelperTest.java b/sync/android/javatests/src/org/chromium/sync/notifier/signin/AccountManagerHelperTest.java
deleted file mode 100644
index ce5e267d9706a99f59e8294f72534ce13be5914f..0000000000000000000000000000000000000000
--- a/sync/android/javatests/src/org/chromium/sync/notifier/signin/AccountManagerHelperTest.java
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.sync.notifier.signin;
-
-import android.accounts.Account;
-import android.content.Context;
-import android.test.InstrumentationTestCase;
-import android.test.suitebuilder.annotation.SmallTest;
-
-import org.chromium.sync.signin.AccountManagerHelper;
-import org.chromium.sync.test.util.AccountHolder;
-import org.chromium.sync.test.util.MockAccountManager;
-import org.chromium.sync.test.util.SimpleFuture;
-
-/**
- * Test class for {@link AccountManagerHelper}.
- */
-public class AccountManagerHelperTest extends InstrumentationTestCase {
-
- private MockAccountManager mAccountManager;
- private AccountManagerHelper mHelper;
-
- @Override
- protected void setUp() throws Exception {
- super.setUp();
-
- Context context = getInstrumentation().getTargetContext();
- mAccountManager = new MockAccountManager(context, context);
- AccountManagerHelper.overrideAccountManagerHelperForTests(context, mAccountManager);
- mHelper = AccountManagerHelper.get(context);
- }
-
- @SmallTest
- public void testCanonicalAccount() throws InterruptedException {
- addTestAccount("test@gmail.com", "password");
-
- assertTrue(hasAccountForName("test@gmail.com"));
- assertTrue(hasAccountForName("Test@gmail.com"));
- assertTrue(hasAccountForName("te.st@gmail.com"));
- }
-
- // If this test starts flaking, please re-open crbug.com/568636 and make sure there is some sort
- // of stack trace or error message in that bug BEFORE disabling the test.
- @SmallTest
- public void testNonCanonicalAccount() throws InterruptedException {
- addTestAccount("test.me@gmail.com", "password");
-
- assertTrue(hasAccountForName("test.me@gmail.com"));
- assertTrue(hasAccountForName("testme@gmail.com"));
- assertTrue(hasAccountForName("Testme@gmail.com"));
- assertTrue(hasAccountForName("te.st.me@gmail.com"));
- }
-
- private Account addTestAccount(String accountName, String password) {
- Account account = AccountManagerHelper.createAccountFromName(accountName);
- AccountHolder.Builder accountHolder =
- AccountHolder.create().account(account).password(password).alwaysAccept(true);
- mAccountManager.addAccountHolderExplicitly(accountHolder.build());
- return account;
- }
-
- private boolean hasAccountForName(String accountName) throws InterruptedException {
- SimpleFuture<Boolean> result = new SimpleFuture<Boolean>();
- mHelper.hasAccountForName(accountName, result.createCallback());
- return result.get();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698