|
@@ -14,7 +14,7 @@ namespace {
|
|
|
|
|
|
std::map<int, const char *> port_classes = {{1, "BBS"}, {2, "BSB"}, {3, "SBB"},
|
|
|
{4, "SSB"}, {5, "SBS"}, {6, "BSS"},
|
|
|
- {7, "SSS"}, {8, "BBB"}};
|
|
|
+ {7, "SSS"}, {8, "BBB"}, {9, "BBB"}};
|
|
|
|
|
|
/* From Galaxy.py
|
|
|
PORT_CLASSES = {
|
|
@@ -29,7 +29,7 @@ PORT_CLASSES = {
|
|
|
}*/
|
|
|
|
|
|
TEST(ports, get_buysell) {
|
|
|
- for (int type = 1; type < 9; ++type) {
|
|
|
+ for (int type = 1; type < 10; ++type) {
|
|
|
buysell expected;
|
|
|
const char *flags;
|
|
|
|
|
@@ -38,12 +38,13 @@ TEST(ports, get_buysell) {
|
|
|
expected.foe[x] = flags[x] == 'B';
|
|
|
buysell result = get_buysell(type);
|
|
|
for (int x = 0; x < 3; ++x)
|
|
|
- EXPECT_EQ(result.foe[x], expected.foe[x]) << "type: " << type << " pos: " << x;
|
|
|
+ EXPECT_EQ(result.foe[x], expected.foe[x])
|
|
|
+ << "type: " << type << " pos: " << x;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
TEST(ports, text_from_type) {
|
|
|
- for (int type = 1; type < 9; ++type) {
|
|
|
+ for (int type = 1; type < 10; ++type) {
|
|
|
buysell_text expected;
|
|
|
const char *flags;
|
|
|
|
|
@@ -56,7 +57,7 @@ TEST(ports, text_from_type) {
|
|
|
}
|
|
|
|
|
|
TEST(ports, text_from_buysell) {
|
|
|
- for (int type = 1; type < 9; ++type) {
|
|
|
+ for (int type = 1; type < 10; ++type) {
|
|
|
buysell source = get_buysell(type);
|
|
|
buysell_text expected;
|
|
|
const char *flags;
|
|
@@ -126,14 +127,16 @@ TEST(ports, parse_portcim) {
|
|
|
|
|
|
for (auto testdata : data) {
|
|
|
port parse = parse_portcim(testdata.first);
|
|
|
- EXPECT_EQ((int)parse.sector, (int)testdata.second.sector) << "Text: [" << testdata.first << "]";
|
|
|
- if (parse.sector != 0) {
|
|
|
+ EXPECT_EQ((int)parse.sector, (int)testdata.second.sector)
|
|
|
+ << "Text: [" << testdata.first << "]";
|
|
|
+ if (parse.sector != 0) {
|
|
|
EXPECT_EQ(parse.type, testdata.second.type);
|
|
|
for (int x = 0; x < 3; ++x) {
|
|
|
- EXPECT_EQ(parse.amount[x], testdata.second.amount[x]) << "Sector:" << parse.sector;
|
|
|
- EXPECT_EQ(parse.percent[x], testdata.second.percent[x]) << "Sector:" << parse.sector;
|
|
|
+ EXPECT_EQ(parse.amount[x], testdata.second.amount[x])
|
|
|
+ << "Sector:" << parse.sector;
|
|
|
+ EXPECT_EQ(parse.percent[x], testdata.second.percent[x])
|
|
|
+ << "Sector:" << parse.sector;
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
/*
|