forked from github/server
convert another test to read_/write_game
This commit is contained in:
parent
3c272fd53f
commit
63408501b9
|
@ -1540,8 +1540,8 @@ int read_game(gamedata *data) {
|
||||||
global.data_turn = turn;
|
global.data_turn = turn;
|
||||||
log_debug(" - reading turn %d\n", turn);
|
log_debug(" - reading turn %d\n", turn);
|
||||||
rng_init(turn);
|
rng_init(turn);
|
||||||
READ_INT(store, &nread); /* max_unique_id = ignore */
|
READ_INT(store, NULL); /* max_unique_id = ignore */
|
||||||
READ_INT(store, &nextborder);
|
READ_INT(store, NULL);
|
||||||
|
|
||||||
/* Planes */
|
/* Planes */
|
||||||
planes = NULL;
|
planes = NULL;
|
||||||
|
@ -1619,7 +1619,7 @@ int read_game(gamedata *data) {
|
||||||
/* Regionen */
|
/* Regionen */
|
||||||
|
|
||||||
READ_INT(store, &nread);
|
READ_INT(store, &nread);
|
||||||
assert(nread < MAXREGIONS);
|
assert(nread < MAXREGIONS && nread>=0);
|
||||||
if (rmax < 0) {
|
if (rmax < 0) {
|
||||||
rmax = nread;
|
rmax = nread;
|
||||||
}
|
}
|
||||||
|
@ -1883,8 +1883,8 @@ int write_game(gamedata *data) {
|
||||||
WRITE_SECTION(store);
|
WRITE_SECTION(store);
|
||||||
|
|
||||||
WRITE_INT(store, turn);
|
WRITE_INT(store, turn);
|
||||||
WRITE_INT(store, 0 /*max_unique_id */);
|
WRITE_INT(store, 0 /* max_unique_id */);
|
||||||
WRITE_INT(store, nextborder);
|
WRITE_INT(store, 0 /* nextborder */);
|
||||||
|
|
||||||
/* Write planes */
|
/* Write planes */
|
||||||
WRITE_SECTION(store);
|
WRITE_SECTION(store);
|
||||||
|
|
|
@ -152,6 +152,11 @@ static void test_readwrite_dead_faction_group(CuTest *tc) {
|
||||||
static void test_readwrite_dead_faction_regionowner(CuTest *tc) {
|
static void test_readwrite_dead_faction_regionowner(CuTest *tc) {
|
||||||
faction *f;
|
faction *f;
|
||||||
region *r;
|
region *r;
|
||||||
|
gamedata data;
|
||||||
|
storage store;
|
||||||
|
|
||||||
|
mstream_init(&data.strm);
|
||||||
|
gamedata_init(&data, &store, RELEASE_VERSION);
|
||||||
|
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
config_set("rules.region_owners", "1");
|
config_set("rules.region_owners", "1");
|
||||||
|
@ -161,10 +166,13 @@ static void test_readwrite_dead_faction_regionowner(CuTest *tc) {
|
||||||
destroyfaction(&factions);
|
destroyfaction(&factions);
|
||||||
CuAssertTrue(tc, !f->_alive);
|
CuAssertTrue(tc, !f->_alive);
|
||||||
remove_empty_units();
|
remove_empty_units();
|
||||||
writegame("test.dat");
|
write_game(&data);
|
||||||
free_gamedata();
|
free_gamedata();
|
||||||
f = NULL;
|
f = NULL;
|
||||||
readgame("test.dat", false);
|
data.strm.api->rewind(data.strm.handle);
|
||||||
|
read_game(&data);
|
||||||
|
mstream_done(&data.strm);
|
||||||
|
gamedata_done(&data);
|
||||||
f = factions;
|
f = factions;
|
||||||
CuAssertPtrEquals(tc, 0, f);
|
CuAssertPtrEquals(tc, 0, f);
|
||||||
r = regions;
|
r = regions;
|
||||||
|
|
Loading…
Reference in New Issue