tests: standardize naming convention

Use a behavior-driven naming convention for unit tests.

Functions are now named using the pattern: [unit]__[verb]__[scenario]
The __ works as a semantic separator.

Examples:
* jid_create__returns__null_from_null()
* cmd_connect__shows__usage_when_no_server_value

Benefits:
* Easy to find all tests associated with a specific function using the
  mandatory prefix.
* Test output in CI now explicitly describes the unit, the expected
  outcome, and the scenario being tested.

Also disabled keyhandlers tests due to missing code in src/ui.
This commit is contained in:
Michael Vetter
2026-02-28 12:41:33 +01:00
parent a7408a970e
commit e81435be06
53 changed files with 1601 additions and 1433 deletions

View File

@@ -20,7 +20,7 @@ muc_after_test(void** state)
}
void
test_muc_invites_add(void** state)
muc_invites_add__updates__invites_list(void** state)
{
char* room = "room@conf.server";
muc_invites_add(room, NULL);
@@ -31,7 +31,7 @@ test_muc_invites_add(void** state)
}
void
test_muc_remove_invite(void** state)
muc_invites_remove__updates__invites_list(void** state)
{
char* room = "room@conf.server";
muc_invites_add(room, NULL);
@@ -43,7 +43,7 @@ test_muc_remove_invite(void** state)
}
void
test_muc_invites_count_0(void** state)
muc_invites_count__returns__0_when_no_invites(void** state)
{
int invite_count = muc_invites_count();
@@ -51,7 +51,7 @@ test_muc_invites_count_0(void** state)
}
void
test_muc_invites_count_5(void** state)
muc_invites_count__returns__5_when_five_invites_added(void** state)
{
muc_invites_add("room1@conf.server", NULL);
muc_invites_add("room2@conf.server", NULL);
@@ -65,7 +65,7 @@ test_muc_invites_count_5(void** state)
}
void
test_muc_room_is_not_active(void** state)
muc_active__is__false_when_not_joined(void** state)
{
char* room = "room@server.org";
@@ -75,7 +75,7 @@ test_muc_room_is_not_active(void** state)
}
void
test_muc_active(void** state)
muc_active__is__true_when_joined(void** state)
{
char* room = "room@server.org";
char* nick = "bob";