Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
sky
2017/01/06 00:54:43
2017
mattreynolds
2017/01/06 01:13:44
Done.
| |
| 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 { | |
|
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.
| |
| 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 } | |
| OLD | NEW |