Index: chrome/browser/sync/test/live_sync/two_client_apps_sync_test.cc |
diff --git a/chrome/browser/sync/test/live_sync/two_client_apps_sync_test.cc b/chrome/browser/sync/test/live_sync/two_client_apps_sync_test.cc |
deleted file mode 100644 |
index d6c48eae59cbedc79a67f2c53cb11d692975d489..0000000000000000000000000000000000000000 |
--- a/chrome/browser/sync/test/live_sync/two_client_apps_sync_test.cc |
+++ /dev/null |
@@ -1,280 +0,0 @@ |
-// Copyright (c) 2011 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. |
- |
-#include "base/basictypes.h" |
-#include "chrome/browser/sync/profile_sync_service_harness.h" |
-#include "chrome/browser/sync/test/live_sync/apps_helper.h" |
-#include "chrome/browser/sync/test/live_sync/live_sync_test.h" |
- |
-using apps_helper::AllProfilesHaveSameAppsAsVerifier; |
-using apps_helper::DisableApp; |
-using apps_helper::EnableApp; |
-using apps_helper::HasSameAppsAsVerifier; |
-using apps_helper::IncognitoDisableApp; |
-using apps_helper::IncognitoEnableApp; |
-using apps_helper::InstallApp; |
-using apps_helper::InstallAppsPendingForSync; |
-using apps_helper::UninstallApp; |
- |
-class TwoClientAppsSyncTest : public LiveSyncTest { |
- public: |
- TwoClientAppsSyncTest() : LiveSyncTest(TWO_CLIENT) {} |
- |
- virtual ~TwoClientAppsSyncTest() {} |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(TwoClientAppsSyncTest); |
-}; |
- |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, StartWithNoApps) { |
- ASSERT_TRUE(SetupSync()); |
- |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, StartWithSameApps) { |
- ASSERT_TRUE(SetupClients()); |
- |
- const int kNumApps = 5; |
- for (int i = 0; i < kNumApps; ++i) { |
- InstallApp(GetProfile(0), i); |
- InstallApp(GetProfile(1), i); |
- InstallApp(verifier(), i); |
- } |
- |
- ASSERT_TRUE(SetupSync()); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, StartWithDifferentApps) { |
- ASSERT_TRUE(SetupClients()); |
- |
- int i = 0; |
- |
- const int kNumCommonApps = 5; |
- for (int j = 0; j < kNumCommonApps; ++i, ++j) { |
- InstallApp(GetProfile(0), i); |
- InstallApp(GetProfile(1), i); |
- InstallApp(verifier(), i); |
- } |
- |
- const int kNumProfile0Apps = 10; |
- for (int j = 0; j < kNumProfile0Apps; ++i, ++j) { |
- InstallApp(GetProfile(0), i); |
- InstallApp(verifier(), i); |
- } |
- |
- const int kNumProfile1Apps = 10; |
- for (int j = 0; j < kNumProfile1Apps; ++i, ++j) { |
- InstallApp(GetProfile(1), i); |
- InstallApp(verifier(), i); |
- } |
- |
- ASSERT_TRUE(SetupSync()); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, InstallDifferentApps) { |
- ASSERT_TRUE(SetupClients()); |
- |
- int i = 0; |
- |
- const int kNumCommonApps = 5; |
- for (int j = 0; j < kNumCommonApps; ++i, ++j) { |
- InstallApp(GetProfile(0), i); |
- InstallApp(GetProfile(1), i); |
- InstallApp(verifier(), i); |
- } |
- |
- ASSERT_TRUE(SetupSync()); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- const int kNumProfile0Apps = 10; |
- for (int j = 0; j < kNumProfile0Apps; ++i, ++j) { |
- InstallApp(GetProfile(0), i); |
- InstallApp(verifier(), i); |
- } |
- |
- const int kNumProfile1Apps = 10; |
- for (int j = 0; j < kNumProfile1Apps; ++i, ++j) { |
- InstallApp(GetProfile(1), i); |
- InstallApp(verifier(), i); |
- } |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 3711279. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, Add) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- InstallApp(GetProfile(0), 0); |
- InstallApp(verifier(), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 3706267. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, Uninstall) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- InstallApp(GetProfile(0), 0); |
- InstallApp(verifier(), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- UninstallApp(GetProfile(0), 0); |
- UninstallApp(verifier(), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 3699295. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, Merge) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- InstallApp(GetProfile(0), 0); |
- InstallApp(GetProfile(1), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- UninstallApp(GetProfile(0), 0); |
- InstallApp(GetProfile(0), 1); |
- InstallApp(verifier(), 1); |
- |
- InstallApp(GetProfile(0), 2); |
- InstallApp(GetProfile(1), 2); |
- InstallApp(verifier(), 2); |
- |
- InstallApp(GetProfile(1), 3); |
- InstallApp(verifier(), 3); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 7723126. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, UpdateEnableDisableApp) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- InstallApp(GetProfile(0), 0); |
- InstallApp(GetProfile(1), 0); |
- InstallApp(verifier(), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- DisableApp(GetProfile(0), 0); |
- DisableApp(verifier(), 0); |
- ASSERT_TRUE(HasSameAppsAsVerifier(0)); |
- ASSERT_FALSE(HasSameAppsAsVerifier(1)); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- EnableApp(GetProfile(1), 0); |
- EnableApp(verifier(), 0); |
- ASSERT_TRUE(HasSameAppsAsVerifier(1)); |
- ASSERT_FALSE(HasSameAppsAsVerifier(0)); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 7706637. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, UpdateIncognitoEnableDisable) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- InstallApp(GetProfile(0), 0); |
- InstallApp(GetProfile(1), 0); |
- InstallApp(verifier(), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- IncognitoEnableApp(GetProfile(0), 0); |
- IncognitoEnableApp(verifier(), 0); |
- ASSERT_TRUE(HasSameAppsAsVerifier(0)); |
- ASSERT_FALSE(HasSameAppsAsVerifier(1)); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- IncognitoDisableApp(GetProfile(1), 0); |
- IncognitoDisableApp(verifier(), 0); |
- ASSERT_TRUE(HasSameAppsAsVerifier(1)); |
- ASSERT_FALSE(HasSameAppsAsVerifier(0)); |
- |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 3718276. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, DisableApps) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- ASSERT_TRUE(GetClient(1)->DisableSyncForDatatype(syncable::APPS)); |
- InstallApp(GetProfile(0), 0); |
- InstallApp(verifier(), 0); |
- ASSERT_TRUE(AwaitQuiescence()); |
- ASSERT_TRUE(HasSameAppsAsVerifier(0)); |
- ASSERT_FALSE(HasSameAppsAsVerifier(1)); |
- |
- ASSERT_TRUE(GetClient(1)->EnableSyncForDatatype(syncable::APPS)); |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TCM ID - 3720303. |
-IN_PROC_BROWSER_TEST_F(TwoClientAppsSyncTest, DisableSync) { |
- ASSERT_TRUE(SetupSync()); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
- |
- ASSERT_TRUE(GetClient(1)->DisableSyncForAllDatatypes()); |
- InstallApp(GetProfile(0), 0); |
- InstallApp(verifier(), 0); |
- ASSERT_TRUE(GetClient(0)->AwaitSyncCycleCompletion("Installed an app.")); |
- ASSERT_TRUE(HasSameAppsAsVerifier(0)); |
- ASSERT_FALSE(HasSameAppsAsVerifier(1)); |
- |
- ASSERT_TRUE(GetClient(1)->EnableSyncForAllDatatypes()); |
- ASSERT_TRUE(AwaitQuiescence()); |
- |
- InstallAppsPendingForSync(GetProfile(0)); |
- InstallAppsPendingForSync(GetProfile(1)); |
- ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier()); |
-} |
- |
-// TODO(akalin): Add tests exercising: |
-// - Offline installation/uninstallation behavior |
-// - App-specific properties |