Automated merge with http://luaetta.ath.cx:1234/
authorMatthew Wild <mwild1@gmail.com>
Tue, 03 Mar 2009 17:18:43 +0000
changeset 863 fee8a700e92e
parent 862 b3b80ccddb0c (current diff)
parent 858 dddc63818c3d (diff)
child 864 416c812acde5
Automated merge with http://luaetta.ath.cx:1234/
--- a/core/configmanager.lua	Tue Mar 03 17:48:04 2009 +0100
+++ b/core/configmanager.lua	Tue Mar 03 17:18:43 2009 +0000
@@ -9,8 +9,8 @@
 
 
 local _G = _G;
-local 	setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile = 
-		setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile;
+local 	setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile, type = 
+		setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile, type;
 
 module "configmanager"
 
@@ -117,10 +117,12 @@
 		
 		function env.Component(name)
 			return function (module)
-					set(name, "core", "component_module", module);
-					-- Don't load the global modules by default
-					set(name, "core", "modules_enable", false);
-					rawset(env, "__currenthost", name);
+					if type(module) == "string" then
+						set(name, "core", "component_module", module);
+						-- Don't load the global modules by default
+						set(name, "core", "modules_enable", false);
+						rawset(env, "__currenthost", name);
+					end
 				end
 		end
 		env.component = env.Component;
--- a/tests/test_core_stanza_router.lua	Tue Mar 03 17:48:04 2009 +0100
+++ b/tests/test_core_stanza_router.lua	Tue Mar 03 17:18:43 2009 +0000
@@ -186,5 +186,41 @@
 	runtest(test_iq_to_remote_server, "iq to a remote server's JID are routed");
 	runtest(test_iq_to_local_bare, "iq from a local user to a local user's bare JID are handled");
 	runtest(test_iq_error_to_local_user, "iq type=error to a local user's JID are routed");
+end
 
+function core_route_stanza(core_route_stanza)
+	local s2sout_session = { to_host = "remotehost", from_host = "localhost", type = "s2sout" }
+	local s2sin_session = { from_host = "remotehost", to_host = "localhost", type = "s2sin", hosts = { ["remotehost"] = { authed = true } } }
+	local local_host_session = { host = "localhost", type = "local", s2sout = { ["remotehost"] = s2sout_session }, sessions = {} }
+	local local_user_session = { username = "user", host = "localhost", resource = "resource", full_jid = "user@localhost/resource", type = "c2s" }
+	local hosts = {
+			["localhost"] = local_host_session;
+			}
+
+	local function test_iq_result_to_offline_user()
+		local env = testlib_new_env();
+		local msg = stanza.stanza("iq", { to = "user@localhost/foo", from = "user@localhost", type = "result" }):tag("ping", { xmlns = "urn:xmpp:ping:0" });
+		local msg2 = stanza.stanza("iq", { to = "user@localhost/foo", from = "user@localhost", type = "error" }):tag("ping", { xmlns = "urn:xmpp:ping:0" });
+		--package.loaded["core.usermanager"] = { user_exists = function (user, host) print("RAR!") return true or user == "user" and host == "localhost" and true; end };
+		local target_handled, target_replied;
+		
+		function env.core_handle_stanza(p_origin, p_stanza)
+			target_handled = true;
+		end
+		
+		function local_user_session.send(data)
+			--print("Replying with: ", tostring(data));
+			--print(debug.traceback())
+			target_replied = true;
+		end
+
+		env.hosts = hosts;
+		setfenv(core_route_stanza, env);
+		assert_equal(core_route_stanza(local_user_session, msg), nil, "core_route_stanza returned incorrect value");
+		assert_equal(target_handled, nil, "stanza was handled and not dropped");
+		assert_equal(target_replied, nil, "stanza was replied to and not dropped");
+		package.loaded["core.usermanager"] = nil;
+	end
+
+	runtest(test_iq_result_to_offline_user, "iq type=result|error to an offline user are not replied to");
 end