forked from github/server
351 lines
10 KiB
C
351 lines
10 KiB
C
#include <platform.h>
|
|
#include <kernel/config.h>
|
|
#include "order.h"
|
|
|
|
#include <kernel/skills.h>
|
|
|
|
#include <util/parser.h>
|
|
#include <util/language.h>
|
|
|
|
#include <tests.h>
|
|
#include <CuTest.h>
|
|
#include <stdlib.h>
|
|
|
|
static void test_create_order(CuTest *tc) {
|
|
char cmd[32];
|
|
order *ord;
|
|
struct locale * lang;
|
|
|
|
test_setup();
|
|
lang = test_create_locale();
|
|
|
|
ord = create_order(K_MOVE, lang, "NORTH");
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertStrEquals(tc, "move NORTH", get_command(ord, lang, cmd, sizeof(cmd)));
|
|
|
|
CuAssertIntEquals(tc, K_MOVE, init_order_depr(ord));
|
|
CuAssertStrEquals(tc, "NORTH", getstrtoken());
|
|
free_order(ord);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_parse_order(CuTest *tc) {
|
|
char cmd[32];
|
|
order *ord;
|
|
struct locale * lang;
|
|
|
|
test_setup();
|
|
lang = test_create_locale();
|
|
|
|
ord = parse_order("MOVE NORTH", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertIntEquals(tc, K_MOVE, ord->command);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertStrEquals(tc, "move NORTH", get_command(ord, lang, cmd, sizeof(cmd)));
|
|
|
|
CuAssertIntEquals(tc, K_MOVE, init_order_depr(ord));
|
|
CuAssertStrEquals(tc, "NORTH", getstrtoken());
|
|
free_order(ord);
|
|
|
|
ord = parse_order("!MOVE NORTH", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertTrue(tc, ord->id > 0);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_MOVE | CMD_QUIET, ord->command);
|
|
free_order(ord);
|
|
|
|
ord = parse_order("@MOVE NORTH", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertTrue(tc, ord->id > 0);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_MOVE | CMD_PERSIST, ord->command);
|
|
free_order(ord);
|
|
|
|
ord = parse_order("!@MOVE NORTH", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertTrue(tc, ord->id > 0);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_MOVE | CMD_PERSIST | CMD_QUIET, ord->command);
|
|
free_order(ord);
|
|
|
|
ord = parse_order("@!MOVE NORTH", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertTrue(tc, ord->id > 0);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_MOVE | CMD_PERSIST | CMD_QUIET, ord->command);
|
|
free_order(ord);
|
|
|
|
ord = parse_order(" !@MOVE NORTH", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertTrue(tc, ord->id > 0);
|
|
CuAssertIntEquals(tc, K_MOVE, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_MOVE | CMD_PERSIST | CMD_QUIET, ord->command);
|
|
free_order(ord);
|
|
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_parse_make(CuTest *tc) {
|
|
char cmd[32];
|
|
order *ord;
|
|
struct locale * lang;
|
|
|
|
test_cleanup();
|
|
lang = get_or_create_locale("en");
|
|
|
|
locale_setstring(lang, keyword(K_MAKE), "MAKE");
|
|
locale_setstring(lang, keyword(K_MAKETEMP), "MAKETEMP");
|
|
init_locale(lang);
|
|
ord = parse_order("M hurrdurr", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertIntEquals(tc, K_MAKE, getkeyword(ord));
|
|
CuAssertStrEquals(tc, "MAKE hurrdurr", get_command(ord, lang, cmd, sizeof(cmd)));
|
|
|
|
CuAssertIntEquals(tc, K_MAKE, init_order_depr(ord));
|
|
CuAssertStrEquals(tc, "hurrdurr", getstrtoken());
|
|
free_order(ord);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_parse_make_temp(CuTest *tc) {
|
|
char cmd[32];
|
|
order *ord;
|
|
struct locale * lang;
|
|
|
|
test_cleanup();
|
|
lang = get_or_create_locale("en");
|
|
locale_setstring(lang, keyword(K_MAKE), "MAKE");
|
|
locale_setstring(lang, keyword(K_MAKETEMP), "MAKETEMP");
|
|
locale_setstring(lang, parameters[P_TEMP], "TEMP");
|
|
init_locale(lang);
|
|
|
|
ord = parse_order("M T herp", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertIntEquals(tc, K_MAKETEMP, getkeyword(ord));
|
|
CuAssertStrEquals(tc, "MAKETEMP herp", get_command(ord, lang, cmd, sizeof(cmd)));
|
|
|
|
CuAssertIntEquals(tc, K_MAKETEMP, init_order_depr(ord));
|
|
CuAssertStrEquals(tc, "herp", getstrtoken());
|
|
free_order(ord);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_parse_maketemp(CuTest *tc) {
|
|
char cmd[32];
|
|
order *ord;
|
|
struct locale * lang;
|
|
|
|
test_cleanup();
|
|
|
|
lang = get_or_create_locale("en");
|
|
locale_setstring(lang, keyword(K_MAKE), "MAKE");
|
|
locale_setstring(lang, keyword(K_MAKETEMP), "MAKETEMP");
|
|
locale_setstring(lang, "TEMP", "TEMP");
|
|
init_locale(lang);
|
|
|
|
ord = parse_order("MAKET herp", lang);
|
|
CuAssertPtrNotNull(tc, ord);
|
|
CuAssertStrEquals(tc, "MAKETEMP herp", get_command(ord, lang, cmd, sizeof(cmd)));
|
|
CuAssertIntEquals(tc, K_MAKETEMP, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_MAKETEMP, init_order_depr(ord));
|
|
CuAssertStrEquals(tc, "herp", getstrtoken());
|
|
free_order(ord);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_init_order(CuTest *tc) {
|
|
order *ord;
|
|
struct locale * lang;
|
|
|
|
test_cleanup();
|
|
|
|
lang = get_or_create_locale("en");
|
|
ord = create_order(K_MAKETEMP, lang, "hurr durr");
|
|
CuAssertIntEquals(tc, K_MAKETEMP, init_order_depr(ord));
|
|
CuAssertStrEquals(tc, "hurr", getstrtoken());
|
|
CuAssertStrEquals(tc, "durr", getstrtoken());
|
|
free_order(ord);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_getstrtoken(CuTest *tc) {
|
|
init_tokens_str("hurr \"durr\" \"\" \'\'");
|
|
CuAssertStrEquals(tc, "hurr", getstrtoken());
|
|
CuAssertStrEquals(tc, "durr", getstrtoken());
|
|
CuAssertStrEquals(tc, "", getstrtoken());
|
|
CuAssertStrEquals(tc, "", getstrtoken());
|
|
CuAssertStrEquals(tc, 0, getstrtoken());
|
|
init_tokens_str(0);
|
|
CuAssertStrEquals(tc, 0, getstrtoken());
|
|
}
|
|
|
|
static void test_skip_token(CuTest *tc) {
|
|
init_tokens_str("hurr \"durr\"");
|
|
skip_token();
|
|
CuAssertStrEquals(tc, "durr", getstrtoken());
|
|
CuAssertStrEquals(tc, 0, getstrtoken());
|
|
}
|
|
|
|
static void test_replace_order(CuTest *tc) {
|
|
order *orders = 0, *orig, *repl;
|
|
struct locale * lang;
|
|
|
|
test_cleanup();
|
|
lang = test_create_locale();
|
|
orig = create_order(K_MAKE, lang, NULL);
|
|
repl = create_order(K_ALLY, lang, NULL);
|
|
replace_order(&orders, orig, repl);
|
|
CuAssertPtrEquals(tc, 0, orders);
|
|
orders = orig;
|
|
replace_order(&orders, orig, repl);
|
|
CuAssertPtrNotNull(tc, orders);
|
|
CuAssertPtrEquals(tc, 0, orders->next);
|
|
CuAssertIntEquals(tc, getkeyword(repl), getkeyword(orders));
|
|
free_order(orders);
|
|
free_order(repl);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_get_command(CuTest *tc) {
|
|
struct locale * lang;
|
|
order *ord;
|
|
char buf[64];
|
|
|
|
test_setup();
|
|
lang = test_create_locale();
|
|
ord = create_order(K_MAKE, lang, "iron");
|
|
CuAssertStrEquals(tc, "make iron", get_command(ord, lang, buf, sizeof(buf)));
|
|
ord->command |= CMD_QUIET;
|
|
CuAssertStrEquals(tc, "!make iron", get_command(ord, lang, buf, sizeof(buf)));
|
|
ord->command |= CMD_PERSIST;
|
|
CuAssertStrEquals(tc, "!@make iron", get_command(ord, lang, buf, sizeof(buf)));
|
|
ord->command = K_MAKE | CMD_PERSIST;
|
|
CuAssertStrEquals(tc, "@make iron", get_command(ord, lang, buf, sizeof(buf)));
|
|
free_order(ord);
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_is_persistent(CuTest *tc) {
|
|
order *ord;
|
|
struct locale *lang;
|
|
|
|
test_setup();
|
|
lang = test_create_locale();
|
|
|
|
ord = parse_order("@invalid", lang);
|
|
CuAssertPtrEquals(tc, NULL, ord);
|
|
|
|
ord = parse_order("give", lang);
|
|
CuAssertIntEquals(tc, K_GIVE, ord->command);
|
|
CuAssertTrue(tc, !is_persistent(ord));
|
|
free_order(ord);
|
|
|
|
ord = parse_order("@give", lang);
|
|
CuAssertTrue(tc, !is_repeated(K_GIVE));
|
|
CuAssertIntEquals(tc, K_GIVE | CMD_PERSIST, ord->command);
|
|
CuAssertTrue(tc, is_persistent(ord));
|
|
free_order(ord);
|
|
|
|
ord = parse_order("make", lang);
|
|
CuAssertTrue(tc, is_repeated(K_MAKE));
|
|
CuAssertIntEquals(tc, K_MAKE , ord->command);
|
|
CuAssertTrue(tc, is_persistent(ord));
|
|
free_order(ord);
|
|
|
|
ord = parse_order("@move", lang);
|
|
CuAssertIntEquals(tc, K_MOVE | CMD_PERSIST, ord->command);
|
|
CuAssertTrue(tc, !is_persistent(ord));
|
|
free_order(ord);
|
|
|
|
ord = parse_order("// comment", lang);
|
|
CuAssertTrue(tc, is_persistent(ord));
|
|
CuAssertIntEquals(tc, K_KOMMENTAR, ord->command);
|
|
free_order(ord);
|
|
|
|
test_cleanup();
|
|
}
|
|
|
|
|
|
static void test_is_silent(CuTest *tc) {
|
|
order *ord;
|
|
struct locale *lang;
|
|
|
|
test_setup();
|
|
lang = test_create_locale();
|
|
|
|
ord = parse_order("make", lang);
|
|
CuAssertIntEquals(tc, K_MAKE, ord->command);
|
|
CuAssertTrue(tc, !is_silent(ord));
|
|
free_order(ord);
|
|
|
|
ord = parse_order("!make", lang);
|
|
CuAssertIntEquals(tc, K_MAKE | CMD_QUIET, ord->command);
|
|
CuAssertTrue(tc, is_silent(ord));
|
|
free_order(ord);
|
|
|
|
ord = parse_order("@invalid", lang);
|
|
CuAssertPtrEquals(tc, NULL, ord);
|
|
|
|
ord = parse_order("// comment", lang);
|
|
CuAssertTrue(tc, is_persistent(ord));
|
|
CuAssertIntEquals(tc, K_KOMMENTAR, ord->command);
|
|
free_order(ord);
|
|
|
|
test_cleanup();
|
|
}
|
|
|
|
static void test_study_orders(CuTest *tc) {
|
|
order *ord;
|
|
struct locale *lang;
|
|
const char *s;
|
|
char token[16];
|
|
|
|
test_setup();
|
|
lang = test_create_locale();
|
|
|
|
ord = create_order(K_STUDY, lang, skillname(SK_CROSSBOW, lang));
|
|
CuAssertIntEquals(tc, K_STUDY, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_STUDY, init_order(ord, lang));
|
|
s = gettoken(token, sizeof(token));
|
|
CuAssertStrEquals(tc, skillname(SK_CROSSBOW, lang), s);
|
|
CuAssertPtrEquals(tc, NULL, (void *)getstrtoken());
|
|
free_order(ord);
|
|
|
|
ord = create_order(K_STUDY, lang, skillname(SK_MAGIC, lang));
|
|
CuAssertIntEquals(tc, K_STUDY, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_STUDY, init_order(ord, lang));
|
|
s = gettoken(token, sizeof(token));
|
|
CuAssertStrEquals(tc, skillname(SK_MAGIC, lang), s);
|
|
CuAssertPtrEquals(tc, NULL, (void *)getstrtoken());
|
|
free_order(ord);
|
|
|
|
ord = create_order(K_STUDY, lang, "%s 100", skillname(SK_MAGIC, lang));
|
|
CuAssertIntEquals(tc, K_STUDY, getkeyword(ord));
|
|
CuAssertIntEquals(tc, K_STUDY, init_order(ord, lang));
|
|
s = gettoken(token, sizeof(token));
|
|
CuAssertStrEquals(tc, skillname(SK_MAGIC, lang), s);
|
|
CuAssertIntEquals(tc, 100, getint());
|
|
free_order(ord);
|
|
|
|
test_cleanup();
|
|
}
|
|
|
|
CuSuite *get_order_suite(void)
|
|
{
|
|
CuSuite *suite = CuSuiteNew();
|
|
SUITE_ADD_TEST(suite, test_create_order);
|
|
SUITE_ADD_TEST(suite, test_study_orders);
|
|
SUITE_ADD_TEST(suite, test_parse_order);
|
|
SUITE_ADD_TEST(suite, test_parse_make);
|
|
SUITE_ADD_TEST(suite, test_parse_make_temp);
|
|
SUITE_ADD_TEST(suite, test_parse_maketemp);
|
|
SUITE_ADD_TEST(suite, test_init_order);
|
|
SUITE_ADD_TEST(suite, test_replace_order);
|
|
SUITE_ADD_TEST(suite, test_skip_token);
|
|
SUITE_ADD_TEST(suite, test_getstrtoken);
|
|
SUITE_ADD_TEST(suite, test_get_command);
|
|
SUITE_ADD_TEST(suite, test_is_persistent);
|
|
SUITE_ADD_TEST(suite, test_is_silent);
|
|
return suite;
|
|
}
|