All checks were successful
CI Code / Check spelling (pull_request) Successful in 14s
CI Code / Check coding style (pull_request) Successful in 26s
CI Code / Code Coverage (pull_request) Successful in 3m29s
CI Code / Linux (debian) (pull_request) Successful in 5m13s
CI Code / Linux (ubuntu) (pull_request) Successful in 5m16s
CI Code / Linux (arch) (pull_request) Successful in 7m34s
T02: guard the receive-path handlers that dereferenced jid_create() without a NULL check — MUC join errors, subscribed/unsubscribed presence and, with silence.non-roster enabled, every incoming message. A stanza with a missing or malformed 'from' crashed the client (REQ-INP-01) T11: restrict /url open and /url save to http, https and aesgcm, so a received file:, javascript: or data: URL is refused (REQ-INP-06); spawn terminal-notifier through g_spawn_async with an argv instead of building a shell command for system() (REQ-INP-07); apply the XEP-0359 disco gate to MAM result ids, as live stanza-ids already do (REQ-INP-05); replace control and bidi-reordering characters in incoming message bodies with U+FFFD before they reach the terminal, the logs and the database, keeping LRM/RLM for legitimate RTL text (REQ-INP-08); cover JID part-length boundaries and invalid UTF-8 (REQ-INP-02) T10: replace strcpy/strcat/alloca and sprintf with g_strdup_printf and g_snprintf (REQ-MEM-03); allocate the OMEMO key buffers with g_malloc so a failed allocation cannot reach the following memcpy (REQ-MEM-04); remove the variable-length arrays and enforce -Werror=vla. Two of them were sized from remote input: the disco#info feature count and a chat message word length. The flag also caught a one-past-the-end write and a leak in the plugin autocompleter bindings (REQ-MEM-09)
49 lines
2.8 KiB
C
49 lines
2.8 KiB
C
#ifndef TESTS_TEST_JID_H
|
|
#define TESTS_TEST_JID_H
|
|
|
|
void jid_create__returns__null_from_null(void** state);
|
|
void jid_create__returns__null_from_empty_string(void** state);
|
|
void jid_create__returns__full_from_full(void** state);
|
|
void jid_create__returns__bare_from_full(void** state);
|
|
void jid_create__returns__resourcepart_from_full(void** state);
|
|
void jid_create__returns__localpart_from_full(void** state);
|
|
void jid_create__returns__domainpart_from_full(void** state);
|
|
void jid_create__returns__full_from_full_nolocal(void** state);
|
|
void jid_create__returns__bare_from_full_nolocal(void** state);
|
|
void jid_create__returns__resourcepart_from_full_nolocal(void** state);
|
|
void jid_create__returns__domainpart_from_full_nolocal(void** state);
|
|
void jid_create__returns__null_localpart_from_full_nolocal(void** state);
|
|
void jid_create__returns__null_full_from_bare(void** state);
|
|
void jid_create__returns__null_resource_from_bare(void** state);
|
|
void jid_create__returns__bare_from_bare(void** state);
|
|
void jid_create__returns__localpart_from_bare(void** state);
|
|
void jid_create__returns__domainpart_from_bare(void** state);
|
|
void jid_create_from_bare_and_resource__returns__room(void** state);
|
|
void jid_create_from_bare_and_resource__returns__nick(void** state);
|
|
void jid_create__returns__correct_parts_with_slash_in_resource(void** state);
|
|
void jid_create__returns__correct_parts_with_at_in_resource(void** state);
|
|
void jid_create__returns__correct_parts_with_at_and_slash_in_resource(void** state);
|
|
void jid_create__returns__correct_parts_with_trailing_slash(void** state);
|
|
void jid_fulljid_or_barejid__returns__fulljid_when_exists(void** state);
|
|
void jid_fulljid_or_barejid__returns__barejid_when_fulljid_not_exists(void** state);
|
|
void jid_create__returns__bare_from_trailing_slash(void** state);
|
|
void jid_create__returns__null_from_invalid_localpart_chars(void** state);
|
|
void jid_create__returns__null_from_empty_parts(void** state);
|
|
void jid_create__returns__null_from_multiple_at_in_bare(void** state);
|
|
void jid_create__returns__correct_parts_with_at_in_resource_only(void** state);
|
|
void jid_is_valid_user_jid__is__true_for_valid_user_jid(void** state);
|
|
void jid_is_valid_user_jid__is__true_for_at_in_resource(void** state);
|
|
void jid_is_valid_user_jid__is__false_for_domain_jid(void** state);
|
|
void jid_is_valid_user_jid__is__false_for_invalid_jid(void** state);
|
|
void jid_is_valid__is__true_for_valid_jid(void** state);
|
|
void jid_is_valid__is__false_for_invalid_jid(void** state);
|
|
void jid_is_valid__is__false_for_null(void** state);
|
|
void jid_is_valid__is__false_for_empty_string(void** state);
|
|
|
|
#endif
|
|
void jid_is_valid__boundary__localpart_length(void** state);
|
|
void jid_is_valid__boundary__domainpart_length(void** state);
|
|
void jid_is_valid__boundary__resourcepart_length(void** state);
|
|
void jid_is_valid__boundary__total_length(void** state);
|
|
void jid_is_valid__is__false_for_invalid_utf8(void** state);
|