@@ -1226,6 +1226,25 @@ TEST(RefTest, ExplainsResult) {
1226
1226
1227
1227
// Tests string comparison matchers.
1228
1228
1229
+ template <typename T = std::string>
1230
+ std::string FromStringLike (internal::StringLike<T> str) {
1231
+ return std::string (str);
1232
+ }
1233
+
1234
+ TEST (StringLike, TestConversions) {
1235
+ EXPECT_EQ (" foo" , FromStringLike (" foo" ));
1236
+ EXPECT_EQ (" foo" , FromStringLike (std::string (" foo" )));
1237
+ #if GTEST_INTERNAL_HAS_STRING_VIEW
1238
+ EXPECT_EQ (" foo" , FromStringLike (internal::StringView (" foo" )));
1239
+ #endif // GTEST_INTERNAL_HAS_STRING_VIEW
1240
+
1241
+ // Non deducible types.
1242
+ EXPECT_EQ (" " , FromStringLike ({}));
1243
+ EXPECT_EQ (" foo" , FromStringLike ({' f' , ' o' , ' o' }));
1244
+ const char buf[] = " foo" ;
1245
+ EXPECT_EQ (" foo" , FromStringLike ({buf, buf + 3 }));
1246
+ }
1247
+
1229
1248
TEST (StrEqTest, MatchesEqualString) {
1230
1249
Matcher<const char *> m = StrEq (std::string (" Hello" ));
1231
1250
EXPECT_TRUE (m.Matches (" Hello" ));
@@ -1237,7 +1256,8 @@ TEST(StrEqTest, MatchesEqualString) {
1237
1256
EXPECT_FALSE (m2.Matches (" Hi" ));
1238
1257
1239
1258
#if GTEST_INTERNAL_HAS_STRING_VIEW
1240
- Matcher<const internal::StringView&> m3 = StrEq (" Hello" );
1259
+ Matcher<const internal::StringView&> m3 =
1260
+ StrEq (internal::StringView (" Hello" ));
1241
1261
EXPECT_TRUE (m3.Matches (internal::StringView (" Hello" )));
1242
1262
EXPECT_FALSE (m3.Matches (internal::StringView (" hello" )));
1243
1263
EXPECT_FALSE (m3.Matches (internal::StringView ()));
@@ -1274,7 +1294,7 @@ TEST(StrNeTest, MatchesUnequalString) {
1274
1294
EXPECT_FALSE (m2.Matches (" Hello" ));
1275
1295
1276
1296
#if GTEST_INTERNAL_HAS_STRING_VIEW
1277
- Matcher<const internal::StringView> m3 = StrNe (" Hello" );
1297
+ Matcher<const internal::StringView> m3 = StrNe (internal::StringView ( " Hello" ) );
1278
1298
EXPECT_TRUE (m3.Matches (internal::StringView (" " )));
1279
1299
EXPECT_TRUE (m3.Matches (internal::StringView ()));
1280
1300
EXPECT_FALSE (m3.Matches (internal::StringView (" Hello" )));
@@ -1298,7 +1318,8 @@ TEST(StrCaseEqTest, MatchesEqualStringIgnoringCase) {
1298
1318
EXPECT_FALSE (m2.Matches (" Hi" ));
1299
1319
1300
1320
#if GTEST_INTERNAL_HAS_STRING_VIEW
1301
- Matcher<const internal::StringView&> m3 = StrCaseEq (std::string (" Hello" ));
1321
+ Matcher<const internal::StringView&> m3 =
1322
+ StrCaseEq (internal::StringView (" Hello" ));
1302
1323
EXPECT_TRUE (m3.Matches (internal::StringView (" Hello" )));
1303
1324
EXPECT_TRUE (m3.Matches (internal::StringView (" hello" )));
1304
1325
EXPECT_FALSE (m3.Matches (internal::StringView (" Hi" )));
@@ -1348,7 +1369,8 @@ TEST(StrCaseNeTest, MatchesUnequalStringIgnoringCase) {
1348
1369
EXPECT_FALSE (m2.Matches (" Hello" ));
1349
1370
1350
1371
#if GTEST_INTERNAL_HAS_STRING_VIEW
1351
- Matcher<const internal::StringView> m3 = StrCaseNe (" Hello" );
1372
+ Matcher<const internal::StringView> m3 =
1373
+ StrCaseNe (internal::StringView (" Hello" ));
1352
1374
EXPECT_TRUE (m3.Matches (internal::StringView (" Hi" )));
1353
1375
EXPECT_TRUE (m3.Matches (internal::StringView ()));
1354
1376
EXPECT_FALSE (m3.Matches (internal::StringView (" Hello" )));
@@ -1397,7 +1419,8 @@ TEST(HasSubstrTest, WorksForCStrings) {
1397
1419
#if GTEST_INTERNAL_HAS_STRING_VIEW
1398
1420
// Tests that HasSubstr() works for matching StringView-typed values.
1399
1421
TEST (HasSubstrTest, WorksForStringViewClasses) {
1400
- const Matcher<internal::StringView> m1 = HasSubstr (" foo" );
1422
+ const Matcher<internal::StringView> m1 =
1423
+ HasSubstr (internal::StringView (" foo" ));
1401
1424
EXPECT_TRUE (m1.Matches (internal::StringView (" I love food." )));
1402
1425
EXPECT_FALSE (m1.Matches (internal::StringView (" tofo" )));
1403
1426
EXPECT_FALSE (m1.Matches (internal::StringView ()));
@@ -1650,7 +1673,8 @@ TEST(StartsWithTest, MatchesStringWithGivenPrefix) {
1650
1673
EXPECT_FALSE (m2.Matches (" Hi" ));
1651
1674
1652
1675
#if GTEST_INTERNAL_HAS_STRING_VIEW
1653
- const Matcher<internal::StringView> m_empty = StartsWith (" " );
1676
+ const Matcher<internal::StringView> m_empty =
1677
+ StartsWith (internal::StringView (" " ));
1654
1678
EXPECT_TRUE (m_empty.Matches (internal::StringView ()));
1655
1679
EXPECT_TRUE (m_empty.Matches (internal::StringView (" " )));
1656
1680
EXPECT_TRUE (m_empty.Matches (internal::StringView (" not empty" )));
@@ -1678,7 +1702,8 @@ TEST(EndsWithTest, MatchesStringWithGivenSuffix) {
1678
1702
EXPECT_FALSE (m2.Matches (" Hi " ));
1679
1703
1680
1704
#if GTEST_INTERNAL_HAS_STRING_VIEW
1681
- const Matcher<const internal::StringView&> m4 = EndsWith (" " );
1705
+ const Matcher<const internal::StringView&> m4 =
1706
+ EndsWith (internal::StringView (" " ));
1682
1707
EXPECT_TRUE (m4.Matches (" Hi" ));
1683
1708
EXPECT_TRUE (m4.Matches (" " ));
1684
1709
EXPECT_TRUE (m4.Matches (internal::StringView ()));
@@ -1710,7 +1735,8 @@ TEST(MatchesRegexTest, MatchesStringMatchingGivenRegex) {
1710
1735
EXPECT_TRUE (m3.Matches (internal::StringView (" abcz" )));
1711
1736
EXPECT_FALSE (m3.Matches (internal::StringView (" 1az" )));
1712
1737
EXPECT_FALSE (m3.Matches (internal::StringView ()));
1713
- const Matcher<const internal::StringView&> m4 = MatchesRegex (" " );
1738
+ const Matcher<const internal::StringView&> m4 =
1739
+ MatchesRegex (internal::StringView (" " ));
1714
1740
EXPECT_TRUE (m4.Matches (internal::StringView (" " )));
1715
1741
EXPECT_TRUE (m4.Matches (internal::StringView ()));
1716
1742
#endif // GTEST_INTERNAL_HAS_STRING_VIEW
@@ -1749,7 +1775,8 @@ TEST(ContainsRegexTest, MatchesStringContainingGivenRegex) {
1749
1775
EXPECT_TRUE (m3.Matches (internal::StringView (" az1" )));
1750
1776
EXPECT_FALSE (m3.Matches (internal::StringView (" 1a" )));
1751
1777
EXPECT_FALSE (m3.Matches (internal::StringView ()));
1752
- const Matcher<const internal::StringView&> m4 = ContainsRegex (" " );
1778
+ const Matcher<const internal::StringView&> m4 =
1779
+ ContainsRegex (internal::StringView (" " ));
1753
1780
EXPECT_TRUE (m4.Matches (internal::StringView (" " )));
1754
1781
EXPECT_TRUE (m4.Matches (internal::StringView ()));
1755
1782
#endif // GTEST_INTERNAL_HAS_STRING_VIEW
0 commit comments