2015-05-25 02:18:31 +01:00
|
|
|
#ifndef __H_PROFTEST
|
|
|
|
#define __H_PROFTEST
|
|
|
|
|
2015-06-13 19:41:11 +01:00
|
|
|
#define XDG_CONFIG_HOME "./tests/functionaltests/files/xdg_config_home"
|
|
|
|
#define XDG_DATA_HOME "./tests/functionaltests/files/xdg_data_home"
|
2015-05-26 23:22:05 +01:00
|
|
|
|
2015-05-17 01:11:03 +01:00
|
|
|
void init_prof_test(void **state);
|
|
|
|
void close_prof_test(void **state);
|
2015-05-25 02:18:31 +01:00
|
|
|
|
2015-05-27 01:06:17 +01:00
|
|
|
void prof_start(void);
|
2015-06-13 19:41:11 +01:00
|
|
|
void prof_connect(void);
|
2020-10-15 10:12:33 +02:00
|
|
|
void prof_connect_with_roster(const char *roster);
|
|
|
|
void prof_input(const char *input);
|
2015-05-29 01:01:34 +01:00
|
|
|
|
2020-10-15 10:12:33 +02:00
|
|
|
int prof_output_exact(const char *text);
|
|
|
|
int prof_output_regex(const char *text);
|
2015-05-27 01:06:17 +01:00
|
|
|
|
2015-12-30 00:32:52 +00:00
|
|
|
void prof_timeout(int timeout);
|
|
|
|
void prof_timeout_reset(void);
|
|
|
|
|
2015-05-26 23:22:05 +01:00
|
|
|
#endif
|