mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Removed old chat session tests
This commit is contained in:
parent
ad83bab6d2
commit
0ce7b2acb7
@ -14,7 +14,7 @@ check_PROGRAMS = tests/testsuite
|
||||
tests_testsuite_SOURCES = tests/test_contact_list.c src/contact_list.c src/contact.c \
|
||||
tests/test_common.c tests/test_prof_history.c src/prof_history.c src/common.c \
|
||||
tests/test_prof_autocomplete.c src/prof_autocomplete.c tests/testsuite.c \
|
||||
tests/test_chat_session.c src/chat_session.c src/log.c
|
||||
src/log.c
|
||||
tests_testsuite_LDADD = -lheadunit -lstdc++
|
||||
|
||||
man_MANS = docs/profanity.1
|
||||
|
@ -1,73 +0,0 @@
|
||||
#include <stdio.h>
|
||||
#include <head-unit.h>
|
||||
#include "chat_session.h"
|
||||
|
||||
void setup(void)
|
||||
{
|
||||
chat_session_init();
|
||||
}
|
||||
|
||||
void adding_new_sets_state_to_active(void)
|
||||
{
|
||||
chat_session_start("prof1@panesar");
|
||||
chat_state_t state = chat_session_get_state("prof1@panesar");
|
||||
|
||||
assert_int_equals(ACTIVE, state);
|
||||
}
|
||||
|
||||
void set_inactive(void)
|
||||
{
|
||||
chat_session_start("prof2@panesar");
|
||||
chat_session_set_state("prof2@panesar", INACTIVE);
|
||||
chat_state_t state = chat_session_get_state("prof2@panesar");
|
||||
|
||||
assert_int_equals(INACTIVE, state);
|
||||
}
|
||||
|
||||
void set_gone(void)
|
||||
{
|
||||
chat_session_start("prof3@panesar");
|
||||
chat_session_set_state("prof3@panesar", GONE);
|
||||
chat_state_t state = chat_session_get_state("prof3@panesar");
|
||||
|
||||
assert_int_equals(GONE, state);
|
||||
}
|
||||
|
||||
void set_composing(void)
|
||||
{
|
||||
chat_session_start("prof4@panesar");
|
||||
chat_session_set_state("prof4@panesar", COMPOSING);
|
||||
chat_state_t state = chat_session_get_state("prof4@panesar");
|
||||
|
||||
assert_int_equals(COMPOSING, state);
|
||||
}
|
||||
|
||||
void set_paused(void)
|
||||
{
|
||||
chat_session_start("prof5@panesar");
|
||||
chat_session_set_state("prof5@panesar", PAUSED);
|
||||
chat_state_t state = chat_session_get_state("prof5@panesar");
|
||||
|
||||
assert_int_equals(PAUSED, state);
|
||||
}
|
||||
|
||||
void end_session(void)
|
||||
{
|
||||
chat_session_start(strdup("prof6@panesar"));
|
||||
chat_session_end("prof6@panesar");
|
||||
chat_state_t state = chat_session_get_state("prof5@panesat");
|
||||
|
||||
assert_int_equals(SESSION_ERR, state);
|
||||
}
|
||||
|
||||
void register_chat_session_tests(void)
|
||||
{
|
||||
TEST_MODULE("chat_session_tests");
|
||||
SETUP(setup);
|
||||
TEST(adding_new_sets_state_to_active);
|
||||
TEST(set_inactive);
|
||||
TEST(set_gone);
|
||||
TEST(set_composing);
|
||||
TEST(set_paused);
|
||||
TEST(end_session);
|
||||
}
|
@ -7,7 +7,6 @@ int main(void)
|
||||
register_contact_list_tests();
|
||||
register_common_tests();
|
||||
register_prof_autocomplete_tests();
|
||||
register_chat_session_tests();
|
||||
run_suite();
|
||||
return 0;
|
||||
}
|
||||
|
@ -5,6 +5,5 @@ void register_prof_history_tests(void);
|
||||
void register_contact_list_tests(void);
|
||||
void register_common_tests(void);
|
||||
void register_prof_autocomplete_tests(void);
|
||||
void register_chat_session_tests(void);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user