| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #if defined(BROWSER_SYNC) | |
| 6 | |
| 7 #include "base/command_line.h" | 5 #include "base/command_line.h" |
| 8 #include "chrome/browser/bookmarks/bookmark_model.h" | 6 #include "chrome/browser/bookmarks/bookmark_model.h" |
| 9 #include "chrome/browser/browser.h" | 7 #include "chrome/browser/browser.h" |
| 10 #include "chrome/browser/profile.h" | 8 #include "chrome/browser/profile.h" |
| 11 #include "chrome/browser/sync/profile_sync_service.h" | 9 #include "chrome/browser/sync/profile_sync_service.h" |
| 12 #include "chrome/test/live_sync/bookmark_model_verifier.h" | 10 #include "chrome/test/live_sync/bookmark_model_verifier.h" |
| 13 #include "chrome/test/live_sync/profile_sync_service_test_harness.h" | 11 #include "chrome/test/live_sync/profile_sync_service_test_harness.h" |
| 14 #include "chrome/test/live_sync/live_bookmarks_sync_test.h" | 12 #include "chrome/test/live_sync/live_bookmarks_sync_test.h" |
| 15 | 13 |
| 16 class SingleClientLiveBookmarksSyncTest : public LiveBookmarksSyncTest { | 14 class SingleClientLiveBookmarksSyncTest : public LiveBookmarksSyncTest { |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 // 'Bookmarks' file. This is mostly useful to verify server state. | 143 // 'Bookmarks' file. This is mostly useful to verify server state. |
| 146 // DISABLED because it should be; we use this as a utility more than a test. | 144 // DISABLED because it should be; we use this as a utility more than a test. |
| 147 IN_PROC_BROWSER_TEST_F(SingleClientLiveBookmarksSyncTest, DISABLED_GetUpdates) { | 145 IN_PROC_BROWSER_TEST_F(SingleClientLiveBookmarksSyncTest, DISABLED_GetUpdates) { |
| 148 ASSERT_TRUE(SetupSync()) << "Failed to SetupSync"; | 146 ASSERT_TRUE(SetupSync()) << "Failed to SetupSync"; |
| 149 BlockUntilLoaded(browser()->profile()->GetBookmarkModel()); | 147 BlockUntilLoaded(browser()->profile()->GetBookmarkModel()); |
| 150 EXPECT_TRUE(client()->ServiceIsPushingChanges()); | 148 EXPECT_TRUE(client()->ServiceIsPushingChanges()); |
| 151 ProfileSyncService::Status status(service()->QueryDetailedSyncStatus()); | 149 ProfileSyncService::Status status(service()->QueryDetailedSyncStatus()); |
| 152 EXPECT_EQ(status.summary, ProfileSyncService::Status::READY); | 150 EXPECT_EQ(status.summary, ProfileSyncService::Status::READY); |
| 153 EXPECT_EQ(status.unsynced_count, 0); | 151 EXPECT_EQ(status.unsynced_count, 0); |
| 154 } | 152 } |
| 155 | |
| 156 #endif // defined(BROWSER_SYNC) | |
| OLD | NEW |