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

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

Issue 1006953003: Revert "Remove spellcheck feedback." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months 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
(Empty)
1 // Copyright (c) 2013 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.
4 //
5 // Unit tests for |Misspelling| object.
6
7 #include "chrome/browser/spellchecker/misspelling.h"
8
9 #include "base/json/json_reader.h"
10 #include "base/strings/utf_string_conversions.h"
11 #include "base/values.h"
12 #include "testing/gtest/include/gtest/gtest.h"
13
14 TEST(MisspellingTest, SerializeTest) {
15 Misspelling misspelling;
16 misspelling.context = base::ASCIIToUTF16("How doe sit know");
17 misspelling.location = 4;
18 misspelling.length = 7;
19 misspelling.timestamp = base::Time::FromJsTime(42);
20 misspelling.hash = 9001;
21 misspelling.suggestions.push_back(base::ASCIIToUTF16("does it"));
22
23 scoped_ptr<base::Value> expected(base::JSONReader::Read(
24 "{\"originalText\": \"How doe sit know\","
25 "\"misspelledStart\": 4,"
26 "\"misspelledLength\": 7,"
27 "\"timestamp\": \"42\","
28 "\"suggestionId\":\"9001\","
29 "\"suggestions\": [\"does it\"],"
30 "\"userActions\": [{\"actionType\": \"PENDING\"}]}"));
31
32 scoped_ptr<base::DictionaryValue> serialized(misspelling.Serialize());
33 EXPECT_TRUE(serialized->Equals(expected.get()));
34 }
35
36 TEST(MisspellingTest, GetMisspelledStringTest) {
37 Misspelling misspelling;
38 misspelling.context = base::ASCIIToUTF16("How doe sit know");
39 misspelling.location = 4;
40 misspelling.length = 7;
41 EXPECT_EQ(base::ASCIIToUTF16("doe sit"), misspelling.GetMisspelledString());
42
43 misspelling.length = 0;
44 EXPECT_EQ(base::string16(), misspelling.GetMisspelledString());
45
46 misspelling.location = misspelling.context.length();
47 misspelling.length = 7;
48 EXPECT_EQ(base::string16(), misspelling.GetMisspelledString());
49
50 misspelling.location = misspelling.context.length() + 1;
51 EXPECT_EQ(base::string16(), misspelling.GetMisspelledString());
52 }
OLDNEW
« no previous file with comments | « chrome/browser/spellchecker/misspelling.cc ('k') | chrome/browser/spellchecker/spellcheck_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698