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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
local lpeg=require "lpeg"
local uri_lib=require "lpeg_patterns.uri"
describe("URI", function()
local absolute_uri = uri_lib.absolute_uri * lpeg.P(-1)
local uri = uri_lib.uri * lpeg.P(-1)
local ref = uri_lib.uri_reference * lpeg.P(-1)
local path = uri_lib.path * lpeg.P(-1)
local segment = uri_lib.segment * lpeg.P(-1)
it("Should break down full URIs correctly", function()
assert.same({scheme="scheme", userinfo="userinfo", host="host", port=1234, path="/path", query="query", fragment="fragment"},
uri:match "scheme://userinfo@host:1234/path?query#fragment")
assert.same({scheme="scheme", userinfo="userinfo", host="host", port=1234, path="/path", query="query"},
uri:match "scheme://userinfo@host:1234/path?query")
assert.same({scheme="scheme", userinfo="userinfo", host="host", port=1234, path="/path"},
uri:match "scheme://userinfo@host:1234/path")
assert.same({scheme="scheme", host="host", port=1234, path="/path"},
uri:match "scheme://host:1234/path")
assert.same({scheme="scheme", host="host", path="/path"},
uri:match "scheme://host/path")
assert.same({scheme="scheme", path="/path"},
uri:match "scheme:///path")
assert.same({scheme="scheme"},
uri:match "scheme://")
end)
it("Normalises to lower case scheme", function()
assert.same({scheme="scheme"}, uri:match "Scheme://")
assert.same({scheme="scheme"}, uri:match "SCHEME://")
end)
it("shouldn't allow fragments when using absolute_uri", function()
assert.falsy(absolute_uri:match "scheme://userinfo@host:1234/path?query#fragment")
assert.same({scheme="scheme", userinfo="userinfo", host="host", port=1234, path="/path", query="query"},
absolute_uri:match "scheme://userinfo@host:1234/path?query")
end)
it("Should break down relative URIs correctly", function()
assert.same({scheme="scheme", userinfo="userinfo", host="host", port=1234, path="/path", query="query", fragment="fragment"},
ref:match "scheme://userinfo@host:1234/path?query#fragment")
assert.same({userinfo="userinfo", host="host", port=1234, path="/path", query="query", fragment="fragment"},
ref:match "//userinfo@host:1234/path?query#fragment")
assert.same({host="host", port=1234, path="/path", query="query", fragment="fragment"},
ref:match "//host:1234/path?query#fragment")
assert.same({host="host", path="/path", query="query", fragment="fragment"},
ref:match "//host/path?query#fragment")
assert.same({path="/path", query="query", fragment="fragment"},
ref:match "///path?query#fragment")
assert.same({path="/path", query="query", fragment="fragment"},
ref:match "/path?query#fragment")
assert.same({path="/path", fragment="fragment"},
ref:match "/path#fragment")
assert.same({path="/path"},
ref:match "/path")
assert.same({},
ref:match "")
assert.same({query="query"},
ref:match "?query")
assert.same({fragment="fragment"},
ref:match "#fragment")
end)
it("Should match file urls", function()
assert.same({scheme="file", path="/var/log/messages"}, uri:match "file:///var/log/messages")
assert.same({scheme="file", path="/C:/Windows/"}, uri:match "file:///C:/Windows/")
end)
it("Should decode unreserved percent characters in path segment", function()
assert.same("underscore_character", segment:match "underscore%5Fcharacter")
assert.same("null%00byte", segment:match "null%00byte")
end)
it("Should decode unreserved percent characters path", function()
assert.same("/underscore_character", path:match "/underscore%5Fcharacter")
assert.same("/null%00byte", path:match "/null%00byte")
end
) it("Should fail on incorrect percent characters", function()
assert.falsy(path:match "/bad%x0percent")
assert.falsy(path:match "/%s")
end)
it("Should not introduce ambiguiuty by decoding percent encoded entities", function()
assert.same({query="query%26with&ersand"}, ref:match "?query%26with&ersand")
end)
it("Should decode unreserved percent characters in query and fragment", function()
assert.same({query="query%20with_escapes"}, ref:match "?query%20with%5Fescapes")
assert.same({fragment="fragment%20with_escapes"}, ref:match "#fragment%20with%5Fescapes")
end)
it("Should match localhost", function()
assert.same({host="localhost"}, ref:match "//localhost")
assert.same({host="localhost"}, ref:match "//LOCALHOST")
assert.same({host="localhost"}, ref:match "//l%4FcAlH%6fSt")
assert.same({host="localhost", port=8000}, ref:match "//localhost:8000")
assert.same({scheme="http", host="localhost", port=8000}, uri:match "http://localhost:8000")
end)
it("Should work with IPv6", function()
assert.same({host="0:0:0:0:0:0:0:1"}, ref:match "//[::1]")
assert.same({host="0:0:0:0:0:0:0:1", port=80}, ref:match "//[::1]:80")
end)
it("IPvFuture", function()
assert.same({host="v4.2", port=80}, ref:match "//[v4.2]:80")
assert.same({host="v4.2", port=80}, ref:match "//[V4.2]:80")
end)
it("Should work with IPv6 zone local addresses", function()
assert.same({host="0:0:0:0:0:0:0:1%eth0"}, ref:match "//[::1%25eth0]")
end)
it("Relative URI does not match authority when scheme is missing", function()
assert.same({path="example.com/"}, ref:match "example.com/") -- should end up in path
assert.same({scheme="scheme", host="example.com", path="/"}, ref:match "scheme://example.com/")
end)
it("Should work with mailto URIs", function()
assert.same({scheme="mailto", path="user@example.com"},
uri:match "mailto:user@example.com")
assert.same({scheme="mailto", path="someone@example.com,someoneelse@example.com"},
uri:match "mailto:someone@example.com,someoneelse@example.com")
assert.same({scheme="mailto", path="user@example.com", query="subject=This%20is%20the%20subject&cc=someone_else@example.com&body=This%20is%20the%20body"},
uri:match "mailto:user@example.com?subject=This%20is%20the%20subject&cc=someone_else@example.com&body=This%20is%20the%20body")
-- Examples from RFC-6068
-- Section 6.1
assert.same({scheme="mailto", path="chris@example.com"},
uri:match "mailto:chris@example.com")
assert.same({scheme="mailto", path="infobot@example.com", query="subject=current-issue"},
uri:match "mailto:infobot@example.com?subject=current-issue")
assert.same({scheme="mailto", path="infobot@example.com", query="body=send%20current-issue"},
uri:match "mailto:infobot@example.com?body=send%20current-issue")
assert.same({scheme="mailto", path="infobot@example.com", query="body=send%20current-issue%0D%0Asend%20index"},
uri:match "mailto:infobot@example.com?body=send%20current-issue%0D%0Asend%20index")
assert.same({scheme="mailto", path="list@example.org", query="In-Reply-To=%3C3469A91.D10AF4C@example.com%3E"},
uri:match "mailto:list@example.org?In-Reply-To=%3C3469A91.D10AF4C@example.com%3E")
assert.same({scheme="mailto", path="majordomo@example.com", query="body=subscribe%20bamboo-l"},
uri:match "mailto:majordomo@example.com?body=subscribe%20bamboo-l")
assert.same({scheme="mailto", path="joe@example.com", query="cc=bob@example.com&body=hello"},
uri:match "mailto:joe@example.com?cc=bob@example.com&body=hello")
assert.same({scheme="mailto", path="gorby%25kremvax@example.com"},
uri:match "mailto:gorby%25kremvax@example.com")
assert.same({scheme="mailto", path="unlikely%3Faddress@example.com", query="blat=foop"},
uri:match "mailto:unlikely%3Faddress@example.com?blat=foop")
assert.same({scheme="mailto", path="Mike%26family@example.org"},
uri:match "mailto:Mike%26family@example.org")
-- Section 6.2
assert.same({scheme="mailto", path=[[%22not%40me%22@example.org]]},
uri:match "mailto:%22not%40me%22@example.org")
assert.same({scheme="mailto", path=[[%22oh%5C%5Cno%22@example.org]]},
uri:match "mailto:%22oh%5C%5Cno%22@example.org")
assert.same({scheme="mailto", path=[[%22%5C%5C%5C%22it's%5C%20ugly%5C%5C%5C%22%22@example.org]]},
uri:match "mailto:%22%5C%5C%5C%22it's%5C%20ugly%5C%5C%5C%22%22@example.org")
end)
it("Should work with xmpp URIs", function()
-- Examples from RFC-5122
assert.same({scheme="xmpp", path="node@example.com"},
uri:match "xmpp:node@example.com")
assert.same({scheme="xmpp", userinfo="guest", host="example.com"},
uri:match "xmpp://guest@example.com")
assert.same({scheme="xmpp", userinfo="guest", host="example.com", path="/support@example.com", query="message"},
uri:match "xmpp://guest@example.com/support@example.com?message")
assert.same({scheme="xmpp", path="support@example.com", query="message"},
uri:match "xmpp:support@example.com?message")
assert.same({scheme="xmpp", path="example-node@example.com"},
uri:match "xmpp:example-node@example.com")
assert.same({scheme="xmpp", path="example-node@example.com/some-resource"},
uri:match "xmpp:example-node@example.com/some-resource")
assert.same({scheme="xmpp", path="example.com"},
uri:match "xmpp:example.com")
assert.same({scheme="xmpp", path="example-node@example.com", query="message"},
uri:match "xmpp:example-node@example.com?message")
assert.same({scheme="xmpp", path="example-node@example.com", query="message;subject=Hello%20World"},
uri:match "xmpp:example-node@example.com?message;subject=Hello%20World")
assert.same({scheme="xmpp", path=[[nasty!%23$%25()*+,-.;=%3F%5B%5C%5D%5E_%60%7B%7C%7D~node@example.com]]},
uri:match "xmpp:nasty!%23$%25()*+,-.;=%3F%5B%5C%5D%5E_%60%7B%7C%7D~node@example.com")
assert.same({scheme="xmpp", path=[[node@example.com/repulsive%20!%23%22$%25&'()*+,-.%2F:;%3C=%3E%3F%40%5B%5C%5D%5E_%60%7B%7C%7D~resource]]},
uri:match [[xmpp:node@example.com/repulsive%20!%23%22$%25&'()*+,-.%2F:;%3C=%3E%3F%40%5B%5C%5D%5E_%60%7B%7C%7D~resource]])
assert.same({scheme="xmpp", path="ji%C5%99i@%C4%8Dechy.example/v%20Praze"},
uri:match "xmpp:ji%C5%99i@%C4%8Dechy.example/v%20Praze")
end)
end)
describe("Sane URI", function()
local sane_uri = uri_lib.sane_uri
it("Not match the empty string", function()
assert.falsy ( sane_uri:match "" )
end)
it("Not match misc words", function()
assert.falsy ( sane_uri:match "localhost" )
assert.falsy ( sane_uri:match "//localhost" )
assert.falsy ( sane_uri:match "the quick fox jumped over the lazy dog." )
end)
it("Not match numbers", function()
assert.falsy( sane_uri:match "123" )
assert.falsy( sane_uri:match "17.3" )
assert.falsy( sane_uri:match "17.3234" )
assert.falsy( sane_uri:match "17.3234" )
end)
it("Should match a host when no // present", function()
assert.same({host="example.com"}, sane_uri:match "example.com")
end)
it("Match a scheme without a //", function()
assert.same({scheme="scheme", host="example.com"}, sane_uri:match "scheme:example.com")
end)
it("Will match up to but not including a close parenthsis with empty path", function()
assert.same({scheme="scheme", host="example.com"}, sane_uri:match "scheme:example.com)")
end)
end)
|