test-galaxy.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. /*
  104. GTEST_COUT << "size:" << expected.size() << std::endl;
  105. for (auto const & i : expected ) {
  106. GTEST_COUT << i.first.t1 << "," << i.first.t2 << " :" << i.second <<
  107. std::endl;
  108. }
  109. GTEST_COUT << "Done!" << std::endl;
  110. */
  111. for (int p1 = 1; p1 <= 8; ++p1) {
  112. for (int p2 = p1; p2 <= 8; ++p2) {
  113. GTEST_COUT << "Type " << p1 << " and " << p2 << std::endl;
  114. int t = trade_type(p1, p2);
  115. int t2 = trade_type(p2, p1);
  116. EXPECT_EQ(t, t2) << "Comparing reversed types";
  117. pair p{p1, p2};
  118. auto r = expected.find(p);
  119. if (r != expected.end()) {
  120. EXPECT_EQ(t, r->second) << "Comparision";
  121. } else {
  122. GTEST_COUT << "TODO: Need type for " << p1 << " , " << p2 << " : " << t
  123. << std::endl;
  124. }
  125. }
  126. }
  127. }
  128. TEST(ports, parse_portcim) {
  129. // This really needs to be checked against real lines from a log file
  130. // THis was copied directly from client (indentation may be off)
  131. std::map<std::string, port> data = {
  132. {" 2 - 2420 100% 612 35% - 2020 100% ", // BSB
  133. {2, 2, {2420, 612, 2020}, {100, 35, 100}}},
  134. {" 4 - 2880 100% - 275 23% 61 6% ", // BBS
  135. {4, 1, {2880, 275, 61}, {100, 23, 6}}},
  136. {" 6 - 820 100% 1952 89% - 2680 100% ", // BSB
  137. {6, 2, {820, 1952, 2680}, {100, 89, 100}}},
  138. {" 8 - 1000 100% - 855 85% - 1000 100% ", // BBB
  139. {8, 8, {1000, 855, 1000}, {100, 85, 100}}},
  140. {" 20 - 1708 97% - 710 56% 287 15% ", // BBS
  141. {20, 1, {1708, 710, 287}, {97, 56, 15}}},
  142. {" 23 - 2120 100% - 709 40% 1902 69% ", // BBS
  143. {23, 1, {2120, 709, 1902}, {100, 40, 69}}},
  144. {" 28 1511 98% - 478 29% 589 35% ", // SBS
  145. {28, 5, {1511, 478, 589}, {98, 29, 35}}},
  146. {" 29 913 56% - 970 100% - 1990 100% ", // SBB
  147. {29, 3, {913, 970, 1990}, {56, 100, 100}}}};
  148. /*
  149. // If you could make this a map or something better please improve
  150. std::vector<port> ports;
  151. ports.push_back( port{ 2, 2, {2420, 612, 2020}, {100,35,100} });
  152. struct port p;
  153. p.sector = 2;
  154. p.type = 2;
  155. p.amount[0] = 2420;
  156. p.amount[1] = 612;
  157. p.amount[2] = 2020;
  158. p.percent[0] = 100;
  159. p.percent[1] = 35;
  160. p.percent[2] = 100;
  161. ports.push_back(p);
  162. p.sector = 4;
  163. p.type = 1;
  164. p.amount[0] = 2880;
  165. p.amount[1] = 275;
  166. p.amount[2] = 61;
  167. p.percent[0] = 100;
  168. p.percent[1] = 23;
  169. p.percent[2] = 6;
  170. ports.push_back(p);
  171. */
  172. for (auto testdata : data) {
  173. port parse = parse_portcim(testdata.first);
  174. EXPECT_EQ((int)parse.sector, (int)testdata.second.sector)
  175. << "Text: [" << testdata.first << "]";
  176. if (parse.sector != 0) {
  177. EXPECT_EQ(parse.type, testdata.second.type);
  178. for (int x = 0; x < 3; ++x) {
  179. EXPECT_EQ(parse.amount[x], testdata.second.amount[x])
  180. << "Sector:" << parse.sector;
  181. EXPECT_EQ(parse.percent[x], testdata.second.percent[x])
  182. << "Sector:" << parse.sector;
  183. }
  184. }
  185. }
  186. /*
  187. port parse = parse_portcim(data[0]);
  188. EXPECT_EQ(parse.sector, 2 );
  189. EXPECT_EQ(parse.type, 2);
  190. EXPECT_EQ(parse.amount[0], 2420);
  191. EXPECT_EQ(parse.sector, ports[0].sector);
  192. EXPECT_EQ(parse.type, ports[0].type);
  193. */
  194. /*
  195. this can't work. trying to compare "pointers" .. that's why the numbers are
  196. huge: Expected equality of these values: parse.amount Which is: 0x7fffc5ef83f6
  197. ports[0].amount
  198. Which is: 0x5556513ddb94
  199. */
  200. // EXPECT_EQ(parse.amount, ports[0].amount);
  201. // EXPECT_EQ(parse.percent, ports[0].percent);
  202. }
  203. } // namespace