mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
tests: Update storagemanager tests for prosody.* namespace change
Part of an attempt to make these tests work again. Previously they would just explode in a million luarocks stack overflows
This commit is contained in:
parent
51daea2530
commit
9ee8b4e502
1 changed files with 6 additions and 8 deletions
|
@ -1,13 +1,11 @@
|
|||
local unpack = table.unpack;
|
||||
local server = require "net.server_select";
|
||||
package.loaded["net.server"] = server;
|
||||
|
||||
local st = require "util.stanza";
|
||||
local st = require "prosody.util.stanza";
|
||||
|
||||
local function mock_prosody()
|
||||
_G.prosody = {
|
||||
core_post_stanza = function () end;
|
||||
events = require "util.events".new();
|
||||
events = require "prosody.util.events".new();
|
||||
hosts = {};
|
||||
paths = {
|
||||
data = "./data";
|
||||
|
@ -47,10 +45,10 @@ describe("storagemanager", function ()
|
|||
insulate(tagged_name.." #storage backend", function ()
|
||||
mock_prosody();
|
||||
|
||||
local config = require "core.configmanager";
|
||||
local sm = require "core.storagemanager";
|
||||
local hm = require "core.hostmanager";
|
||||
local mm = require "core.modulemanager";
|
||||
local config = require "prosody.core.configmanager";
|
||||
local sm = require "prosody.core.storagemanager";
|
||||
local hm = require "prosody.core.hostmanager";
|
||||
local mm = require "prosody.core.modulemanager";
|
||||
|
||||
-- Simple check to ensure insulation is working correctly
|
||||
assert.is_nil(config.get(test_host, "storage"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue