#include #include #include #include #include #include #include #include #include #include "proftest.h" void sends_message_to_barejid_when_contact_offline(void **state) { stbbr_for_id("roster", "" "" "" "" "" ); prof_connect("stabber@localhost", "password"); stbbr_wait_for("prof_presence_1"); prof_input("/msg buddy1@localhost Hi there"); assert_true(stbbr_received( "" "Hi there" "" )); } void sends_message_to_barejid_when_contact_online(void **state) { stbbr_for_id("roster", "" "" "" "" "" ); prof_connect("stabber@localhost", "password"); stbbr_wait_for("prof_presence_1"); stbbr_send( "" "10" "" ); prof_output_exact("buddy1@localhost (mobile) is online"); prof_input("/msg buddy1@localhost Hi there"); assert_true(stbbr_received( "" "Hi there" "" )); } void sends_message_to_fulljid_when_received_from_fulljid(void **state) { stbbr_for_id("roster", "" "" "" "" "" ); prof_connect("stabber@localhost", "password"); stbbr_wait_for("prof_presence_1"); stbbr_send( "" "10" "" ); prof_output_exact("buddy1@localhost (mobile) is online"); stbbr_send( "" "First message" "" ); prof_output_exact("<< incoming from buddy1@localhost/mobile (2)"); prof_input("/msg buddy1@localhost Hi there"); assert_true(stbbr_received( "" "Hi there" "" )); } void sends_subsequent_messages_to_fulljid(void **state) { stbbr_for_id("roster", "" "" "" "" "" ); prof_connect("stabber@localhost", "password"); stbbr_wait_for("prof_presence_1"); stbbr_send( "" "10" "" ); prof_output_exact("buddy1@localhost (mobile) is online"); stbbr_send( "" "First message" "" ); prof_output_exact("<< incoming from buddy1@localhost/mobile (2)"); prof_input("/msg buddy1@localhost Outgoing 1"); prof_input("/msg buddy1@localhost Outgoing 2"); prof_input("/msg buddy1@localhost Outgoing 3"); assert_true(stbbr_received( "" "Outgoing 1" "" )); assert_true(stbbr_received( "" "Outgoing 2" "" )); assert_true(stbbr_received( "" "Outgoing 3" "" )); } void resets_to_barejid_after_presence_received(void **state) { stbbr_for_id("roster", "" "" "" "" "" ); prof_connect("stabber@localhost", "password"); stbbr_wait_for("prof_presence_1"); stbbr_send( "" "10" "" ); prof_output_exact("buddy1@localhost (mobile) is online"); stbbr_send( "" "First message" "" ); prof_output_exact("<< incoming from buddy1@localhost/mobile (2)"); prof_input("/msg buddy1@localhost Outgoing 1"); assert_true(stbbr_received( "" "Outgoing 1" "" )); stbbr_send( "" "5" "dnd" "" ); prof_output_exact("buddy1@localhost (laptop) is dnd"); prof_input("/msg buddy1@localhost Outgoing 2"); assert_true(stbbr_received( "" "Outgoing 2" "" )); } void new_session_when_message_received_from_different_fulljid(void **state) { stbbr_for_id("roster", "" "" "" "" "" ); prof_connect("stabber@localhost", "password"); stbbr_wait_for("prof_presence_1"); stbbr_send( "" "10" "" ); prof_output_exact("buddy1@localhost (mobile) is online"); stbbr_send( "" "8" "away" "" ); prof_output_exact("buddy1@localhost (laptop) is away"); stbbr_send( "" "From first resource" "" ); prof_output_exact("<< incoming from buddy1@localhost/mobile (2)"); prof_input("/msg buddy1@localhost Outgoing 1"); assert_true(stbbr_received( "" "Outgoing 1" "" )); stbbr_send( "" "From second resource" "" ); prof_output_regex("buddy1@localhost/laptop:.+From second resource"); prof_input("/msg buddy1@localhost Outgoing 2"); assert_true(stbbr_received( "" "Outgoing 2" "" )); }