forked from github/server
some examples for how the new orderfile logic can be used to write unit tests.
This commit is contained in:
parent
c2634bd095
commit
703c6c0385
|
@ -218,6 +218,7 @@ set(TESTS_SRC
|
||||||
monsters.test.c
|
monsters.test.c
|
||||||
move.test.c
|
move.test.c
|
||||||
names.test.c
|
names.test.c
|
||||||
|
orderfile.test.c
|
||||||
piracy.test.c
|
piracy.test.c
|
||||||
prefix.test.c
|
prefix.test.c
|
||||||
renumber.test.c
|
renumber.test.c
|
||||||
|
|
|
@ -18,8 +18,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
static unit *unitorders(input *in, faction *f)
|
||||||
static unit *unitorders(FILE * F, int enc, struct faction *f)
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
unit *u;
|
unit *u;
|
||||||
|
@ -64,7 +63,7 @@ static unit *unitorders(FILE * F, int enc, struct faction *f)
|
||||||
* eingegeben wurde, checken wir, ob nun eine neue
|
* eingegeben wurde, checken wir, ob nun eine neue
|
||||||
* Einheit oder ein neuer Spieler drankommt */
|
* Einheit oder ein neuer Spieler drankommt */
|
||||||
|
|
||||||
s = getbuf(F, enc);
|
s = in->getbuf(in->data);
|
||||||
if (s == NULL)
|
if (s == NULL)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -147,23 +146,14 @@ static faction *factionorders(void)
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
|
||||||
int readorders(const char *filename)
|
int read_orders(input *in)
|
||||||
{
|
{
|
||||||
FILE *F = NULL;
|
|
||||||
const char *b;
|
const char *b;
|
||||||
int nfactions = 0;
|
int nfactions = 0;
|
||||||
int enc_gamedata = ENCODING_UTF8;
|
|
||||||
struct faction *f = NULL;
|
struct faction *f = NULL;
|
||||||
|
|
||||||
F = fopen(filename, "r");
|
|
||||||
if (!F) {
|
|
||||||
perror(filename);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
log_info("reading orders from %s", filename);
|
|
||||||
|
|
||||||
/* TODO: recognize UTF8 BOM */
|
/* TODO: recognize UTF8 BOM */
|
||||||
b = getbuf(F, enc_gamedata);
|
b = in->getbuf(in->data);
|
||||||
|
|
||||||
/* Auffinden der ersten Partei, und danach abarbeiten bis zur letzten
|
/* Auffinden der ersten Partei, und danach abarbeiten bis zur letzten
|
||||||
* Partei */
|
* Partei */
|
||||||
|
@ -184,7 +174,7 @@ int readorders(const char *filename)
|
||||||
++nfactions;
|
++nfactions;
|
||||||
}
|
}
|
||||||
|
|
||||||
b = getbuf(F, enc_gamedata);
|
b = in->getbuf(in->data);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* in factionorders wird nur eine zeile gelesen:
|
/* in factionorders wird nur eine zeile gelesen:
|
||||||
|
@ -193,9 +183,9 @@ int readorders(const char *filename)
|
||||||
* vermerkt. */
|
* vermerkt. */
|
||||||
|
|
||||||
case P_UNIT:
|
case P_UNIT:
|
||||||
if (!f || !unitorders(F, enc_gamedata, f)) {
|
if (!f || !unitorders(in, f)) {
|
||||||
do {
|
do {
|
||||||
b = getbuf(F, enc_gamedata);
|
b = in->getbuf(in->data);
|
||||||
if (!b) {
|
if (!b) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -216,16 +206,40 @@ int readorders(const char *filename)
|
||||||
|
|
||||||
case P_NEXT:
|
case P_NEXT:
|
||||||
f = NULL;
|
f = NULL;
|
||||||
b = getbuf(F, enc_gamedata);
|
b = in->getbuf(in->data);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
b = getbuf(F, enc_gamedata);
|
b = in->getbuf(in->data);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fclose(F);
|
|
||||||
log_info("done reading orders for %d factions", nfactions);
|
log_info("done reading orders for %d factions", nfactions);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char * file_getbuf(void *data)
|
||||||
|
{
|
||||||
|
FILE *F = (FILE *)data;
|
||||||
|
return getbuf(F, ENCODING_UTF8);
|
||||||
|
}
|
||||||
|
|
||||||
|
int readorders(const char *filename)
|
||||||
|
{
|
||||||
|
input in;
|
||||||
|
int result;
|
||||||
|
|
||||||
|
FILE *F = NULL;
|
||||||
|
F = fopen(filename, "r");
|
||||||
|
if (!F) {
|
||||||
|
perror(filename);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
log_info("reading orders from %s", filename);
|
||||||
|
in.getbuf = file_getbuf;
|
||||||
|
in.data = F;
|
||||||
|
result = read_orders(&in);
|
||||||
|
fclose(F);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
|
@ -7,6 +7,12 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
typedef struct input {
|
||||||
|
const char *(*getbuf)(void *data);
|
||||||
|
void *data;
|
||||||
|
} input;
|
||||||
|
|
||||||
|
int read_orders(struct input *in);
|
||||||
int readorders(const char *filename);
|
int readorders(const char *filename);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -0,0 +1,91 @@
|
||||||
|
#include <platform.h>
|
||||||
|
#include <kernel/config.h>
|
||||||
|
|
||||||
|
#include "orderfile.h"
|
||||||
|
|
||||||
|
#include <kernel/faction.h>
|
||||||
|
|
||||||
|
#include <CuTest.h>
|
||||||
|
#include <tests.h>
|
||||||
|
|
||||||
|
static const char *getbuf_null(void *data)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_read_orders(CuTest *tc) {
|
||||||
|
input in;
|
||||||
|
test_setup();
|
||||||
|
in.getbuf = getbuf_null;
|
||||||
|
in.data = NULL;
|
||||||
|
CuAssertIntEquals(tc, 0, read_orders(&in));
|
||||||
|
test_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
typedef struct order_list {
|
||||||
|
const char *orders[8];
|
||||||
|
int next;
|
||||||
|
} order_list;
|
||||||
|
|
||||||
|
static const char *getbuf_list(void *data)
|
||||||
|
{
|
||||||
|
order_list * olist = (order_list *)data;
|
||||||
|
if (olist->next >= 8) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
return olist->orders[olist->next++];
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_faction_password_okay(CuTest *tc) {
|
||||||
|
input in;
|
||||||
|
faction *f;
|
||||||
|
order_list olist;
|
||||||
|
|
||||||
|
test_setup();
|
||||||
|
f = test_create_faction(NULL);
|
||||||
|
renumber_faction(f, 1);
|
||||||
|
CuAssertIntEquals(tc, 1, f->no);
|
||||||
|
faction_setpassword(f, "password");
|
||||||
|
f->lastorders = turn - 1;
|
||||||
|
olist.orders[0] = "ERESSEA 1 password";
|
||||||
|
olist.orders[1] = NULL;
|
||||||
|
olist.next = 0;
|
||||||
|
in.getbuf = getbuf_list;
|
||||||
|
in.data = &olist;
|
||||||
|
CuAssertIntEquals(tc, 0, read_orders(&in));
|
||||||
|
CuAssertIntEquals(tc, 2, olist.next);
|
||||||
|
CuAssertIntEquals(tc, turn, f->lastorders);
|
||||||
|
test_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_faction_password_bad(CuTest *tc) {
|
||||||
|
input in;
|
||||||
|
faction *f;
|
||||||
|
order_list olist;
|
||||||
|
|
||||||
|
test_setup();
|
||||||
|
f = test_create_faction(NULL);
|
||||||
|
renumber_faction(f, 1);
|
||||||
|
CuAssertIntEquals(tc, 1, f->no);
|
||||||
|
faction_setpassword(f, "password");
|
||||||
|
f->lastorders = turn - 1;
|
||||||
|
olist.orders[0] = "ERESSEA 1 patzword";
|
||||||
|
olist.orders[1] = NULL;
|
||||||
|
olist.next = 0;
|
||||||
|
in.getbuf = getbuf_list;
|
||||||
|
in.data = &olist;
|
||||||
|
CuAssertIntEquals(tc, 0, read_orders(&in));
|
||||||
|
CuAssertIntEquals(tc, 2, olist.next);
|
||||||
|
CuAssertIntEquals(tc, turn - 1, f->lastorders);
|
||||||
|
test_cleanup();
|
||||||
|
}
|
||||||
|
|
||||||
|
CuSuite *get_orderfile_suite(void)
|
||||||
|
{
|
||||||
|
CuSuite *suite = CuSuiteNew();
|
||||||
|
SUITE_ADD_TEST(suite, test_read_orders);
|
||||||
|
SUITE_ADD_TEST(suite, test_faction_password_okay);
|
||||||
|
SUITE_ADD_TEST(suite, test_faction_password_bad);
|
||||||
|
|
||||||
|
return suite;
|
||||||
|
}
|
|
@ -132,6 +132,7 @@ int RunAllTests(int argc, char *argv[])
|
||||||
ADD_SUITE(monsters);
|
ADD_SUITE(monsters);
|
||||||
ADD_SUITE(move);
|
ADD_SUITE(move);
|
||||||
ADD_SUITE(names);
|
ADD_SUITE(names);
|
||||||
|
ADD_SUITE(orderfile);
|
||||||
ADD_SUITE(otherfaction);
|
ADD_SUITE(otherfaction);
|
||||||
ADD_SUITE(piracy);
|
ADD_SUITE(piracy);
|
||||||
ADD_SUITE(prefix);
|
ADD_SUITE(prefix);
|
||||||
|
|
Loading…
Reference in New Issue