| 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "chrome/browser/sync/test/integration/dictionary_helper.h" | 9 #include "chrome/browser/sync/test/integration/dictionary_helper.h" |
| 10 #include "chrome/browser/sync/test/integration/performance/sync_timing_helper.h" | 10 #include "chrome/browser/sync/test/integration/performance/sync_timing_helper.h" |
| 11 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" | 11 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" |
| 12 #include "chrome/browser/sync/test/integration/sync_test.h" | 12 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 13 #include "chrome/common/spellcheck_common.h" | 13 #include "components/spellcheck/common/spellcheck_common.h" |
| 14 | 14 |
| 15 class DictionarySyncPerfTest : public SyncTest { | 15 class DictionarySyncPerfTest : public SyncTest { |
| 16 public: | 16 public: |
| 17 DictionarySyncPerfTest() : SyncTest(TWO_CLIENT) {} | 17 DictionarySyncPerfTest() : SyncTest(TWO_CLIENT) {} |
| 18 ~DictionarySyncPerfTest() override {} | 18 ~DictionarySyncPerfTest() override {} |
| 19 | 19 |
| 20 private: | 20 private: |
| 21 DISALLOW_COPY_AND_ASSIGN(DictionarySyncPerfTest); | 21 DISALLOW_COPY_AND_ASSIGN(DictionarySyncPerfTest); |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 IN_PROC_BROWSER_TEST_F(DictionarySyncPerfTest, P0) { | 24 IN_PROC_BROWSER_TEST_F(DictionarySyncPerfTest, P0) { |
| 25 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; | 25 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; |
| 26 dictionary_helper::LoadDictionaries(); | 26 dictionary_helper::LoadDictionaries(); |
| 27 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); | 27 ASSERT_TRUE(dictionary_helper::DictionariesMatch()); |
| 28 | 28 |
| 29 base::TimeDelta dt; | 29 base::TimeDelta dt; |
| 30 for (size_t i = 0; | 30 for (size_t i = 0; i < spellcheck::MAX_SYNCABLE_DICTIONARY_WORDS; ++i) { |
| 31 i < chrome::spellcheck_common::MAX_SYNCABLE_DICTIONARY_WORDS; | |
| 32 ++i) { | |
| 33 ASSERT_TRUE(dictionary_helper::AddWord( | 31 ASSERT_TRUE(dictionary_helper::AddWord( |
| 34 0, "foo" + base::Uint64ToString(i))); | 32 0, "foo" + base::Uint64ToString(i))); |
| 35 } | 33 } |
| 36 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); | 34 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); |
| 37 ASSERT_EQ(chrome::spellcheck_common::MAX_SYNCABLE_DICTIONARY_WORDS, | 35 ASSERT_EQ(spellcheck::MAX_SYNCABLE_DICTIONARY_WORDS, |
| 38 dictionary_helper::GetDictionarySize(1)); | 36 dictionary_helper::GetDictionarySize(1)); |
| 39 SyncTimingHelper::PrintResult("dictionary", "add_words", dt); | 37 SyncTimingHelper::PrintResult("dictionary", "add_words", dt); |
| 40 | 38 |
| 41 for (size_t i = 0; | 39 for (size_t i = 0; i < spellcheck::MAX_SYNCABLE_DICTIONARY_WORDS; ++i) { |
| 42 i < chrome::spellcheck_common::MAX_SYNCABLE_DICTIONARY_WORDS; | |
| 43 ++i) { | |
| 44 ASSERT_TRUE(dictionary_helper::RemoveWord( | 40 ASSERT_TRUE(dictionary_helper::RemoveWord( |
| 45 0, "foo" + base::Uint64ToString(i))); | 41 0, "foo" + base::Uint64ToString(i))); |
| 46 } | 42 } |
| 47 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); | 43 dt = SyncTimingHelper::TimeMutualSyncCycle(GetClient(0), GetClient(1)); |
| 48 ASSERT_EQ(0UL, dictionary_helper::GetDictionarySize(1)); | 44 ASSERT_EQ(0UL, dictionary_helper::GetDictionarySize(1)); |
| 49 SyncTimingHelper::PrintResult("dictionary", "remove_words", dt); | 45 SyncTimingHelper::PrintResult("dictionary", "remove_words", dt); |
| 50 } | 46 } |
| OLD | NEW |