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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/spellchecker/misspelling.cc ('k') | chrome/browser/spellchecker/spellcheck_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/spellchecker/misspelling_unittest.cc
diff --git a/chrome/browser/spellchecker/misspelling_unittest.cc b/chrome/browser/spellchecker/misspelling_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bfc162854cec6c7bd96d382039551c74ad1b63a4
--- /dev/null
+++ b/chrome/browser/spellchecker/misspelling_unittest.cc
@@ -0,0 +1,52 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+// Unit tests for |Misspelling| object.
+
+#include "chrome/browser/spellchecker/misspelling.h"
+
+#include "base/json/json_reader.h"
+#include "base/strings/utf_string_conversions.h"
+#include "base/values.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+TEST(MisspellingTest, SerializeTest) {
+ Misspelling misspelling;
+ misspelling.context = base::ASCIIToUTF16("How doe sit know");
+ misspelling.location = 4;
+ misspelling.length = 7;
+ misspelling.timestamp = base::Time::FromJsTime(42);
+ misspelling.hash = 9001;
+ misspelling.suggestions.push_back(base::ASCIIToUTF16("does it"));
+
+ scoped_ptr<base::Value> expected(base::JSONReader::Read(
+ "{\"originalText\": \"How doe sit know\","
+ "\"misspelledStart\": 4,"
+ "\"misspelledLength\": 7,"
+ "\"timestamp\": \"42\","
+ "\"suggestionId\":\"9001\","
+ "\"suggestions\": [\"does it\"],"
+ "\"userActions\": [{\"actionType\": \"PENDING\"}]}"));
+
+ scoped_ptr<base::DictionaryValue> serialized(misspelling.Serialize());
+ EXPECT_TRUE(serialized->Equals(expected.get()));
+}
+
+TEST(MisspellingTest, GetMisspelledStringTest) {
+ Misspelling misspelling;
+ misspelling.context = base::ASCIIToUTF16("How doe sit know");
+ misspelling.location = 4;
+ misspelling.length = 7;
+ EXPECT_EQ(base::ASCIIToUTF16("doe sit"), misspelling.GetMisspelledString());
+
+ misspelling.length = 0;
+ EXPECT_EQ(base::string16(), misspelling.GetMisspelledString());
+
+ misspelling.location = misspelling.context.length();
+ misspelling.length = 7;
+ EXPECT_EQ(base::string16(), misspelling.GetMisspelledString());
+
+ misspelling.location = misspelling.context.length() + 1;
+ EXPECT_EQ(base::string16(), misspelling.GetMisspelledString());
+}
« 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