lua-immutable/test.lua

166 lines
4.5 KiB
Lua
Raw Normal View History

2018-02-09 02:13:07 -08:00
local bright = string.char(27).."[1m"
2018-02-09 03:45:31 -08:00
local dim = string.char(27).."[2m"
local underscore = string.char(27).."[4m"
local red = string.char(27).."[31m"
local green = string.char(27).."[32m"
2018-02-09 02:13:07 -08:00
local reset = string.char(27).."[0m"
2018-02-09 03:45:31 -08:00
print(bright..underscore.."\nTesting with ".._VERSION..":"..reset)
2018-02-09 15:57:34 -08:00
repr = function(t)
local buff = tostring(t)
if type(t) == 'table' then
buff = "{"..buff.." "
for k, v in pairs(t) do
buff = buff..("%s = %s, "):format(k,v)
end
buff = buff.."}"
end
return buff
end
2018-02-09 03:45:31 -08:00
local num_errors = 0
local test_number = 0
local function test(description, fn)
test_number = test_number + 1
description = (bright.."% 3d. "..reset.."%s"):format(test_number, description)
io.write(description)
io.write(red)
local ok, err = pcall(fn)
if not ok then
2018-02-09 03:46:11 -08:00
io.write(reset..dim.."\r..................................")
2018-02-09 03:45:31 -08:00
io.write(reset.."["..bright..red.."FAILED"..reset.."]\r")
io.write("\r"..description.."\n"..reset)
print(reset..red..(err or "")..reset)
num_errors = num_errors + 1
else
2018-02-09 03:46:11 -08:00
io.write(reset..dim.."\r..................................")
2018-02-09 03:45:31 -08:00
io.write(reset.."["..green.."PASSED"..reset.."]\r")
io.write(description.."\n")
end
2018-02-09 02:13:07 -08:00
end
2018-02-09 03:45:31 -08:00
test("Loading module", function()
immutable = require"immutable"
end)
test("Creating class", function()
Vec = immutable({"x","y"}, {
len2=function(self)
return self.x*self.x + self.y*self.y
end,
__add=function(self, other)
local cls = getmetatable(self)
return cls(self.x+other.x, self.y+other.y)
end,
__tostring=function(self)
return "Vec("..tostring(self.x)..", "..tostring(self.y)..")"
end,
})
end)
test("Instantiating class", function()
v = assert(Vec(1,3))
end)
2018-02-09 02:13:07 -08:00
test("Testing # operator", function()
assert(#v == 2)
end)
2018-02-09 03:45:31 -08:00
test("Testing method", function()
assert(v:len2() == 10)
end)
2018-02-09 02:13:07 -08:00
2018-02-09 03:45:31 -08:00
test("Testing tostring", function()
assert(tostring(v) == "Vec(1, 3)")
end)
2018-02-09 18:21:49 -08:00
test("Testing from_table", function()
2018-02-09 18:24:14 -08:00
assert(Vec:from_table(setmetatable({y=3}, {__index={x=1}})) == v)
assert(Vec:from_table({x=1}) == Vec(1, nil))
2018-02-09 18:21:49 -08:00
end)
2018-02-09 03:45:31 -08:00
test("Testing singletons", function()
also_v = Vec(1,3)
assert(v == also_v)
assert(tostring(v) == tostring(also_v))
-- Hash collision in the current implementation
not_v = Vec(true,3)
assert(v ~= not_v)
assert(tostring(not_v) == "Vec(true, 3)")
also_not_v = Vec(true,3)
assert(not_v == also_not_v)
end)
test("Testing __add metamethod", function()
assert(v + Vec(5,6) == Vec(6,9))
end)
2018-02-09 02:13:07 -08:00
collectgarbage()
2018-02-09 03:45:31 -08:00
test("Testing string members", function()
Vec("hello", "world")
end)
test("Testing table members", function()
Vec({}, {})
end)
test("Testing function members", function()
Vec(function() end, function() end)
end)
test("Testing immutable members", function()
Vec(v, v)
end)
2018-02-09 02:13:07 -08:00
collectgarbage()
collectgarbage()
test("Testing garbage collection", function()
local collected = false
local GCSnooper = immutable({}, {
__gc=function(self)
collected = true
end,
})
local g = GCSnooper()
collectgarbage()
collectgarbage()
assert(not collected)
g = nil
collectgarbage()
collectgarbage()
assert(collected)
end)
2018-02-09 19:05:29 -08:00
test("Testing stupid metamethods", function()
local Five = immutable({"x"}, {__index=function() return 5 end, derp = 99})
local f = Five(99)
assert(f.x == 5 and f.asdf == 5 and f.derp == 5)
end)
2018-02-09 03:45:31 -08:00
test("Testing similar class", function()
local FooVec = immutable({"x","y"}, {
len2=function(self)
return self.x*self.x + self.y*self.y
end,
__add=function(self, other)
local cls = getmetatable(self)
return cls(self.x+other.x, self.y+other.y)
end,
__tostring=function(self)
return "Vec("..tostring(self.x)..", "..tostring(self.y)..")"
end,
})
assert(FooVec(1,1) ~= Vec(1,1))
end)
2018-02-09 02:13:07 -08:00
2018-02-10 16:48:58 -08:00
test("Testing spoofing", function()
local t = {99,100}
setmetatable(t, Vec)
assert(not pcall(function() return t.x end))
assert(not pcall(function() return Vec(88) end))
assert(not pcall(function() return Vec.__tostring(t) end))
end)
2018-02-09 03:45:31 -08:00
if num_errors == 0 then
print(green.."All tests passed!"..reset)
else
print(bright..red.."*** "..tostring(num_errors).." test"..(num_errors > 1 and "s" or "").." failed! ***"..reset)
io.write(reset)
os.exit(false, true)
end