mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
tests/test.lua: Fix fake module() function to prevent _M from being _G (test.lua's environment), which caused modules to break the sandbox when they set _M.*
This commit is contained in:
parent
f6cd82f1b5
commit
0c0039271c
1 changed files with 4 additions and 1 deletions
|
@ -137,7 +137,10 @@ function dotest(unitname)
|
|||
end
|
||||
|
||||
local oldmodule, old_M = _fakeG.module, _fakeG._M;
|
||||
_fakeG.module = function () _M = _G end
|
||||
_fakeG.module = function ()
|
||||
setmetatable(unit, nil);
|
||||
unit._M = unit;
|
||||
end
|
||||
setfenv(chunk, unit);
|
||||
local success, err = pcall(chunk);
|
||||
_fakeG.module, _fakeG._M = oldmodule, old_M;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue