From 3aacdd395f20fa182413be92a49cbd5c5a780ab9 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 2 Dec 2022 20:02:45 +0100 Subject: Matrix: extract username if login is email or user id --- tests/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests') 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 #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; } -- cgit v1.2.3