Beispiel #1
0
        public void MatchWithPath()
        {
            var up = new UrlPattern(null, new Regex(@"^/path/file\.txt$"), null);

            Assert.IsTrue(up.IsMatch(new Uri("http://localhost/path/file.txt")));
            Assert.IsTrue(up.IsMatch(new Uri("http://localhost/path/file.txt?query=1")));

            Assert.IsFalse(up.IsMatch(new Uri("http://host/xyz/path/file.txt")));
            Assert.IsFalse(up.IsMatch(new Uri("http://host/path/file.txt/abc")));
            Assert.IsFalse(up.IsMatch(new Uri("http://host/path/file.txt/")));
        }
Beispiel #2
0
        public void MatchWithHost()
        {
            var up = new UrlPattern(new Regex("^host$"), null, null);

            Assert.IsTrue(up.IsMatch(new Uri("http://host")));
            Assert.IsTrue(up.IsMatch(new Uri("http://host/")));
            Assert.IsTrue(up.IsMatch(new Uri("http://host:123")));
            Assert.IsTrue(up.IsMatch(new Uri("http://host/path")));
            Assert.IsTrue(up.IsMatch(new Uri("http://host/?query=1")));

            Assert.IsFalse(up.IsMatch(new Uri("http://unknown")));
            Assert.IsFalse(up.IsMatch(new Uri("http://host1")));
            Assert.IsFalse(up.IsMatch(new Uri("http://nohost")));
            Assert.IsFalse(up.IsMatch(new Uri("http://unknown/")));
            Assert.IsFalse(up.IsMatch(new Uri("http://unknown/path")));
        }
Beispiel #3
0
        public void MatchWithQuery()
        {
            var up1 = new UrlPattern(null, null, new Dictionary<string, Regex>
            {
                 {"abc", null }
            });

            Assert.IsTrue(up1.IsMatch(new Uri("http://host/path?abc")));
            Assert.IsTrue(up1.IsMatch(new Uri("http://host/path?abc=")));
            Assert.IsTrue(up1.IsMatch(new Uri("http://host/path?abc=456")));
            Assert.IsTrue(up1.IsMatch(new Uri("http://host/path?xyz=123&abc")));
            Assert.IsTrue(up1.IsMatch(new Uri("http://host/path?xyz=123&abc=")));
            Assert.IsTrue(up1.IsMatch(new Uri("http://host/path?xyz=123&abc=456")));

            Assert.IsFalse(up1.IsMatch(new Uri("http://host/path")));
            Assert.IsFalse(up1.IsMatch(new Uri("http://host/path?abcd")));
            Assert.IsFalse(up1.IsMatch(new Uri("http://host/path?xyz=123")));
            Assert.IsFalse(up1.IsMatch(new Uri("http://host/path?xyz=123&abcd")));
        }
Beispiel #4
0
        public void MatchWithoutPatterns()
        {
            var up = new UrlPattern(null, null, null);

            Assert.IsTrue(up.IsMatch(new Uri("http://host/path?query=1")));
        }