test-galaxy.cpp 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. #include <array>
  2. #include <map>
  3. #include <string>
  4. #include <vector>
  5. #include "galaxy.h"
  6. #include "gtest/gtest.h"
  7. /*
  8. How can I add logging, but not really add/use it?
  9. */
  10. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  11. namespace {
  12. std::map<int, const char *> port_classes = {{1, "BBS"}, {2, "BSB"}, {3, "SBB"},
  13. {4, "SSB"}, {5, "SBS"}, {6, "BSS"},
  14. {7, "SSS"}, {8, "BBB"}, {9, "BBB"}};
  15. /* From Galaxy.py
  16. PORT_CLASSES = {
  17. 1: "BBS",
  18. 2: "BSB",
  19. 3: "SBB",
  20. 4: "SSB",
  21. 5: "SBS",
  22. 6: "BSS",
  23. 7: "SSS",
  24. 8: "BBB",
  25. }*/
  26. TEST(ports, get_buysell) {
  27. for (int type = 1; type < 10; ++type) {
  28. buysell expected;
  29. const char *flags;
  30. flags = port_classes[type];
  31. for (int x = 0; x < 3; ++x) expected.foe[x] = flags[x] == 'B';
  32. buysell result = get_buysell(type);
  33. for (int x = 0; x < 3; ++x)
  34. EXPECT_EQ(result.foe[x], expected.foe[x])
  35. << "type: " << type << " pos: " << x;
  36. }
  37. }
  38. TEST(ports, invert_buysell) {
  39. for (int type = 1; type < 10; ++type) {
  40. buysell expected;
  41. const char *flags;
  42. flags = port_classes[type];
  43. for (int x = 0; x < 3; ++x) expected.foe[x] = flags[x] != 'B';
  44. buysell result = get_buysell(type);
  45. buysell invert = invert_buysell(result);
  46. for (int x = 0; x < 3; ++x)
  47. EXPECT_EQ(invert.foe[x], expected.foe[x])
  48. << "type: " << type << " pos: " << x;
  49. }
  50. }
  51. TEST(ports, text_from_type) {
  52. for (int type = 1; type < 10; ++type) {
  53. buysell_text expected;
  54. const char *flags;
  55. flags = port_classes[type];
  56. for (int x = 0; x < 3; ++x) expected.txt[x] = flags[x];
  57. buysell_text result = text_from_type(type);
  58. EXPECT_EQ(result, expected) << "type: " << type;
  59. }
  60. }
  61. TEST(ports, text_from_buysell) {
  62. for (int type = 1; type < 10; ++type) {
  63. buysell source = get_buysell(type);
  64. buysell_text expected;
  65. const char *flags;
  66. flags = port_classes[type];
  67. for (int x = 0; x < 3; ++x) expected.txt[x] = flags[x];
  68. buysell_text result = text_from_buysell(source);
  69. EXPECT_EQ(result, expected) << "type: " << type;
  70. }
  71. }
  72. TEST(ports, type_from_buysell) {
  73. for (int type = 1; type < 9; ++type) {
  74. buysell source = get_buysell(type);
  75. int result = type_from_buysell(source);
  76. EXPECT_EQ(result, type) << "type: " << type;
  77. }
  78. }
  79. struct pair {
  80. int t1;
  81. int t2;
  82. friend bool operator<(const pair &lhs, const pair &rhs) {
  83. if (lhs.t1 == rhs.t1) {
  84. return lhs.t2 < rhs.t2;
  85. }
  86. return lhs.t1 < rhs.t1;
  87. };
  88. friend bool operator==(const pair &lhs, const pair &rhs) {
  89. return (lhs.t1 == rhs.t1) && (lhs.t2 == rhs.t2);
  90. };
  91. };
  92. TEST(ports, trade_types) {
  93. std::map<pair, int> expected;
  94. for (int x = 0; x < 9; ++x) {
  95. pair p{x, x}; // ; p.t1 = x; p.t2 = 2;
  96. expected[p] = 0;
  97. }
  98. expected[pair{1, 2}] = 1;
  99. expected[pair{1, 4}] = 1;
  100. expected[pair{2, 5}] = 1;
  101. expected[pair{4, 5}] = 1;
  102. // I'm checking 0's and 1's.
  103. expected[pair{1, 3}] = 2;
  104. expected[pair{2, 3}] = 2;
  105. expected[pair{4, 6}] = 2;
  106. expected[pair{5, 6}] = 2;
  107. /*
  108. GTEST_COUT << "size:" << expected.size() << std::endl;
  109. for (auto const & i : expected ) {
  110. GTEST_COUT << i.first.t1 << "," << i.first.t2 << " :" << i.second <<
  111. std::endl;
  112. }
  113. GTEST_COUT << "Done!" << std::endl;
  114. */
  115. for (int p1 = 1; p1 <= 8; ++p1) {
  116. for (int p2 = p1; p2 <= 8; ++p2) {
  117. // GTEST_COUT << "Type " << p1 << " and " << p2 << std::endl;
  118. int t = trade_type(p1, p2);
  119. int t2 = trade_type(p2, p1);
  120. EXPECT_EQ(t, t2) << "Comparing reversed types";
  121. pair p{p1, p2};
  122. auto r = expected.find(p);
  123. if (r != expected.end()) {
  124. EXPECT_EQ(t, r->second) << "Comparision";
  125. } else {
  126. GTEST_COUT << "TODO: Need type for " << p1 << " " << text_from_type(p1)
  127. << " , " << p2 << " " << text_from_type(p2) << " : " << t
  128. << std::endl;
  129. }
  130. }
  131. }
  132. }
  133. TEST(ports, parse_portcim) {
  134. // This really needs to be checked against real lines from a log file
  135. // THis was copied directly from client (indentation may be off)
  136. std::map<std::string, port> data = {
  137. {" 2 - 2420 100% 612 35% - 2020 100% ", // BSB
  138. {2, 2, {2420, 612, 2020}, {100, 35, 100}}},
  139. {" 4 - 2880 100% - 275 23% 61 6% ", // BBS
  140. {4, 1, {2880, 275, 61}, {100, 23, 6}}},
  141. {" 6 - 820 100% 1952 89% - 2680 100% ", // BSB
  142. {6, 2, {820, 1952, 2680}, {100, 89, 100}}},
  143. {" 8 - 1000 100% - 855 85% - 1000 100% ", // BBB
  144. {8, 8, {1000, 855, 1000}, {100, 85, 100}}},
  145. {" 20 - 1708 97% - 710 56% 287 15% ", // BBS
  146. {20, 1, {1708, 710, 287}, {97, 56, 15}}},
  147. {" 23 - 2120 100% - 709 40% 1902 69% ", // BBS
  148. {23, 1, {2120, 709, 1902}, {100, 40, 69}}},
  149. {" 28 1511 98% - 478 29% 589 35% ", // SBS
  150. {28, 5, {1511, 478, 589}, {98, 29, 35}}},
  151. {" 29 913 56% - 970 100% - 1990 100% ", // SBB
  152. {29, 3, {913, 970, 1990}, {56, 100, 100}}}};
  153. /*
  154. // If you could make this a map or something better please improve
  155. std::vector<port> ports;
  156. ports.push_back( port{ 2, 2, {2420, 612, 2020}, {100,35,100} });
  157. struct port p;
  158. p.sector = 2;
  159. p.type = 2;
  160. p.amount[0] = 2420;
  161. p.amount[1] = 612;
  162. p.amount[2] = 2020;
  163. p.percent[0] = 100;
  164. p.percent[1] = 35;
  165. p.percent[2] = 100;
  166. ports.push_back(p);
  167. p.sector = 4;
  168. p.type = 1;
  169. p.amount[0] = 2880;
  170. p.amount[1] = 275;
  171. p.amount[2] = 61;
  172. p.percent[0] = 100;
  173. p.percent[1] = 23;
  174. p.percent[2] = 6;
  175. ports.push_back(p);
  176. */
  177. for (auto testdata : data) {
  178. port parse = parse_portcim(testdata.first);
  179. EXPECT_EQ((int)parse.sector, (int)testdata.second.sector)
  180. << "Text: [" << testdata.first << "]";
  181. if (parse.sector != 0) {
  182. EXPECT_EQ(parse.type, testdata.second.type);
  183. for (int x = 0; x < 3; ++x) {
  184. EXPECT_EQ(parse.amount[x], testdata.second.amount[x])
  185. << "Sector:" << parse.sector;
  186. EXPECT_EQ(parse.percent[x], testdata.second.percent[x])
  187. << "Sector:" << parse.sector;
  188. }
  189. }
  190. }
  191. /*
  192. port parse = parse_portcim(data[0]);
  193. EXPECT_EQ(parse.sector, 2 );
  194. EXPECT_EQ(parse.type, 2);
  195. EXPECT_EQ(parse.amount[0], 2420);
  196. EXPECT_EQ(parse.sector, ports[0].sector);
  197. EXPECT_EQ(parse.type, ports[0].type);
  198. */
  199. /*
  200. this can't work. trying to compare "pointers" .. that's why the numbers are
  201. huge: Expected equality of these values: parse.amount Which is: 0x7fffc5ef83f6
  202. ports[0].amount
  203. Which is: 0x5556513ddb94
  204. */
  205. // EXPECT_EQ(parse.amount, ports[0].amount);
  206. // EXPECT_EQ(parse.percent, ports[0].percent);
  207. }
  208. } // namespace