forked from github/server
add mail_cmd tests for FACTION
This commit is contained in:
parent
403b8a2e7e
commit
c47c9dbf64
|
@ -1014,6 +1014,17 @@ static void test_mail_unit(CuTest *tc) {
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_mail_faction(CuTest *tc) {
|
||||||
|
order *ord;
|
||||||
|
unit *u;
|
||||||
|
|
||||||
|
u = setup_mail_cmd();
|
||||||
|
ord = create_order(K_MAIL, u->faction->locale, "PARTEI %s 'Hodor!'", itoa36(u->faction->no));
|
||||||
|
mail_cmd(u, ord);
|
||||||
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "regionmessage"));
|
||||||
|
test_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
static void test_mail_region(CuTest *tc) {
|
static void test_mail_region(CuTest *tc) {
|
||||||
order *ord;
|
order *ord;
|
||||||
unit *u;
|
unit *u;
|
||||||
|
@ -1037,6 +1048,30 @@ static void test_mail_unit_no_msg(CuTest *tc) {
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_mail_faction_no_msg(CuTest *tc) {
|
||||||
|
unit *u;
|
||||||
|
order *ord;
|
||||||
|
|
||||||
|
u = setup_mail_cmd();
|
||||||
|
ord = create_order(K_MAIL, u->faction->locale, "PARTEI %s", itoa36(u->faction->no));
|
||||||
|
mail_cmd(u, ord);
|
||||||
|
CuAssertPtrEquals(tc, 0, test_find_messagetype(u->faction->msgs, "regionmessage"));
|
||||||
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error30"));
|
||||||
|
test_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_mail_faction_no_target(CuTest *tc) {
|
||||||
|
unit *u;
|
||||||
|
order *ord;
|
||||||
|
|
||||||
|
u = setup_mail_cmd();
|
||||||
|
ord = create_order(K_MAIL, u->faction->locale, "PARTEI %s", itoa36(u->faction->no+1));
|
||||||
|
mail_cmd(u, ord);
|
||||||
|
CuAssertPtrEquals(tc, 0, test_find_messagetype(u->faction->msgs, "regionmessage"));
|
||||||
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error66"));
|
||||||
|
test_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
static void test_mail_region_no_msg(CuTest *tc) {
|
static void test_mail_region_no_msg(CuTest *tc) {
|
||||||
unit *u;
|
unit *u;
|
||||||
order *ord;
|
order *ord;
|
||||||
|
@ -1094,9 +1129,12 @@ CuSuite *get_laws_suite(void)
|
||||||
SUITE_ADD_TEST(suite, test_force_leave_ships_on_ocean);
|
SUITE_ADD_TEST(suite, test_force_leave_ships_on_ocean);
|
||||||
SUITE_ADD_TEST(suite, test_peasant_luck_effect);
|
SUITE_ADD_TEST(suite, test_peasant_luck_effect);
|
||||||
SUITE_ADD_TEST(suite, test_mail_unit);
|
SUITE_ADD_TEST(suite, test_mail_unit);
|
||||||
|
SUITE_ADD_TEST(suite, test_mail_faction);
|
||||||
SUITE_ADD_TEST(suite, test_mail_region);
|
SUITE_ADD_TEST(suite, test_mail_region);
|
||||||
SUITE_ADD_TEST(suite, test_mail_unit_no_msg);
|
SUITE_ADD_TEST(suite, test_mail_unit_no_msg);
|
||||||
|
SUITE_ADD_TEST(suite, test_mail_faction_no_msg);
|
||||||
SUITE_ADD_TEST(suite, test_mail_region_no_msg);
|
SUITE_ADD_TEST(suite, test_mail_region_no_msg);
|
||||||
|
SUITE_ADD_TEST(suite, test_mail_faction_no_target);
|
||||||
(void)test_luck_message; /* disabled, breaks on travis */
|
(void)test_luck_message; /* disabled, breaks on travis */
|
||||||
|
|
||||||
return suite;
|
return suite;
|
||||||
|
|
Loading…
Reference in New Issue