mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
d35a7a7f7e
## Summary Fixes https://github.com/profanity-im/profanity/issues/1907 Update functional and unit test code to comply with the current cmocka test runner. ## Changes - `UnitTest` struct to `CMUnitTest` struct - `unit_test()` macro to `cmocka_unit_test(f)` macro - `unit_test_setup_teardown()` macro to `cmocka_unit_test_setup_teardown` macro - `run_tests()` macro to `cmocka_run_group_tests()` function - Setup and teardown functions return `int` instead of `void` ## Testing ### Unit Tests `make check` ### Functional Tests I did not compile or run functional tests because they are *shelved* for now. ### Valgrind I'm not entirely sure how to fun Valgrind in this case. I did not do fancy memory management, so it should be fine.
22 lines
546 B
C
22 lines
546 B
C
#ifndef __H_PROFTEST
|
|
#define __H_PROFTEST
|
|
|
|
#define XDG_CONFIG_HOME "./tests/functionaltests/files/xdg_config_home"
|
|
#define XDG_DATA_HOME "./tests/functionaltests/files/xdg_data_home"
|
|
|
|
int init_prof_test(void **state);
|
|
int close_prof_test(void **state);
|
|
|
|
void prof_start(void);
|
|
void prof_connect(void);
|
|
void prof_connect_with_roster(const char *roster);
|
|
void prof_input(const char *input);
|
|
|
|
int prof_output_exact(const char *text);
|
|
int prof_output_regex(const char *text);
|
|
|
|
void prof_timeout(int timeout);
|
|
void prof_timeout_reset(void);
|
|
|
|
#endif
|