mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
#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
|
|
send_receipt_request(void **state)
|
|
{
|
|
prof_input("/receipts request on");
|
|
|
|
prof_connect();
|
|
|
|
prof_input("/msg somejid@someserver.com Hi there");
|
|
|
|
assert_true(stbbr_received(
|
|
"<message id=\"*\" type=\"chat\" to=\"somejid@someserver.com\">"
|
|
"<body>Hi there</body>"
|
|
"<request xmlns=\"urn:xmpp:receipts\"/>"
|
|
"</message>"
|
|
));
|
|
}
|
|
|
|
void
|
|
send_receipt_on_request(void **state)
|
|
{
|
|
prof_input("/receipts send on");
|
|
|
|
prof_connect();
|
|
|
|
stbbr_send(
|
|
"<message id=\"msg12213\" type=\"chat\" to=\"stabber@localhost/profanity\" from=\"someuser@server.org/profanity\">"
|
|
"<body>Wants a receipt</body>"
|
|
"<request xmlns=\"urn:xmpp:receipts\"/>"
|
|
"</message>"
|
|
);
|
|
|
|
assert_true(stbbr_received(
|
|
"<message id=\"*\" to=\"someuser@server.org/profanity\">"
|
|
"<received id=\"msg12213\" xmlns=\"urn:xmpp:receipts\"/>"
|
|
"</message>"
|
|
));
|
|
}
|