1
0
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:
James Booth 2015-07-13 20:06:48 +01:00
parent 051c6ed50e
commit 0400a5237f
6 changed files with 36 additions and 14 deletions

View File

@ -164,8 +164,7 @@ if HAVE_STABBER
TESTS += tests/functionaltests/functionaltests
check_PROGRAMS += tests/functionaltests/functionaltests
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 -lexpect -ltcl
tests_functionaltests_functionaltests_LDADD = -lcmocka -lstabber -lexpect5.45 -ltcl
endif
man_MANS = $(man_sources)

View File

@ -21,13 +21,13 @@
int main(int argc, char* argv[]) {
const UnitTest all_tests[] = {
unit_test_setup_teardown(connect_jid_requests_roster,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(connect_jid_sends_presence_after_receiving_roster,
init_prof_test,
close_prof_test),
/*
unit_test_setup_teardown(connect_jid_requests_bookmarks,
init_prof_test,
close_prof_test),
@ -118,6 +118,7 @@ int main(int argc, char* argv[]) {
unit_test_setup_teardown(send_enable_carbons,
init_prof_test,
close_prof_test),
*/
};
return run_tests(all_tests);

View File

@ -12,7 +12,10 @@
#include <string.h>
#include <stabber.h>
#include <tcl.h>
#include <expect.h>
#include <expect_tcl.h>
#include "proftest.h"
@ -123,6 +126,11 @@ _cleanup_dirs(void)
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
// based on the test runner terminal size
fd = exp_spawnl("sh",
@ -140,10 +148,11 @@ prof_start(void)
void
init_prof_test(void **state)
{
if (stbbr_start(STBBR_LOGDEBUG ,5230, 0) != 0) {
assert_true(FALSE);
return;
}
stbbr_start(STBBR_LOGDEBUG ,5230, 0);
// if (stbbr_start(STBBR_LOGDEBUG ,5230, 0) != 0) {
// assert_true(FALSE);
// return;
// }
config_orig = getenv("XDG_CONFIG_HOME");
data_orig = getenv("XDG_DATA_HOME");
@ -178,12 +187,18 @@ init_prof_test(void **state)
void
close_prof_test(void **state)
{
prof_input("/quit");
waitpid(exp_pid, NULL, 0);
// prof_input("/quit");
// waitpid(exp_pid, NULL, 0);
kill(exp_pid, SIGKILL);
_cleanup_dirs();
setenv("XDG_CONFIG_HOME", config_orig, 1);
setenv("XDG_DATA_HOME", data_orig, 1);
if (config_orig) {
setenv("XDG_CONFIG_HOME", config_orig, 1);
}
if (data_orig) {
setenv("XDG_DATA_HOME", data_orig, 1);
}
stbbr_stop();
}
@ -209,6 +224,12 @@ prof_output_regex(char *text)
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
prof_connect(void)
{
@ -232,7 +253,7 @@ prof_connect(void)
// Allow time for profanity to connect
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;
stbbr_wait_for("prof_presence_1");
}

View File

@ -13,5 +13,6 @@ void prof_input(char *input);
int prof_output_exact(char *text);
int prof_output_regex(char *text);
int prof_output_glob(char *text);
#endif

View File

@ -196,7 +196,7 @@ new_session_when_message_received_from_different_fulljid(void **state)
"<body>From second resource</body>"
"</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");
assert_true(stbbr_received(

View File

@ -24,7 +24,7 @@ message_send(void **state)
"</message>"
));
assert_true(prof_output_regex("me: .+Hi there"));
assert_true(prof_output_glob("me: *Hi there"));
}
void