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

Unified Diff: components/bookmarks/browser/titled_url_match_unittest.cc

Issue 2583763003: Factor out AutocompleteMatch creation from BookmarkProvider (Closed)
Patch Set: re-add unittest Created 3 years, 11 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 | « components/bookmarks/browser/titled_url_index.h ('k') | components/omnibox/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/bookmarks/browser/titled_url_match_unittest.cc
diff --git a/components/bookmarks/browser/titled_url_match_unittest.cc b/components/bookmarks/browser/titled_url_match_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0618797f5d59222b49fd6b848664d1cff1cb9892
--- /dev/null
+++ b/components/bookmarks/browser/titled_url_match_unittest.cc
@@ -0,0 +1,66 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
sky 2017/01/06 00:54:43 2017
mattreynolds 2017/01/06 01:13:44 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/bookmarks/browser/titled_url_match.h"
+
+#include "base/macros.h"
+#include "base/strings/utf_string_conversions.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+using bookmarks::TitledUrlMatch;
+using MatchPositions = bookmarks::TitledUrlMatch::MatchPositions;
+
+class TitledUrlMatchTest : public testing::Test {
sky 2017/01/06 00:54:43 How come you need a class here? Can't you use the
mattreynolds 2017/01/06 01:13:44 Cool, didn't know this was an option. I made the c
Mark P 2017/01/06 06:06:09 Neat. I didn't know it was an option either.
+ public:
+ TitledUrlMatchTest() {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(TitledUrlMatchTest);
+};
+
+TEST_F(TitledUrlMatchTest, EmptyOffsetsForEmptyMatchPositions) {
+ auto offsets = TitledUrlMatch::OffsetsFromMatchPositions(MatchPositions());
+ EXPECT_TRUE(offsets.empty());
+}
+
+TEST_F(TitledUrlMatchTest, OffsetsFromMatchPositions) {
+ MatchPositions match_positions = {{1, 3}, {4, 5}, {10, 15}};
+ std::vector<size_t> expected_offsets = {1, 3, 4, 5, 10, 15};
+ auto offsets = TitledUrlMatch::OffsetsFromMatchPositions(match_positions);
+ EXPECT_TRUE(
+ std::equal(offsets.begin(), offsets.end(), expected_offsets.begin()));
+}
+
+TEST_F(TitledUrlMatchTest, ReplaceOffsetsInEmptyMatchPositions) {
+ auto match_positions = TitledUrlMatch::ReplaceOffsetsInMatchPositions(
+ MatchPositions(), std::vector<size_t>());
+ EXPECT_TRUE(match_positions.empty());
+}
+
+TEST_F(TitledUrlMatchTest, ReplaceOffsetsInMatchPositions) {
+ MatchPositions orig_match_positions = {{1, 3}, {4, 5}, {10, 15}};
+ std::vector<size_t> offsets = {0, 2, 3, 4, 9, 14};
+ MatchPositions expected_match_positions = {{0, 2}, {3, 4}, {9, 14}};
+ auto match_positions = TitledUrlMatch::ReplaceOffsetsInMatchPositions(
+ orig_match_positions, offsets);
+ EXPECT_TRUE(std::equal(match_positions.begin(), match_positions.end(),
+ expected_match_positions.begin()));
+}
+
+TEST_F(TitledUrlMatchTest, ReplaceOffsetsRemovesItemsWithNposOffsets) {
+ MatchPositions orig_match_positions = {{1, 3}, {4, 5}, {10, 15}, {17, 20}};
+ std::vector<size_t> offsets = {0,
+ base::string16::npos,
+ base::string16::npos,
+ 4,
+ base::string16::npos,
+ base::string16::npos,
+ 17,
+ 20};
+ MatchPositions expected_match_positions = {{17, 20}};
+ auto match_positions = TitledUrlMatch::ReplaceOffsetsInMatchPositions(
+ orig_match_positions, offsets);
+ EXPECT_TRUE(std::equal(match_positions.begin(), match_positions.end(),
+ expected_match_positions.begin()));
+}
« no previous file with comments | « components/bookmarks/browser/titled_url_index.h ('k') | components/omnibox/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698