Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc

Issue 11414282: Improve reliability of custom spelling dictionary file. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <vector> 5 #include <vector>
6 6
7 #include "base/file_util.h"
7 #include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h" 8 #include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h"
8 #include "chrome/browser/spellchecker/spellcheck_factory.h" 9 #include "chrome/browser/spellchecker/spellcheck_factory.h"
9 #include "chrome/browser/spellchecker/spellcheck_service.h" 10 #include "chrome/browser/spellchecker/spellcheck_service.h"
11 #include "chrome/common/chrome_constants.h"
10 #include "chrome/common/spellcheck_common.h" 12 #include "chrome/common/spellcheck_common.h"
11 #include "chrome/test/base/testing_profile.h" 13 #include "chrome/test/base/testing_profile.h"
12 #include "content/public/test/test_browser_thread.h" 14 #include "content/public/test/test_browser_thread.h"
13 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
15 17
16 using content::BrowserThread; 18 using content::BrowserThread;
17 using chrome::spellcheck_common::WordList; 19 using chrome::spellcheck_common::WordList;
18 20
19 static ProfileKeyedService* BuildSpellcheckService(Profile* profile) { 21 static ProfileKeyedService* BuildSpellcheckService(Profile* profile) {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 159
158 WordList actual2; 160 WordList actual2;
159 custom_dictionary2->LoadDictionaryIntoCustomWordList(&actual2); 161 custom_dictionary2->LoadDictionaryIntoCustomWordList(&actual2);
160 std::sort(expected2.begin(), expected2.end()); 162 std::sort(expected2.begin(), expected2.end());
161 EXPECT_EQ(actual2, expected2); 163 EXPECT_EQ(actual2, expected2);
162 164
163 // Flush the loop now to prevent service init tasks from being run during 165 // Flush the loop now to prevent service init tasks from being run during
164 // TearDown(); 166 // TearDown();
165 MessageLoop::current()->RunUntilIdle(); 167 MessageLoop::current()->RunUntilIdle();
166 } 168 }
169
170 TEST_F(SpellcheckCustomDictionaryTest, Reliability) {
171 FilePath dictionary_path(
172 profile_->GetPath().Append(chrome::kCustomDictionaryFileName));
173 SpellcheckService* spellcheck_service =
174 SpellcheckServiceFactory::GetForProfile(profile_.get());
175 SpellcheckCustomDictionary* custom_dictionary =
176 spellcheck_service->GetCustomDictionary();
177 WordList loaded_custom_words;
178 WordList expected;
179 std::string content = "";
180
181 // Legacy empty dictionary should be converted to new format empty dicitonary.
182 content = "";
183 file_util::WriteFile(dictionary_path, content.c_str(), content.length());
184 custom_dictionary->LoadDictionaryIntoCustomWordList(&loaded_custom_words);
185 EXPECT_EQ(loaded_custom_words, expected);
186
187 // Legacy dictionary with two words should be converted to new format
188 // dictionary with two words.
189 content = "foo\nbar\n";
190 file_util::WriteFile(dictionary_path, content.c_str(), content.length());
191 custom_dictionary->LoadDictionaryIntoCustomWordList(&loaded_custom_words);
192 expected.push_back("bar");
193 expected.push_back("foo");
194 EXPECT_EQ(expected, loaded_custom_words);
195
196 // Write to dicitonary should backup previous version and write the word to
197 // the end of the dictionary. The dicitonary is now unsorted.
198 custom_dictionary->WriteWordToCustomDictionary("baz");
199
200 // Reloading the custom dicitonary will backup the unsorted version of the
201 // dictionary and write a sorted version to disk as part of the cleanup that
202 // happens on load.
203 custom_dictionary->LoadDictionaryIntoCustomWordList(&loaded_custom_words);
204 expected.insert(expected.begin() + 1, "baz");
205 EXPECT_EQ(expected, loaded_custom_words);
206
207 // If the dictionary file is corrupted on disk, the previous version should be
208 // reloaded. The previous version is unsorted. The load process sorts it as
209 // part of cleanup.
210 content.clear();
211 file_util::ReadFileToString(dictionary_path, &content);
212 content.append("corruption");
213 file_util::WriteFile(dictionary_path, content.c_str(), content.length());
214 custom_dictionary->LoadDictionaryIntoCustomWordList(&loaded_custom_words);
215 EXPECT_EQ(expected, loaded_custom_words);
216
217 // Write "fun" successfully, but corrupt the write of "zoo". Reloading the
218 // dicitonary should undo the "zoo" write and see only "fun" word at the end.
219 custom_dictionary->WriteWordToCustomDictionary("fun");
220 custom_dictionary->WriteWordToCustomDictionary("zoo");
221 content.clear();
222 file_util::ReadFileToString(dictionary_path, &content);
223 content.append("corruption");
224 file_util::WriteFile(dictionary_path, content.c_str(), content.length());
225 custom_dictionary->LoadDictionaryIntoCustomWordList(&loaded_custom_words);
226 expected.push_back("fun");
227 // The write of "zoo" was corrupted, so not expecting to see it.
228 EXPECT_EQ(expected, loaded_custom_words);
229
230 // Flush the loop now to prevent service init tasks from being run during
231 // TearDown();
232 MessageLoop::current()->RunUntilIdle();
233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698