OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 #include "components/bookmarks/browser/titled_url_match.h" |
| 6 |
| 7 #include "base/macros.h" |
| 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 |
| 11 using bookmarks::TitledUrlMatch; |
| 12 using MatchPositions = bookmarks::TitledUrlMatch::MatchPositions; |
| 13 |
| 14 class TitledUrlMatchTest : public testing::Test { |
| 15 public: |
| 16 TitledUrlMatchTest() {} |
| 17 |
| 18 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(TitledUrlMatchTest); |
| 20 }; |
| 21 |
| 22 TEST_F(TitledUrlMatchTest, EmptyOffsetsForEmptyMatchPositions) { |
| 23 auto offsets = TitledUrlMatch::OffsetsFromMatchPositions(MatchPositions()); |
| 24 EXPECT_TRUE(offsets.empty()); |
| 25 } |
| 26 |
| 27 TEST_F(TitledUrlMatchTest, OffsetsFromMatchPositions) { |
| 28 MatchPositions match_positions = {{1, 3}, {4, 5}, {10, 15}}; |
| 29 std::vector<size_t> expected_offsets = {1, 3, 4, 5, 10, 15}; |
| 30 auto offsets = TitledUrlMatch::OffsetsFromMatchPositions(match_positions); |
| 31 EXPECT_TRUE( |
| 32 std::equal(offsets.begin(), offsets.end(), expected_offsets.begin())); |
| 33 } |
| 34 |
| 35 TEST_F(TitledUrlMatchTest, ReplaceOffsetsInEmptyMatchPositions) { |
| 36 auto match_positions = TitledUrlMatch::ReplaceOffsetsInMatchPositions( |
| 37 MatchPositions(), std::vector<size_t>()); |
| 38 EXPECT_TRUE(match_positions.empty()); |
| 39 } |
| 40 |
| 41 TEST_F(TitledUrlMatchTest, ReplaceOffsetsInMatchPositions) { |
| 42 MatchPositions orig_match_positions = {{1, 3}, {4, 5}, {10, 15}}; |
| 43 std::vector<size_t> offsets = {0, 2, 3, 4, 9, 14}; |
| 44 MatchPositions expected_match_positions = {{0, 2}, {3, 4}, {9, 14}}; |
| 45 auto match_positions = TitledUrlMatch::ReplaceOffsetsInMatchPositions( |
| 46 orig_match_positions, offsets); |
| 47 EXPECT_TRUE(std::equal(match_positions.begin(), match_positions.end(), |
| 48 expected_match_positions.begin())); |
| 49 } |
| 50 |
| 51 TEST_F(TitledUrlMatchTest, ReplaceOffsetsRemovesItemsWithNposOffsets) { |
| 52 MatchPositions orig_match_positions = {{1, 3}, {4, 5}, {10, 15}, {17, 20}}; |
| 53 std::vector<size_t> offsets = {0, |
| 54 base::string16::npos, |
| 55 base::string16::npos, |
| 56 4, |
| 57 base::string16::npos, |
| 58 base::string16::npos, |
| 59 17, |
| 60 20}; |
| 61 MatchPositions expected_match_positions = {{17, 20}}; |
| 62 auto match_positions = TitledUrlMatch::ReplaceOffsetsInMatchPositions( |
| 63 orig_match_positions, offsets); |
| 64 EXPECT_TRUE(std::equal(match_positions.begin(), match_positions.end(), |
| 65 expected_match_positions.begin())); |
| 66 } |
| 67 |
| 68 TEST_F(TitledUrlMatchTest, CorrectTitleAndMatchPositions) { |
| 69 MatchPositions match_positions = {{2, 6}, {10, 15}}; |
| 70 base::string16 title = base::ASCIIToUTF16(" Leading whitespace"); |
| 71 MatchPositions expected_match_positions = {{0, 4}, {8, 13}}; |
| 72 base::string16 expected_title = base::ASCIIToUTF16("Leading whitespace"); |
| 73 TitledUrlMatch::CorrectTitleAndMatchPositions(&title, &match_positions); |
| 74 EXPECT_EQ(expected_title, title); |
| 75 EXPECT_TRUE(std::equal(match_positions.begin(), match_positions.end(), |
| 76 expected_match_positions.begin())); |
| 77 } |
OLD | NEW |