| Index: content/browser/service_worker/service_worker_utils_unittest.cc
|
| diff --git a/content/browser/service_worker/service_worker_utils_unittest.cc b/content/browser/service_worker/service_worker_utils_unittest.cc
|
| index d6e0ba1a02c12f6f136810d468b4862836919038..67a74801d6cfb4318f5afb5c868424acabf3391c 100644
|
| --- a/content/browser/service_worker/service_worker_utils_unittest.cc
|
| +++ b/content/browser/service_worker/service_worker_utils_unittest.cc
|
| @@ -69,4 +69,35 @@ TEST(ServiceWorkerUtilsTest, ScopeMatches) {
|
| GURL("http://www.example.com/\\*"), GURL("http://www.example.com/\\x")));
|
| }
|
|
|
| +TEST(ServiceWorkerUtilsTest, FindLongestScopeMatch_Basic) {
|
| + LongestScopeMatcher matcher(GURL("http://www.example.com/xxx"));
|
| +
|
| + // "/xx*" should be matched longest.
|
| + ASSERT_TRUE(matcher.MatchLongest(GURL("http://www.example.com/x*")));
|
| + ASSERT_FALSE(matcher.MatchLongest(GURL("http://www.example.com/*")));
|
| + ASSERT_TRUE(matcher.MatchLongest(GURL("http://www.example.com/xx*")));
|
| +
|
| + // "xxx*" should be matched longer than "/xx*".
|
| + ASSERT_TRUE(matcher.MatchLongest(GURL("http://www.example.com/xxx*")));
|
| +
|
| + ASSERT_FALSE(matcher.MatchLongest(GURL("http://www.example.com/xxxx*")));
|
| +}
|
| +
|
| +TEST(ServiceWorkerUtilsTest, FindLongestScopeMatch_SameLength) {
|
| + LongestScopeMatcher matcher1(GURL("http://www.example.com/xxx"));
|
| +
|
| + // "/xxx" has the same length with "/xx*", so they are compared as strings
|
| + // and "/xxx" should win.
|
| + // TODO(nhiroki): This isn't in the spec (see: service_worker_utils.cc)
|
| + ASSERT_TRUE(matcher1.MatchLongest(GURL("http://www.example.com/xxx")));
|
| + ASSERT_FALSE(matcher1.MatchLongest(GURL("http://www.example.com/xx*")));
|
| +
|
| + LongestScopeMatcher matcher2(GURL("http://www.example.com/x(1)"));
|
| +
|
| + // "/xx*" should be prioritized over "/x(1)".
|
| + // TODO(nhiroki): This isn't in the spec (see: service_worker_utils.cc)
|
| + ASSERT_TRUE(matcher2.MatchLongest(GURL("http://www.example.com/x(1)")));
|
| + ASSERT_TRUE(matcher2.MatchLongest(GURL("http://www.example.com/x(1*")));
|
| +}
|
| +
|
| } // namespace content
|
|
|