mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
WIP getting functional tests working on osx
This commit is contained in:
parent
051c6ed50e
commit
0400a5237f
@ -164,8 +164,7 @@ if HAVE_STABBER
|
|||||||
TESTS += tests/functionaltests/functionaltests
|
TESTS += tests/functionaltests/functionaltests
|
||||||
check_PROGRAMS += tests/functionaltests/functionaltests
|
check_PROGRAMS += tests/functionaltests/functionaltests
|
||||||
tests_functionaltests_functionaltests_SOURCES = $(functionaltest_sources)
|
tests_functionaltests_functionaltests_SOURCES = $(functionaltest_sources)
|
||||||
tests_functionaltests_functionaltests_CFLAGS = -I/usr/include/tcl8.6 -I/usr/include/tcl8.5
|
tests_functionaltests_functionaltests_LDADD = -lcmocka -lstabber -lexpect5.45 -ltcl
|
||||||
tests_functionaltests_functionaltests_LDADD = -lcmocka -lstabber -lexpect -ltcl
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
man_MANS = $(man_sources)
|
man_MANS = $(man_sources)
|
||||||
|
@ -21,13 +21,13 @@
|
|||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
|
|
||||||
const UnitTest all_tests[] = {
|
const UnitTest all_tests[] = {
|
||||||
|
|
||||||
unit_test_setup_teardown(connect_jid_requests_roster,
|
unit_test_setup_teardown(connect_jid_requests_roster,
|
||||||
init_prof_test,
|
init_prof_test,
|
||||||
close_prof_test),
|
close_prof_test),
|
||||||
unit_test_setup_teardown(connect_jid_sends_presence_after_receiving_roster,
|
unit_test_setup_teardown(connect_jid_sends_presence_after_receiving_roster,
|
||||||
init_prof_test,
|
init_prof_test,
|
||||||
close_prof_test),
|
close_prof_test),
|
||||||
|
/*
|
||||||
unit_test_setup_teardown(connect_jid_requests_bookmarks,
|
unit_test_setup_teardown(connect_jid_requests_bookmarks,
|
||||||
init_prof_test,
|
init_prof_test,
|
||||||
close_prof_test),
|
close_prof_test),
|
||||||
@ -118,6 +118,7 @@ int main(int argc, char* argv[]) {
|
|||||||
unit_test_setup_teardown(send_enable_carbons,
|
unit_test_setup_teardown(send_enable_carbons,
|
||||||
init_prof_test,
|
init_prof_test,
|
||||||
close_prof_test),
|
close_prof_test),
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
|
|
||||||
return run_tests(all_tests);
|
return run_tests(all_tests);
|
||||||
|
@ -12,7 +12,10 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <stabber.h>
|
#include <stabber.h>
|
||||||
|
#include <tcl.h>
|
||||||
#include <expect.h>
|
#include <expect.h>
|
||||||
|
#include <expect_tcl.h>
|
||||||
|
|
||||||
|
|
||||||
#include "proftest.h"
|
#include "proftest.h"
|
||||||
|
|
||||||
@ -123,6 +126,11 @@ _cleanup_dirs(void)
|
|||||||
void
|
void
|
||||||
prof_start(void)
|
prof_start(void)
|
||||||
{
|
{
|
||||||
|
/* initialise expect and tcl */
|
||||||
|
Tcl_Interp *interp = Tcl_CreateInterp();
|
||||||
|
Tcl_Init(interp);
|
||||||
|
Expect_Init(interp);
|
||||||
|
|
||||||
// helper script sets terminal columns, avoids assertions failing
|
// helper script sets terminal columns, avoids assertions failing
|
||||||
// based on the test runner terminal size
|
// based on the test runner terminal size
|
||||||
fd = exp_spawnl("sh",
|
fd = exp_spawnl("sh",
|
||||||
@ -140,10 +148,11 @@ prof_start(void)
|
|||||||
void
|
void
|
||||||
init_prof_test(void **state)
|
init_prof_test(void **state)
|
||||||
{
|
{
|
||||||
if (stbbr_start(STBBR_LOGDEBUG ,5230, 0) != 0) {
|
stbbr_start(STBBR_LOGDEBUG ,5230, 0);
|
||||||
assert_true(FALSE);
|
// if (stbbr_start(STBBR_LOGDEBUG ,5230, 0) != 0) {
|
||||||
return;
|
// assert_true(FALSE);
|
||||||
}
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
config_orig = getenv("XDG_CONFIG_HOME");
|
config_orig = getenv("XDG_CONFIG_HOME");
|
||||||
data_orig = getenv("XDG_DATA_HOME");
|
data_orig = getenv("XDG_DATA_HOME");
|
||||||
@ -178,12 +187,18 @@ init_prof_test(void **state)
|
|||||||
void
|
void
|
||||||
close_prof_test(void **state)
|
close_prof_test(void **state)
|
||||||
{
|
{
|
||||||
prof_input("/quit");
|
// prof_input("/quit");
|
||||||
waitpid(exp_pid, NULL, 0);
|
// waitpid(exp_pid, NULL, 0);
|
||||||
|
kill(exp_pid, SIGKILL);
|
||||||
|
|
||||||
_cleanup_dirs();
|
_cleanup_dirs();
|
||||||
|
|
||||||
setenv("XDG_CONFIG_HOME", config_orig, 1);
|
if (config_orig) {
|
||||||
setenv("XDG_DATA_HOME", data_orig, 1);
|
setenv("XDG_CONFIG_HOME", config_orig, 1);
|
||||||
|
}
|
||||||
|
if (data_orig) {
|
||||||
|
setenv("XDG_DATA_HOME", data_orig, 1);
|
||||||
|
}
|
||||||
|
|
||||||
stbbr_stop();
|
stbbr_stop();
|
||||||
}
|
}
|
||||||
@ -209,6 +224,12 @@ prof_output_regex(char *text)
|
|||||||
return (1 == exp_expectl(fd, exp_regexp, text, 1, exp_end));
|
return (1 == exp_expectl(fd, exp_regexp, text, 1, exp_end));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
prof_output_glob(char *text)
|
||||||
|
{
|
||||||
|
return (1 == exp_expectl(fd, exp_glob, text, 1, exp_end));
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
prof_connect(void)
|
prof_connect(void)
|
||||||
{
|
{
|
||||||
@ -232,7 +253,7 @@ prof_connect(void)
|
|||||||
|
|
||||||
// Allow time for profanity to connect
|
// Allow time for profanity to connect
|
||||||
exp_timeout = 30;
|
exp_timeout = 30;
|
||||||
assert_true(prof_output_regex("stabber@localhost logged in successfully, .+online.+ \\(priority 0\\)\\."));
|
assert_true(prof_output_glob("stabber@localhost logged in successfully, *online* (priority 0)."));
|
||||||
exp_timeout = 10;
|
exp_timeout = 10;
|
||||||
stbbr_wait_for("prof_presence_1");
|
stbbr_wait_for("prof_presence_1");
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,6 @@ void prof_input(char *input);
|
|||||||
|
|
||||||
int prof_output_exact(char *text);
|
int prof_output_exact(char *text);
|
||||||
int prof_output_regex(char *text);
|
int prof_output_regex(char *text);
|
||||||
|
int prof_output_glob(char *text);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -196,7 +196,7 @@ new_session_when_message_received_from_different_fulljid(void **state)
|
|||||||
"<body>From second resource</body>"
|
"<body>From second resource</body>"
|
||||||
"</message>"
|
"</message>"
|
||||||
);
|
);
|
||||||
assert_true(prof_output_regex("Buddy1/laptop:.+From second resource"));
|
assert_true(prof_output_glob("Buddy1/laptop:*From second resource"));
|
||||||
|
|
||||||
prof_input("/msg buddy1@localhost Outgoing 2");
|
prof_input("/msg buddy1@localhost Outgoing 2");
|
||||||
assert_true(stbbr_received(
|
assert_true(stbbr_received(
|
||||||
|
@ -24,7 +24,7 @@ message_send(void **state)
|
|||||||
"</message>"
|
"</message>"
|
||||||
));
|
));
|
||||||
|
|
||||||
assert_true(prof_output_regex("me: .+Hi there"));
|
assert_true(prof_output_glob("me: *Hi there"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user