aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index 41ef45d..0eae9ba 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -2,6 +2,7 @@
#include <string.h>
#include "../include/NetUtils.hpp"
#include "../plugins/utils/EpisodeNameParser.hpp"
+#include "../plugins/Matrix.hpp"
#include "../generated/Emoji.hpp"
#define assert_fail(str) do { fprintf(stderr, "Assert failed on line %d, reason: %s\n", __LINE__, (str)); exit(1); } while(0)
@@ -112,5 +113,13 @@ int main() {
assert_equals(emoji_sequence_length, 4);
assert_equals(emoji_sequence_byte_length, 13);
+ assert_equals(extract_user_name_from_user_id("@dec05eba:domail.com"), "dec05eba");
+ assert_equals(extract_user_name_from_user_id("dec05eba@domain.com"), "");
+ assert_equals(extract_user_name_from_user_id("dec05eba"), "");
+
+ assert_equals(extract_user_name_from_email("dec05eba@domain.com"), "dec05eba");
+ assert_equals(extract_user_name_from_email("@dec05eba:domain.com"), "");
+ assert_equals(extract_user_name_from_email("dec05eba"), "");
+
return 0;
}