mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-15 11:59:42 +00:00
c84d699e9b
The existing unit tests work, but the setup is really not amenable to the addition of additional tests in a modular fashion. This splits things out so there is a framework for tests in Lua, and all a module has to do on the Lua side is supply a list of functions to call and results to expect. And then on the php side, only one array entry and two short functions need to be added to LuaSandboxEngineTest to run the tests. Change-Id: Ib241b246aa0c7223c33887b38a5858582d7d31b0
29 lines
591 B
Lua
29 lines
591 B
Lua
local testframework = require( 'Module:TestFramework' )
|
|
|
|
local function setfenv1()
|
|
local ok, err = pcall( function()
|
|
setfenv( 2, {} )
|
|
end )
|
|
if not ok then
|
|
err = string.gsub( err, '^%S+:%d+: ', '' )
|
|
error( err )
|
|
end
|
|
end
|
|
|
|
local function getfenv1()
|
|
local env
|
|
pcall( function()
|
|
env = getfenv( 2 )
|
|
end )
|
|
return env
|
|
end
|
|
|
|
return testframework.getTestProvider( {
|
|
{ name = 'setfenv on a C function', func = setfenv1,
|
|
expect = "'setfenv' cannot set the requested environment, it is protected",
|
|
},
|
|
{ name = 'getfenv on a C function', func = getfenv1,
|
|
expect = { nil },
|
|
},
|
|
} )
|