mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
22f1422f51
commit
8178f7bd88
1 changed files with 4 additions and 1 deletions
|
@ -137,7 +137,10 @@ function dotest(unitname)
|
||||||
end
|
end
|
||||||
|
|
||||||
local oldmodule, old_M = _fakeG.module, _fakeG._M;
|
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);
|
setfenv(chunk, unit);
|
||||||
local success, err = pcall(chunk);
|
local success, err = pcall(chunk);
|
||||||
_fakeG.module, _fakeG._M = oldmodule, old_M;
|
_fakeG.module, _fakeG._M = oldmodule, old_M;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue