1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-11 18:54:16 -04:00
profanity/tests/functionaltests/test_chat_session.c

208 lines
5.9 KiB
C
Raw Normal View History

2015-06-05 20:02:27 -04:00
#include <glib.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include <string.h>
#include <stabber.h>
#include <expect.h>
#include "proftest.h"
void
sends_message_to_barejid_when_contact_offline(void **state)
{
2015-06-13 14:41:11 -04:00
prof_connect();
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Hi there");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost\" type=\"chat\">"
"<body>Hi there</body>"
"</message>"
));
}
void
sends_message_to_barejid_when_contact_online(void **state)
{
2015-06-13 14:41:11 -04:00
prof_connect();
2015-06-05 20:02:27 -04:00
stbbr_send(
2015-06-13 14:41:11 -04:00
"<presence to=\"stabber@localhost/profanity\" from=\"buddy1@localhost/mobile\">"
2015-06-05 20:02:27 -04:00
"<priority>10</priority>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (mobile) is online"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Hi there");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost\" type=\"chat\">"
"<body>Hi there</body>"
"</message>"
));
}
void
sends_message_to_fulljid_when_received_from_fulljid(void **state)
{
2015-06-13 14:41:11 -04:00
prof_connect();
2015-06-05 20:02:27 -04:00
stbbr_send(
"<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
"<priority>10</priority>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (mobile) is online"));
2015-06-05 20:02:27 -04:00
stbbr_send(
"<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>First message</body>"
"</message>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("<< incoming from Buddy1/mobile (2)"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Hi there");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>Hi there</body>"
"</message>"
));
}
void
sends_subsequent_messages_to_fulljid(void **state)
{
2015-06-13 14:41:11 -04:00
prof_connect();
2015-06-05 20:02:27 -04:00
stbbr_send(
"<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
"<priority>10</priority>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (mobile) is online"));
2015-06-05 20:02:27 -04:00
stbbr_send(
"<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>First message</body>"
"</message>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("<< incoming from Buddy1/mobile (2)"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Outgoing 1");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>Outgoing 1</body>"
"</message>"
));
2015-06-13 14:41:11 -04:00
prof_input("/msg buddy1@localhost Outgoing 2");
2015-06-05 20:02:27 -04:00
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>Outgoing 2</body>"
"</message>"
));
2015-06-13 14:41:11 -04:00
prof_input("/msg buddy1@localhost Outgoing 3");
2015-06-05 20:02:27 -04:00
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>Outgoing 3</body>"
"</message>"
));
}
void
resets_to_barejid_after_presence_received(void **state)
{
2015-06-13 14:41:11 -04:00
prof_connect();
2015-06-05 20:02:27 -04:00
stbbr_send(
"<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
"<priority>10</priority>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (mobile) is online"));
2015-06-05 20:02:27 -04:00
stbbr_send(
"<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>First message</body>"
"</message>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("<< incoming from Buddy1/mobile (2)"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Outgoing 1");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>Outgoing 1</body>"
"</message>"
));
stbbr_send(
"<presence to=\"stabber@localhost\" from=\"buddy1@localhost/laptop\">"
"<priority>5</priority>"
"<show>dnd</show>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (laptop) is dnd"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Outgoing 2");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost\" type=\"chat\">"
"<body>Outgoing 2</body>"
"</message>"
));
}
void
new_session_when_message_received_from_different_fulljid(void **state)
{
2015-06-13 14:41:11 -04:00
prof_connect();
2015-06-05 20:02:27 -04:00
stbbr_send(
"<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
"<priority>10</priority>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (mobile) is online"));
2015-06-05 20:02:27 -04:00
stbbr_send(
"<presence to=\"stabber@localhost\" from=\"buddy1@localhost/laptop\">"
"<priority>8</priority>"
"<show>away</show>"
"</presence>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("Buddy1 (laptop) is away"));
2015-06-05 20:02:27 -04:00
stbbr_send(
"<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>From first resource</body>"
"</message>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_exact("<< incoming from Buddy1/mobile (2)"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Outgoing 1");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
"<body>Outgoing 1</body>"
"</message>"
));
stbbr_send(
"<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/laptop\" type=\"chat\">"
"<body>From second resource</body>"
"</message>"
);
2015-06-13 14:41:11 -04:00
assert_true(prof_output_regex("Buddy1/laptop:.+From second resource"));
2015-06-05 20:02:27 -04:00
prof_input("/msg buddy1@localhost Outgoing 2");
assert_true(stbbr_received(
"<message id=\"*\" to=\"buddy1@localhost/laptop\" type=\"chat\">"
"<body>Outgoing 2</body>"
"</message>"
));
}