summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-07-20 21:28:18 +0200
committerlouiz’ <louiz@louiz.org>2017-07-20 21:28:18 +0200
commit24f2511d7ba105d65c9684dd5606a57c5af95445 (patch)
tree9744d49e3c79687119de1bfde98da137a9d6d3d9 /tests
parentffb402f0adb9f808c7b8bc9616e71f7b3f8931ac (diff)
downloadbiboumi-24f2511d7ba105d65c9684dd5606a57c5af95445.tar.gz
biboumi-24f2511d7ba105d65c9684dd5606a57c5af95445.tar.bz2
biboumi-24f2511d7ba105d65c9684dd5606a57c5af95445.tar.xz
biboumi-24f2511d7ba105d65c9684dd5606a57c5af95445.zip
In fixed mode, fix the iid type of the component JID
Diffstat (limited to 'tests')
-rw-r--r--tests/iid.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/iid.cpp b/tests/iid.cpp
index 3da0396..63b2ba3 100644
--- a/tests/iid.cpp
+++ b/tests/iid.cpp
@@ -125,4 +125,10 @@ TEST_CASE("Iid creation in fixed_server mode")
CHECK(iid6.get_local() == "##channel%");
CHECK(iid6.get_server() == "fixed.example.com");
CHECK(iid6.type == Iid::Type::Channel);
+
+ Iid iid7("", chantypes);
+ CHECK(std::to_string(iid7) == "");
+ CHECK(iid7.get_local() == "");
+ CHECK(iid7.get_server() == "fixed.example.com");
+ CHECK(iid7.type == Iid::Type::None);
}