| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/sync/profile_sync_service_harness.h" | 5 #include "chrome/browser/sync/profile_sync_service_harness.h" |
| 6 #include "chrome/browser/sync/test/integration/dictionary_helper.h" | 6 #include "chrome/browser/sync/test/integration/dictionary_helper.h" |
| 7 #include "chrome/browser/sync/test/integration/sync_test.h" | 7 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 8 | 8 |
| 9 class SingleClientDictionarySyncTest : public SyncTest { | 9 class SingleClientDictionarySyncTest : public SyncTest { |
| 10 public: | 10 public: |
| 11 SingleClientDictionarySyncTest() : SyncTest(SINGLE_CLIENT) {} | 11 SingleClientDictionarySyncTest() : SyncTest(SINGLE_CLIENT) {} |
| 12 virtual ~SingleClientDictionarySyncTest() {} | 12 virtual ~SingleClientDictionarySyncTest() {} |
| 13 | 13 |
| 14 virtual void AddOptionalTypesToCommandLine(CommandLine* cl) OVERRIDE { | |
| 15 dictionary_helper::EnableDictionarySync(cl); | |
| 16 } | |
| 17 | |
| 18 private: | 14 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(SingleClientDictionarySyncTest); | 15 DISALLOW_COPY_AND_ASSIGN(SingleClientDictionarySyncTest); |
| 20 }; | 16 }; |
| 21 | 17 |
| 22 IN_PROC_BROWSER_TEST_F(SingleClientDictionarySyncTest, Sanity) { | 18 IN_PROC_BROWSER_TEST_F(SingleClientDictionarySyncTest, Sanity) { |
| 23 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; | 19 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; |
| 24 dictionary_helper::LoadDictionaries(); | 20 dictionary_helper::LoadDictionaries(); |
| 25 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); | 21 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); |
| 26 | 22 |
| 27 std::string word = "foo"; | 23 std::string word = "foo"; |
| 28 ASSERT_TRUE(dictionary_helper::AddWord(0, word)); | 24 ASSERT_TRUE(dictionary_helper::AddWord(0, word)); |
| 29 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion("Added a word")); | 25 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion("Added a word")); |
| 30 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); | 26 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); |
| 31 | 27 |
| 32 ASSERT_TRUE(dictionary_helper::RemoveWord(0, word)); | 28 ASSERT_TRUE(dictionary_helper::RemoveWord(0, word)); |
| 33 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion("Removed a word")); | 29 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion("Removed a word")); |
| 34 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); | 30 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); |
| 35 | 31 |
| 36 MessageLoop::current()->RunUntilIdle(); | 32 MessageLoop::current()->RunUntilIdle(); |
| 37 } | 33 } |
| OLD | NEW |