You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lua-uri/test/_pristine.lua

37 lines
1.1 KiB

require "lunit"
module("test.pristine", lunit.testcase, package.seeall)
function test_no_global_clobbering ()
local globals = {}
for key in pairs(_G) do globals[key] = true end
-- Load all the modules for the different types of URIs, in case any one
-- of those treads on a global. I keep them around in a table to make
-- sure they're all loaded at the same time, just in case that does
-- anything interesting.
local schemes = {
"_login", "_relative", "_util", "data",
"file", "file.unix", "file.win32",
"ftp", "http", "https",
"pop", "rtsp", "rtspu", "telnet",
"urn", "urn.isbn", "urn.issn", "urn.oid"
}
local loaded = {}
local URI = require "uri"
for _, name in ipairs(schemes) do
loaded[name] = require("uri." .. name)
end
for key in pairs(_G) do
lunit.assert_not_nil(globals[key],
"global '" .. key .. "' created by lib")
end
for key in pairs(globals) do
lunit.assert_not_nil(_G[key],
"global '" .. key .. "' destroyed by lib")
end
end
-- vi:ts=4 sw=4 expandtab