Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / sync / test / integration / single_client_dictionary_sync_test.cc
blob5b06dfed40aebe9a88230bda7ca601d057aaff2a
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
3 // found in the LICENSE file.
5 #include "chrome/browser/sync/test/integration/dictionary_helper.h"
6 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
7 #include "chrome/browser/sync/test/integration/sync_test.h"
9 class SingleClientDictionarySyncTest : public SyncTest {
10 public:
11 SingleClientDictionarySyncTest() : SyncTest(SINGLE_CLIENT) {}
12 virtual ~SingleClientDictionarySyncTest() {}
14 private:
15 DISALLOW_COPY_AND_ASSIGN(SingleClientDictionarySyncTest);
18 IN_PROC_BROWSER_TEST_F(SingleClientDictionarySyncTest, Sanity) {
19 ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
20 dictionary_helper::LoadDictionaries();
21 ASSERT_TRUE(dictionary_helper::DictionariesMatch());
23 std::string word = "foo";
24 ASSERT_TRUE(dictionary_helper::AddWord(0, word));
25 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion());
26 ASSERT_TRUE(dictionary_helper::DictionariesMatch());
28 ASSERT_TRUE(dictionary_helper::RemoveWord(0, word));
29 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion());
30 ASSERT_TRUE(dictionary_helper::DictionariesMatch());