2015-01-12 22:53:21 +01:00
|
|
|
#include <platform.h>
|
2014-08-27 06:40:18 +02:00
|
|
|
#include <config.h>
|
|
|
|
#include "reports.h"
|
2015-05-19 08:26:44 +02:00
|
|
|
#include "report.h"
|
2015-08-05 14:45:46 +02:00
|
|
|
#include "creport.h"
|
2012-05-17 21:23:25 +02:00
|
|
|
|
|
|
|
#include <kernel/building.h>
|
2014-08-24 23:36:06 +02:00
|
|
|
#include <kernel/faction.h>
|
|
|
|
#include <kernel/race.h>
|
2012-05-17 21:23:25 +02:00
|
|
|
#include <kernel/region.h>
|
|
|
|
#include <kernel/ship.h>
|
|
|
|
#include <kernel/unit.h>
|
|
|
|
|
2014-08-24 23:36:06 +02:00
|
|
|
#include <quicklist.h>
|
2015-05-19 08:26:44 +02:00
|
|
|
#include <stream.h>
|
|
|
|
#include <memstream.h>
|
2014-08-24 23:36:06 +02:00
|
|
|
|
2012-05-31 04:17:08 +02:00
|
|
|
#include <CuTest.h>
|
2012-05-17 21:23:25 +02:00
|
|
|
#include <tests.h>
|
|
|
|
|
2014-03-15 19:29:11 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-05-17 21:23:25 +02:00
|
|
|
static void test_reorder_units(CuTest * tc)
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
region *r;
|
|
|
|
building *b;
|
|
|
|
ship * s;
|
|
|
|
unit *u0, *u1, *u2, *u3, *u4;
|
|
|
|
struct faction * f;
|
|
|
|
const building_type *btype;
|
|
|
|
const ship_type *stype;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
test_create_world();
|
|
|
|
|
|
|
|
btype = bt_find("castle");
|
|
|
|
stype = st_find("boat");
|
|
|
|
|
|
|
|
r = findregion(-1, 0);
|
|
|
|
b = test_create_building(r, btype);
|
|
|
|
s = test_create_ship(r, stype);
|
|
|
|
f = test_create_faction(0);
|
|
|
|
|
|
|
|
u0 = test_create_unit(f, r);
|
|
|
|
u_set_ship(u0, s);
|
|
|
|
u1 = test_create_unit(f, r);
|
|
|
|
u_set_ship(u1, s);
|
|
|
|
ship_set_owner(u1);
|
|
|
|
u2 = test_create_unit(f, r);
|
|
|
|
u3 = test_create_unit(f, r);
|
|
|
|
u_set_building(u3, b);
|
|
|
|
u4 = test_create_unit(f, r);
|
|
|
|
u_set_building(u4, b);
|
|
|
|
building_set_owner(u4);
|
|
|
|
|
|
|
|
reorder_units(r);
|
|
|
|
|
|
|
|
CuAssertPtrEquals(tc, u4, r->units);
|
|
|
|
CuAssertPtrEquals(tc, u3, u4->next);
|
|
|
|
CuAssertPtrEquals(tc, u2, u3->next);
|
|
|
|
CuAssertPtrEquals(tc, u1, u2->next);
|
|
|
|
CuAssertPtrEquals(tc, u0, u1->next);
|
|
|
|
CuAssertPtrEquals(tc, 0, u0->next);
|
2012-05-17 21:23:25 +02:00
|
|
|
}
|
|
|
|
|
2012-05-29 08:31:46 +02:00
|
|
|
static void test_regionid(CuTest * tc) {
|
2015-01-30 20:37:14 +01:00
|
|
|
size_t len;
|
|
|
|
const struct terrain_type * plain;
|
|
|
|
struct region * r;
|
|
|
|
char buffer[64];
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
plain = test_create_terrain("plain", 0);
|
|
|
|
r = test_create_region(0, 0, plain);
|
|
|
|
|
|
|
|
memset(buffer, 0x7d, sizeof(buffer));
|
|
|
|
len = f_regionid(r, 0, buffer, sizeof(buffer));
|
2015-05-15 20:35:36 +02:00
|
|
|
CuAssertIntEquals(tc, 11, (int)len);
|
2015-01-30 20:37:14 +01:00
|
|
|
CuAssertStrEquals(tc, "plain (0,0)", buffer);
|
|
|
|
|
|
|
|
memset(buffer, 0x7d, sizeof(buffer));
|
|
|
|
len = f_regionid(r, 0, buffer, 11);
|
2015-05-15 20:35:36 +02:00
|
|
|
CuAssertIntEquals(tc, 10, (int)len);
|
2015-01-30 20:37:14 +01:00
|
|
|
CuAssertStrEquals(tc, "plain (0,0", buffer);
|
|
|
|
CuAssertIntEquals(tc, 0x7d, buffer[11]);
|
2012-05-29 08:31:46 +02:00
|
|
|
}
|
|
|
|
|
2014-08-24 23:36:06 +02:00
|
|
|
static void test_seen_faction(CuTest *tc) {
|
|
|
|
faction *f1, *f2;
|
|
|
|
race *rc = test_create_race("human");
|
|
|
|
f1 = test_create_faction(rc);
|
|
|
|
f2 = test_create_faction(rc);
|
|
|
|
add_seen_faction(f1, f2);
|
|
|
|
CuAssertPtrEquals(tc, f2, ql_get(f1->seen_factions, 0));
|
|
|
|
CuAssertIntEquals(tc, 1, ql_length(f1->seen_factions));
|
|
|
|
add_seen_faction(f1, f2);
|
|
|
|
CuAssertIntEquals(tc, 1, ql_length(f1->seen_factions));
|
|
|
|
add_seen_faction(f1, f1);
|
|
|
|
CuAssertIntEquals(tc, 2, ql_length(f1->seen_factions));
|
|
|
|
f2 = (faction *)ql_get(f1->seen_factions, 1);
|
|
|
|
f1 = (faction *)ql_get(f1->seen_factions, 0);
|
2015-01-30 20:37:14 +01:00
|
|
|
CuAssertTrue(tc, f1->no < f2->no);
|
2014-08-24 23:36:06 +02:00
|
|
|
}
|
|
|
|
|
2015-05-19 08:26:44 +02:00
|
|
|
static void test_write_spaces(CuTest *tc) {
|
|
|
|
stream out = { 0 };
|
|
|
|
char buf[1024];
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
mstream_init(&out);
|
|
|
|
write_spaces(&out, 4);
|
|
|
|
out.api->rewind(out.handle);
|
|
|
|
len = out.api->read(out.handle, buf, sizeof(buf));
|
|
|
|
buf[len] = '\0';
|
|
|
|
CuAssertStrEquals(tc, " ", buf);
|
|
|
|
CuAssertIntEquals(tc, ' ', buf[3]);
|
|
|
|
mstream_done(&out);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_write_many_spaces(CuTest *tc) {
|
|
|
|
stream out = { 0 };
|
|
|
|
char buf[1024];
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
mstream_init(&out);
|
|
|
|
write_spaces(&out, 100);
|
|
|
|
out.api->rewind(out.handle);
|
|
|
|
len = out.api->read(out.handle, buf, sizeof(buf));
|
|
|
|
buf[len] = '\0';
|
|
|
|
CuAssertIntEquals(tc, 100, (int)len);
|
|
|
|
CuAssertIntEquals(tc, ' ', buf[99]);
|
|
|
|
mstream_done(&out);
|
|
|
|
}
|
|
|
|
|
2015-05-20 18:05:25 +02:00
|
|
|
static void test_sparagraph(CuTest *tc) {
|
|
|
|
strlist *sp = 0;
|
|
|
|
split_paragraph(&sp, "Hello World", 0, 16, 0);
|
|
|
|
CuAssertPtrNotNull(tc, sp);
|
|
|
|
CuAssertStrEquals(tc, "Hello World", sp->s);
|
|
|
|
CuAssertPtrEquals(tc, 0, sp->next);
|
|
|
|
split_paragraph(&sp, "Hello World", 4, 16, 0);
|
|
|
|
CuAssertPtrNotNull(tc, sp);
|
|
|
|
CuAssertStrEquals(tc, " Hello World", sp->s);
|
|
|
|
CuAssertPtrEquals(tc, 0, sp->next);
|
|
|
|
split_paragraph(&sp, "Hello World", 4, 16, '*');
|
|
|
|
CuAssertPtrNotNull(tc, sp);
|
|
|
|
CuAssertStrEquals(tc, " * Hello World", sp->s);
|
|
|
|
CuAssertPtrEquals(tc, 0, sp->next);
|
|
|
|
split_paragraph(&sp, "12345678 90 12345678", 0, 8, '*');
|
|
|
|
CuAssertPtrNotNull(tc, sp);
|
|
|
|
CuAssertStrEquals(tc, "12345678", sp->s);
|
|
|
|
CuAssertPtrNotNull(tc, sp->next);
|
|
|
|
CuAssertStrEquals(tc, "90", sp->next->s);
|
|
|
|
CuAssertPtrNotNull(tc, sp->next->next);
|
|
|
|
CuAssertStrEquals(tc, "12345678", sp->next->next->s);
|
|
|
|
CuAssertPtrEquals(tc, 0, sp->next->next->next);
|
|
|
|
}
|
|
|
|
|
2015-08-05 14:45:46 +02:00
|
|
|
static void test_cr_unit(CuTest *tc) {
|
|
|
|
stream strm;
|
|
|
|
char line[1024];
|
|
|
|
faction *f;
|
|
|
|
region *r;
|
|
|
|
unit *u;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
f = test_create_faction(0);
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
u = test_create_unit(f, r);
|
|
|
|
renumber_unit(u, 1234);
|
|
|
|
|
|
|
|
mstream_init(&strm);
|
|
|
|
cr_output_unit(&strm, r, f, u, see_unit);
|
|
|
|
strm.api->rewind(strm.handle);
|
|
|
|
CuAssertIntEquals(tc, 0, strm.api->readln(strm.handle, line, sizeof(line)));
|
|
|
|
CuAssertStrEquals(tc, line, "EINHEIT 1234");
|
|
|
|
mstream_done(&strm);
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2012-05-17 21:23:25 +02:00
|
|
|
CuSuite *get_reports_suite(void)
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
CuSuite *suite = CuSuiteNew();
|
2015-08-05 14:45:46 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_cr_unit);
|
2015-01-30 20:37:14 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_reorder_units);
|
|
|
|
SUITE_ADD_TEST(suite, test_seen_faction);
|
|
|
|
SUITE_ADD_TEST(suite, test_regionid);
|
2015-05-19 08:26:44 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_write_spaces);
|
|
|
|
SUITE_ADD_TEST(suite, test_write_many_spaces);
|
2015-05-20 18:05:25 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_sparagraph);
|
2015-01-30 20:37:14 +01:00
|
|
|
return suite;
|
2012-05-17 21:23:25 +02:00
|
|
|
}
|