Add initial mock.patch() implementation for tests
parent
e2d56b9b8f
commit
7b2f01d45b
@ -0,0 +1,52 @@
|
|||||||
|
local mock = mkmodule('test_util.mock')
|
||||||
|
|
||||||
|
|
||||||
|
--[[
|
||||||
|
Usage:
|
||||||
|
patch(table, key, value, callback)
|
||||||
|
patch({
|
||||||
|
[{table, key}] = value,
|
||||||
|
[{table2, key2}] = value2
|
||||||
|
}, callback)
|
||||||
|
]]
|
||||||
|
function mock.patch(...)
|
||||||
|
local args = {...}
|
||||||
|
if #args == 4 then
|
||||||
|
args = {{
|
||||||
|
[{args[1], args[2]}] = args[3]
|
||||||
|
}, args[4]}
|
||||||
|
end
|
||||||
|
if #args ~= 2 then
|
||||||
|
error('expected 2 or 4 arguments')
|
||||||
|
end
|
||||||
|
|
||||||
|
local callback = args[2]
|
||||||
|
local patches = {}
|
||||||
|
for k, v in pairs(args[1]) do
|
||||||
|
local p = {
|
||||||
|
table = k[1],
|
||||||
|
key = k[2],
|
||||||
|
new_value = v,
|
||||||
|
}
|
||||||
|
p.old_value = p.table[p.key]
|
||||||
|
-- no-op to ensure that the value can be restored by the finalizer below
|
||||||
|
p.table[p.key] = p.table[p.key]
|
||||||
|
table.insert(patches, p)
|
||||||
|
end
|
||||||
|
|
||||||
|
dfhack.with_finalize(
|
||||||
|
function()
|
||||||
|
for _, p in ipairs(patches) do
|
||||||
|
p.table[p.key] = p.old_value
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
function()
|
||||||
|
for _, p in ipairs(patches) do
|
||||||
|
p.table[p.key] = p.new_value
|
||||||
|
end
|
||||||
|
callback()
|
||||||
|
end
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
return mock
|
@ -0,0 +1,45 @@
|
|||||||
|
local mock = require('test_util.mock')
|
||||||
|
|
||||||
|
local test_table = {
|
||||||
|
func1 = function()
|
||||||
|
return 1
|
||||||
|
end,
|
||||||
|
func2 = function()
|
||||||
|
return 2
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
||||||
|
function test.patch_single()
|
||||||
|
expect.eq(test_table.func1(), 1)
|
||||||
|
mock.patch(test_table, 'func1', function() return 3 end, function()
|
||||||
|
expect.eq(test_table.func1(), 3)
|
||||||
|
end)
|
||||||
|
expect.eq(test_table.func1(), 1)
|
||||||
|
end
|
||||||
|
|
||||||
|
function test.patch_single_nested()
|
||||||
|
expect.eq(test_table.func1(), 1)
|
||||||
|
mock.patch(test_table, 'func1', function() return 3 end, function()
|
||||||
|
expect.eq(test_table.func1(), 3)
|
||||||
|
mock.patch(test_table, 'func1', function() return 5 end, function()
|
||||||
|
expect.eq(test_table.func1(), 5)
|
||||||
|
end)
|
||||||
|
expect.eq(test_table.func1(), 3)
|
||||||
|
end)
|
||||||
|
expect.eq(test_table.func1(), 1)
|
||||||
|
end
|
||||||
|
|
||||||
|
function test.patch_multiple()
|
||||||
|
expect.eq(test_table.func1(), 1)
|
||||||
|
expect.eq(test_table.func2(), 2)
|
||||||
|
mock.patch({
|
||||||
|
[{test_table, 'func1'}] = function() return 3 end,
|
||||||
|
[{test_table, 'func2'}] = function() return 4 end,
|
||||||
|
}, function()
|
||||||
|
expect.eq(test_table.func1(), 3)
|
||||||
|
expect.eq(test_table.func2(), 4)
|
||||||
|
end)
|
||||||
|
expect.eq(test_table.func1(), 1)
|
||||||
|
expect.eq(test_table.func2(), 2)
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue