aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-21 05:02:53 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-21 05:02:53 +0000
commit48e7f5ea649e858d59afdf5331cd6f30364abe80 (patch)
tree6161fb672b507c10704f66975b484609aeab09d6 /tests
parentc36a8743fed7cc3b75b3d71410f60f8ced4e65af (diff)
downloadprosody-48e7f5ea649e858d59afdf5331cd6f30364abe80.tar.gz
prosody-48e7f5ea649e858d59afdf5331cd6f30364abe80.zip
Improve jid.split() and jid.bare() to pass new test cases with invalid JIDs
Diffstat (limited to 'tests')
-rw-r--r--tests/test_util_jid.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_util_jid.lua b/tests/test_util_jid.lua
index 1dbd72b7..7a616008 100644
--- a/tests/test_util_jid.lua
+++ b/tests/test_util_jid.lua
@@ -11,4 +11,24 @@ function split(split)
test("server", nil, "server", nil );
test("server/resource", nil, "server", "resource" );
test(nil, nil, nil , nil );
+
+ test("node@/server", nil, nil, nil , nil );
+end
+
+function bare(bare)
+ assert_equal(bare("user@host"), "user@host", "bare JID remains bare");
+ assert_equal(bare("host"), "host", "Host JID remains host");
+ assert_equal(bare("host/resource"), "host", "Host JID with resource becomes host");
+ assert_equal(bare("user@host/resource"), "user@host", "user@host JID with resource becomes user@host");
+ assert_equal(bare("user@/resource"), nil, "invalid JID is nil");
+ assert_equal(bare("@/resource"), nil, "invalid JID is nil");
+ assert_equal(bare("@/"), nil, "invalid JID is nil");
+ assert_equal(bare("/"), nil, "invalid JID is nil");
+ assert_equal(bare(""), nil, "invalid JID is nil");
+ assert_equal(bare("@"), nil, "invalid JID is nil");
+ assert_equal(bare("user@"), nil, "invalid JID is nil");
+ assert_equal(bare("user@@"), nil, "invalid JID is nil");
+ assert_equal(bare("user@@host"), nil, "invalid JID is nil");
+ assert_equal(bare("user@@host/resource"), nil, "invalid JID is nil");
+ assert_equal(bare("user@host/"), nil, "invalid JID is nil");
end