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

Unified Diff: chrome/browser/extensions/extension_omnibox_unittest.cc

Issue 5064001: More changes to extension omnibox API for styles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: offset Created 10 years, 1 month 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
Index: chrome/browser/extensions/extension_omnibox_unittest.cc
diff --git a/chrome/browser/extensions/extension_omnibox_unittest.cc b/chrome/browser/extensions/extension_omnibox_unittest.cc
index ca2d1e0b97e1cbe88445981ab24063b6899272cc..a358b18c4dfdd88e0b944fa69dda10c7dd2aa546 100644
--- a/chrome/browser/extensions/extension_omnibox_unittest.cc
+++ b/chrome/browser/extensions/extension_omnibox_unittest.cc
@@ -9,6 +9,11 @@
namespace {
+const int kNone = ACMatchClassification::NONE;
+const int kUrl = ACMatchClassification::URL;
+const int kMatch = ACMatchClassification::MATCH;
+const int kDim = ACMatchClassification::DIM;
+
void AppendStyle(const std::string& type,
int offset, int length,
ListValue* styles) {
@@ -31,6 +36,7 @@ void CompareClassification(const ACMatchClassifications& expected,
} // namespace
// Test output key: n = character with no styling, d = dim, m = match, u = url
+// u = 1, m = 2, d = 4. u+d = 5, etc.
// 0123456789
// mmmm
@@ -42,16 +48,11 @@ TEST(ExtensionOmniboxTest, DescriptionStylesSimple) {
AppendStyle("dim", 6, 3, &styles_value);
ACMatchClassifications styles_expected;
- styles_expected.push_back(
- ACMatchClassification(0, ACMatchClassification::NONE));
- styles_expected.push_back(
- ACMatchClassification(1, ACMatchClassification::MATCH));
- styles_expected.push_back(
- ACMatchClassification(5, ACMatchClassification::NONE));
- styles_expected.push_back(
- ACMatchClassification(6, ACMatchClassification::DIM));
- styles_expected.push_back(
- ACMatchClassification(9, ACMatchClassification::NONE));
+ styles_expected.push_back(ACMatchClassification(0, kNone));
+ styles_expected.push_back(ACMatchClassification(1, kMatch));
+ styles_expected.push_back(ACMatchClassification(5, kNone));
+ styles_expected.push_back(ACMatchClassification(6, kDim));
+ styles_expected.push_back(ACMatchClassification(9, kNone));
ExtensionOmniboxSuggestion suggestions;
suggestions.description.resize(10);
@@ -67,13 +68,13 @@ TEST(ExtensionOmniboxTest, DescriptionStylesSimple) {
}
// 0123456789
-// uuuuuu
+// uuuuu
// + dd
// + mm
// + mmmm
// + dd
-// = mddmunnnnm
-TEST(ExtensionOmniboxTest, DescriptionStylesOverlap) {
+// = 3773unnnn66
+TEST(ExtensionOmniboxTest, DescriptionStylesCombine) {
ListValue styles_value;
AppendStyle("url", 0, 5, &styles_value);
AppendStyle("dim", 9, 2, &styles_value);
@@ -82,18 +83,12 @@ TEST(ExtensionOmniboxTest, DescriptionStylesOverlap) {
AppendStyle("dim", 1, 2, &styles_value);
ACMatchClassifications styles_expected;
- styles_expected.push_back(
- ACMatchClassification(0, ACMatchClassification::MATCH));
- styles_expected.push_back(
- ACMatchClassification(1, ACMatchClassification::DIM));
- styles_expected.push_back(
- ACMatchClassification(3, ACMatchClassification::MATCH));
- styles_expected.push_back(
- ACMatchClassification(4, ACMatchClassification::URL));
- styles_expected.push_back(
- ACMatchClassification(5, ACMatchClassification::NONE));
- styles_expected.push_back(
- ACMatchClassification(9, ACMatchClassification::MATCH));
+ styles_expected.push_back(ACMatchClassification(0, kUrl | kMatch));
+ styles_expected.push_back(ACMatchClassification(1, kUrl | kMatch | kDim));
+ styles_expected.push_back(ACMatchClassification(3, kUrl | kMatch));
+ styles_expected.push_back(ACMatchClassification(4, kUrl));
+ styles_expected.push_back(ACMatchClassification(5, kNone));
+ styles_expected.push_back(ACMatchClassification(9, kMatch | kDim));
ExtensionOmniboxSuggestion suggestions;
suggestions.description.resize(10);
@@ -118,8 +113,8 @@ TEST(ExtensionOmniboxTest, DescriptionStylesOverlap) {
// + mmm
// + ddd
// + ddd
-// = dddddnnnnn
-TEST(ExtensionOmniboxTest, DescriptionStylesOverlap2) {
+// = 77777nnnnn
+TEST(ExtensionOmniboxTest, DescriptionStylesCombine2) {
ListValue styles_value;
AppendStyle("url", 0, 5, &styles_value);
AppendStyle("match", 0, 5, &styles_value);
@@ -127,15 +122,9 @@ TEST(ExtensionOmniboxTest, DescriptionStylesOverlap2) {
AppendStyle("dim", 2, 3, &styles_value);
AppendStyle("dim", 0, 3, &styles_value);
- // We don't merge adjacent identical styles, but the autocomplete system
- // doesn't mind.
ACMatchClassifications styles_expected;
- styles_expected.push_back(
- ACMatchClassification(0, ACMatchClassification::DIM));
- styles_expected.push_back(
- ACMatchClassification(3, ACMatchClassification::DIM));
- styles_expected.push_back(
- ACMatchClassification(5, ACMatchClassification::NONE));
+ styles_expected.push_back(ACMatchClassification(0, kUrl | kMatch | kDim));
+ styles_expected.push_back(ACMatchClassification(5, kNone));
ExtensionOmniboxSuggestion suggestions;
suggestions.description.resize(10);
« no previous file with comments | « chrome/browser/extensions/extension_omnibox_apitest.cc ('k') | chrome/common/extensions/api/extension_api.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698