我正在尝试针对单个模块功能编写单元测试。这个模块与其他一些模块合作,所以我想模拟这些模块来隔离我的测试系统。这是一些简化的伪代码:
local moduleFoo={}
local moduleBaz= require("moduleBaz")
moduleFoo.doSomething = function (arg)
if moduleBaz.bar.neatMethod(arg) then
--does something interesting
end
end
return moduleFoo
这是moduleBaz的代码
local moduleBaz={}
moduleBaz.bar= {}
moduleBaz.bar.neatMethod=function(arg)
--does something neat
end
return moduleBaz
我正在尝试使用package.preload函数在我的测试运行之前注入一个mockBaz的模拟实例,但它似乎不起作用(即在测试中使用了moduleBaz的真实实例,而不是我的模拟)
这是一些psueudo测试代码:
package.loaded.moduleBaz= nil
local moduleBaz = {}
moduleBaz.bar = {}
moduleBaz.bar.neatMethod= function(guid) return true end
package.preload['moduleBaz'] = function ()
return moduleBaz
end
local foo= require("moduleFoo")
foo.doSomething('asdasdasda')--real moduleBaz is called, not my mock!
任何想法我做错了什么?我对Lua很陌生,对语言中的范围处理方式一点也不太满意!
答案 0 :(得分:7)
您似乎缺少moduleBaz代码中的return语句
return moduleBaz
为什么不使用package.loaded
,因为它为您提供了更简单的界面? package.loaded.moduleBaz
只需要包含您想要从moduleBaz
代码返回的内容。这样的事情应该起作用或给你一个想法:
package.loaded.moduleBaz = {
bar = {
neatmethod = function(arg)
-- your mock code here
end,
}
}
然后require('moduleBaz')
只会返回您刚刚创建的对象。
我无法重现您的设置问题。我使用的文件如下;注意我添加了return moduleBaz
,如上所述,但这是我做的唯一更改:
档案moduleBaz.lua
:
local moduleBaz={}
moduleBaz.bar= {}
moduleBaz.bar.neatMethod=function(arg)
print "baz"
return true
end
return moduleBaz
档案moduleFoo.lua
:
local moduleFoo={}
local moduleBaz= require("moduleBaz")
moduleFoo.doSomething = function (arg)
if moduleBaz.bar.neatMethod(arg) then
print "foo"
end
end
return moduleFoo
档案testFoo.lua
package.loaded.moduleBaz= nil
local moduleBaz = {}
moduleBaz.bar = {}
moduleBaz.bar.neatMethod= function(guid) print "mock" return true end
package.preload['moduleBaz'] = function ()
return moduleBaz
end
local foo= require("moduleFoo")
foo.doSomething('asdasdasda')--real moduleBaz is called, not my mock!
当我运行时,我按预期打印mock\nfoo\n
。