1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/extensions/url_pattern.h"
#include "testing/gtest/include/gtest/gtest.h"
// See url_pattern.h for examples of valid and invalid patterns.
TEST(URLPatternTest, ParseInvalid) {
const char* kInvalidPatterns[] = {
"http", // no scheme
"http://", // no path separator
"http://foo", // no path separator
"http://*foo/bar", // not allowed as substring of host component
"http://foo.*.bar/baz", // must be first component
"http:/bar", // scheme separator not found
"foo://*", // invalid scheme
"chrome://*/*", // we don't support internal chrome URLs
};
for (size_t i = 0; i < arraysize(kInvalidPatterns); ++i) {
URLPattern pattern;
EXPECT_FALSE(pattern.Parse(kInvalidPatterns[i]));
}
};
// all pages for a given scheme
TEST(URLPatternTest, Match1) {
URLPattern pattern;
EXPECT_TRUE(pattern.Parse("http://*/*"));
EXPECT_EQ("http", pattern.scheme());
EXPECT_EQ("", pattern.host());
EXPECT_TRUE(pattern.match_subdomains());
EXPECT_EQ("/*", pattern.path());
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://google.com")));
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://yahoo.com")));
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://google.com/foo")));
EXPECT_FALSE(pattern.MatchesUrl(GURL("https://google.com")));
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://74.125.127.100/search")));
}
// all domains
TEST(URLPatternTest, Match2) {
URLPattern pattern;
EXPECT_TRUE(pattern.Parse("https://*/foo*"));
EXPECT_EQ("https", pattern.scheme());
EXPECT_EQ("", pattern.host());
EXPECT_TRUE(pattern.match_subdomains());
EXPECT_EQ("/foo*", pattern.path());
EXPECT_TRUE(pattern.MatchesUrl(GURL("https://www.google.com/foo")));
EXPECT_TRUE(pattern.MatchesUrl(GURL("https://www.google.com/foobar")));
EXPECT_FALSE(pattern.MatchesUrl(GURL("http://www.google.com/foo")));
EXPECT_FALSE(pattern.MatchesUrl(GURL("https://www.google.com/")));
}
// subdomains
TEST(URLPatternTest, Match3) {
URLPattern pattern;
EXPECT_TRUE(pattern.Parse("http://*.google.com/foo*bar"));
EXPECT_EQ("http", pattern.scheme());
EXPECT_EQ("google.com", pattern.host());
EXPECT_TRUE(pattern.match_subdomains());
EXPECT_EQ("/foo*bar", pattern.path());
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://google.com/foobar")));
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://www.google.com/foo?bar")));
EXPECT_TRUE(pattern.MatchesUrl(
GURL("http://monkey.images.google.com/foooobar")));
EXPECT_FALSE(pattern.MatchesUrl(GURL("http://yahoo.com/foobar")));
}
// glob escaping
TEST(URLPatternTest, Match5) {
URLPattern pattern;
EXPECT_TRUE(pattern.Parse("file:///foo?bar\\*baz"));
EXPECT_EQ("file", pattern.scheme());
EXPECT_EQ("", pattern.host());
EXPECT_FALSE(pattern.match_subdomains());
EXPECT_EQ("/foo?bar\\*baz", pattern.path());
EXPECT_TRUE(pattern.MatchesUrl(GURL("file:///foo?bar\\hellobaz")));
EXPECT_FALSE(pattern.MatchesUrl(GURL("file:///fooXbar\\hellobaz")));
}
// ip addresses
TEST(URLPatternTest, Match6) {
URLPattern pattern;
EXPECT_TRUE(pattern.Parse("http://127.0.0.1/*"));
EXPECT_EQ("http", pattern.scheme());
EXPECT_EQ("127.0.0.1", pattern.host());
EXPECT_FALSE(pattern.match_subdomains());
EXPECT_EQ("/*", pattern.path());
EXPECT_TRUE(pattern.MatchesUrl(GURL("http://127.0.0.1")));
}
// subdomain matching with ip addresses
TEST(URLPatternTest, Match7) {
URLPattern pattern;
EXPECT_TRUE(pattern.Parse("http://*.0.0.1/*")); // allowed, but useless
EXPECT_EQ("http", pattern.scheme());
EXPECT_EQ("0.0.1", pattern.host());
EXPECT_TRUE(pattern.match_subdomains());
EXPECT_EQ("/*", pattern.path());
// Subdomain matching is never done if the argument has an IP address host.
EXPECT_FALSE(pattern.MatchesUrl(GURL("http://127.0.0.1")));
};
// unicode
TEST(URLPatternTest, Match8) {
URLPattern pattern;
// The below is the ASCII encoding of the following URL:
// http://*.\xe1\x80\xbf/a\xc2\x81\xe1*
EXPECT_TRUE(pattern.Parse("http://*.xn--gkd/a%C2%81%E1*"));
EXPECT_EQ("http", pattern.scheme());
EXPECT_EQ("xn--gkd", pattern.host());
EXPECT_TRUE(pattern.match_subdomains());
EXPECT_EQ("/a%C2%81%E1*", pattern.path());
EXPECT_TRUE(pattern.MatchesUrl(
GURL("http://abc.\xe1\x80\xbf/a\xc2\x81\xe1xyz")));
EXPECT_TRUE(pattern.MatchesUrl(
GURL("http://\xe1\x80\xbf/a\xc2\x81\xe1\xe1")));
};
|