server/src/piracy.test.c

51 lines
1.3 KiB
C
Raw Normal View History

2015-10-12 11:54:59 +02:00
#include <platform.h>
#include "piracy.h"
#include <kernel/unit.h>
2015-10-12 13:27:39 +02:00
#include <kernel/ship.h>
2015-10-12 11:54:59 +02:00
#include <kernel/faction.h>
#include <kernel/order.h>
#include <util/language.h>
#include <CuTest.h>
#include <tests.h>
#include <assert.h>
2015-10-12 13:27:39 +02:00
static void test_piracy_cmd_errors(CuTest * tc) {
faction *f;
unit *u, *u2;
2015-10-12 11:54:59 +02:00
order *ord;
test_cleanup();
2015-10-12 13:27:39 +02:00
u = test_create_unit(f = test_create_faction(0), test_create_region(0, 0, 0));
f->locale = get_or_create_locale("de");
ord = create_order(K_PIRACY, f->locale, "");
2015-10-12 11:54:59 +02:00
assert(u);
piracy_cmd(u, ord);
2015-10-12 13:27:39 +02:00
CuAssertPtrNotNullMsg(tc, "must be on a ship for PIRACY", test_find_messagetype(f->msgs, "error144"));
u_set_ship(u, test_create_ship(u->region, 0));
u2 = test_create_unit(u->faction, u->region);
u_set_ship(u2, u->ship);
test_clear_messages(f);
piracy_cmd(u2, ord);
CuAssertPtrNotNullMsg(tc, "must be owner for PIRACY", test_find_messagetype(f->msgs, "error146"));
test_clear_messages(f);
piracy_cmd(u, ord);
CuAssertPtrNotNullMsg(tc, "must specify target for PIRACY", test_find_messagetype(f->msgs, "piratenovictim"));
2015-10-12 11:54:59 +02:00
test_cleanup();
}
CuSuite *get_piracy_suite(void)
{
CuSuite *suite = CuSuiteNew();
2015-10-12 13:27:39 +02:00
SUITE_ADD_TEST(suite, test_piracy_cmd_errors);
2015-10-12 11:54:59 +02:00
return suite;
}