mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 18:16:22 +00:00
They were disabled in 171b6e73c9.
Enable the functional test suite and replaces the
dependency on libexpect with a custom solution.
The native solution allows for specific optimizations like automatic
ANSI code stripping, which is essential for reliable pattern matching in
an ncurses interface.
Custom PTY management via libutil provides full control over the process
lifecycle, resolving issues where tests would hang indefinitely.
We use forkpty from libutil.
Addiiotnally this commit implements automatic ANSI escape sequence
filtering to improve matching consistency.
This will get rid of the colors in matches. It's still something that we
need to think about more since basically we will not test out
color/theme system this way.
We also add non-blocking poll() and SIGKILL based teardown logic to
ensure clean test termination.
We added the functional tests to both autotools and meson.
They are only build when tests are enabled and stabber + libutil are
present.
Meson will print this out nicely in the summary.
Regards https://github.com/profanity-im/profanity/issues/789
127 lines
3.5 KiB
C
127 lines
3.5 KiB
C
#include <glib.h>
|
|
#include "prof_cmocka.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <stabber.h>
|
|
|
|
#include "proftest.h"
|
|
|
|
void
|
|
sends_new_item(void** state)
|
|
{
|
|
prof_connect();
|
|
|
|
stbbr_for_query("jabber:iq:roster",
|
|
"<iq type='set' from='stabber@localhost'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='bob@localhost' subscription='none' name=''/>"
|
|
"</query>"
|
|
"</iq>");
|
|
|
|
prof_input("/roster add bob@localhost");
|
|
|
|
assert_true(stbbr_received(
|
|
"<iq type='set' id='*'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='bob@localhost' name=''/>"
|
|
"</query>"
|
|
"</iq>"));
|
|
|
|
assert_true(prof_output_exact("Roster item added: bob@localhost"));
|
|
}
|
|
|
|
void
|
|
sends_new_item_nick(void** state)
|
|
{
|
|
prof_connect();
|
|
|
|
stbbr_for_query("jabber:iq:roster",
|
|
"<iq type='set' from='stabber@localhost'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='bob@localhost' subscription='none' name='Bobby'/>"
|
|
"</query>"
|
|
"</iq>");
|
|
|
|
prof_input("/roster add bob@localhost Bobby");
|
|
|
|
assert_true(stbbr_received(
|
|
"<iq type='set' id='*'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='bob@localhost' name='Bobby'/>"
|
|
"</query>"
|
|
"</iq>"));
|
|
|
|
assert_true(prof_output_exact("Roster item added: bob@localhost (Bobby)"));
|
|
}
|
|
|
|
void
|
|
sends_remove_item(void** state)
|
|
{
|
|
prof_connect_with_roster(
|
|
"<item jid='buddy1@localhost' subscription='both'/>"
|
|
"<item jid='buddy2@localhost' subscription='both'/>");
|
|
|
|
stbbr_for_query("jabber:iq:roster",
|
|
"<iq id='*' type='set'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='buddy1@localhost' subscription='remove'/>"
|
|
"</query>"
|
|
"</iq>");
|
|
|
|
prof_input("/roster remove buddy1@localhost");
|
|
|
|
assert_true(stbbr_received(
|
|
"<iq type='set' id='*'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='buddy1@localhost' subscription='remove'/>"
|
|
"</query>"
|
|
"</iq>"));
|
|
|
|
assert_true(prof_output_exact("Roster item removed: buddy1@localhost"));
|
|
}
|
|
|
|
void
|
|
sends_remove_item_nick(void** state)
|
|
{
|
|
prof_connect_with_roster(
|
|
"<item jid='buddy1@localhost' name='Bobby' subscription='both'/>"
|
|
"<item jid='buddy2@localhost' subscription='both'/>");
|
|
|
|
stbbr_for_query("jabber:iq:roster",
|
|
"<iq id='*' type='set'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='buddy1@localhost' subscription='remove'/>"
|
|
"</query>"
|
|
"</iq>");
|
|
|
|
prof_input("/roster remove Bobby");
|
|
|
|
assert_true(stbbr_received(
|
|
"<iq type='set' id='*'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='buddy1@localhost' subscription='remove'/>"
|
|
"</query>"
|
|
"</iq>"));
|
|
|
|
assert_true(prof_output_exact("Roster item removed: buddy1@localhost"));
|
|
}
|
|
|
|
void
|
|
sends_nick_change(void** state)
|
|
{
|
|
prof_connect_with_roster(
|
|
"<item jid='buddy1@localhost' subscription='both'/>");
|
|
|
|
prof_input("/roster nick buddy1@localhost Buddy1");
|
|
|
|
assert_true(prof_output_exact("Nickname for buddy1@localhost set to: Buddy1."));
|
|
|
|
assert_true(stbbr_received(
|
|
"<iq type='set' id='*'>"
|
|
"<query xmlns='jabber:iq:roster'>"
|
|
"<item jid='buddy1@localhost' name='Buddy1'/>"
|
|
"</query>"
|
|
"</iq>"));
|
|
}
|