diff options
author | worktycho <work.tycho@gmail.com> | 2015-12-26 20:01:37 +0100 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-12-26 20:01:37 +0100 |
commit | b99b60720a3bb5c19032c330028b91f5faf7f4c2 (patch) | |
tree | ccbcdc4e3771a5ca4415438e8b631a6dfbdd0944 /Server/Plugins/Debuggers/Debuggers.lua | |
parent | Merge pull request #2789 from cuberite/apidump-analytics (diff) | |
parent | Added the cUrlParser class, exported to Lua API. (diff) | |
download | cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.tar cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.tar.gz cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.tar.bz2 cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.tar.lz cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.tar.xz cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.tar.zst cuberite-b99b60720a3bb5c19032c330028b91f5faf7f4c2.zip |
Diffstat (limited to 'Server/Plugins/Debuggers/Debuggers.lua')
-rw-r--r-- | Server/Plugins/Debuggers/Debuggers.lua | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Server/Plugins/Debuggers/Debuggers.lua b/Server/Plugins/Debuggers/Debuggers.lua index 0559a4ef8..7058a5025 100644 --- a/Server/Plugins/Debuggers/Debuggers.lua +++ b/Server/Plugins/Debuggers/Debuggers.lua @@ -2030,6 +2030,47 @@ end +function HandleConsoleTestUrlParser(a_Split, a_EntireCmd) + LOG("Testing cUrlParser...") + local UrlsToTest = + { + "invalid URL", + "https://github.com", + "ftp://anonymous:user@example.com@ftp.cuberite.org:9921/releases/2015/2015-12-25.zip", + "ftp://anonymous:user:name:with:colons@example.com@ftp.cuberite.org:9921", + "http://google.com/", + "http://google.com/?q=cuberite", + "http://google.com/search?q=cuberite", + "http://google.com/some/search?q=cuberite#results", + "http://google.com/?q=cuberite#results", + "http://google.com/#results", + "ftp://cuberite.org:9921/releases/2015/2015-12-25.zip", + "mailto:support@cuberite.org", + } + for _, u in ipairs(UrlsToTest) do + LOG("URL: " .. u) + local scheme, username, password, host, port, path, query, fragment = cUrlParser:Parse(u) + if not(scheme) then + LOG(" Error: " .. (username or "<nil>")) + else + LOG(" Scheme = " .. scheme) + LOG(" Username = " .. username) + LOG(" Password = " .. password) + LOG(" Host = " .. host) + LOG(" Port = " .. port) + LOG(" Path = " .. path) + LOG(" Query = " .. query) + LOG(" Fragment = " .. fragment) + end + end + LOG("cUrlParser test complete") + return true +end + + + + + function HandleConsoleBBox(a_Split) local bbox = cBoundingBox(0, 10, 0, 10, 0, 10) local v1 = Vector3d(1, 1, 1) |