test-galaxy.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. #include "gtest/gtest.h"
  2. #include "galaxy.h"
  3. #include <array>
  4. #include <map>
  5. #include <string>
  6. #include <vector>
  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)
  32. expected.foe[x] = flags[x] == 'B';
  33. buysell result = get_buysell(type);
  34. for (int x = 0; x < 3; ++x)
  35. EXPECT_EQ(result.foe[x], expected.foe[x])
  36. << "type: " << type << " pos: " << x;
  37. }
  38. }
  39. TEST(ports, text_from_type) {
  40. for (int type = 1; type < 10; ++type) {
  41. buysell_text expected;
  42. const char *flags;
  43. flags = port_classes[type];
  44. for (int x = 0; x < 3; ++x)
  45. expected.txt[x] = flags[x];
  46. buysell_text result = text_from_type(type);
  47. EXPECT_EQ(result, expected) << "type: " << type;
  48. }
  49. }
  50. TEST(ports, text_from_buysell) {
  51. for (int type = 1; type < 10; ++type) {
  52. buysell source = get_buysell(type);
  53. buysell_text expected;
  54. const char *flags;
  55. flags = port_classes[type];
  56. for (int x = 0; x < 3; ++x)
  57. expected.txt[x] = flags[x];
  58. buysell_text result = text_from_buysell(source);
  59. EXPECT_EQ(result, expected) << "type: " << type;
  60. }
  61. }
  62. TEST(ports, type_from_buysell) {
  63. for (int type = 1; type < 9; ++type) {
  64. buysell source = get_buysell(type);
  65. int result = type_from_buysell(source);
  66. EXPECT_EQ(result, type) << "type: " << type;
  67. }
  68. }
  69. TEST(ports, parse_portcim) {
  70. // This really needs to be checked against real lines from a log file
  71. // THis was copied directly from client (indentation may be off)
  72. std::map<std::string, port> data = {
  73. {" 2 - 2420 100% 612 35% - 2020 100% ", // BSB
  74. {2, 2, {2420, 612, 2020}, {100, 35, 100}}},
  75. {" 4 - 2880 100% - 275 23% 61 6% ", // BBS
  76. {4, 1, {2880, 275, 61}, {100, 23, 6}}},
  77. {" 6 - 820 100% 1952 89% - 2680 100% ", // BSB
  78. {6, 2, {820, 1952, 2680}, {100, 89, 100}}},
  79. {" 8 - 1000 100% - 855 85% - 1000 100% ", // BBB
  80. {8, 8, {1000, 855, 1000}, {100, 85, 100}}},
  81. {" 20 - 1708 97% - 710 56% 287 15% ", // BBS
  82. {20, 1, {1708, 710, 287}, {97, 56, 15}}},
  83. {" 23 - 2120 100% - 709 40% 1902 69% ", // BBS
  84. {23, 1, {2120, 709, 1902}, {100, 40, 69}}},
  85. {" 28 1511 98% - 478 29% 589 35% ", // SBS
  86. {28, 5, {1511, 478, 589}, {98, 29, 35}}},
  87. {" 29 913 56% - 970 100% - 1990 100% ", // SBB
  88. {29, 3, {913, 970, 1990}, {56, 100, 100}}}};
  89. /*
  90. // If you could make this a map or something better please improve
  91. std::vector<port> ports;
  92. ports.push_back( port{ 2, 2, {2420, 612, 2020}, {100,35,100} });
  93. struct port p;
  94. p.sector = 2;
  95. p.type = 2;
  96. p.amount[0] = 2420;
  97. p.amount[1] = 612;
  98. p.amount[2] = 2020;
  99. p.percent[0] = 100;
  100. p.percent[1] = 35;
  101. p.percent[2] = 100;
  102. ports.push_back(p);
  103. p.sector = 4;
  104. p.type = 1;
  105. p.amount[0] = 2880;
  106. p.amount[1] = 275;
  107. p.amount[2] = 61;
  108. p.percent[0] = 100;
  109. p.percent[1] = 23;
  110. p.percent[2] = 6;
  111. ports.push_back(p);
  112. */
  113. for (auto testdata : data) {
  114. port parse = parse_portcim(testdata.first);
  115. EXPECT_EQ((int)parse.sector, (int)testdata.second.sector)
  116. << "Text: [" << testdata.first << "]";
  117. if (parse.sector != 0) {
  118. EXPECT_EQ(parse.type, testdata.second.type);
  119. for (int x = 0; x < 3; ++x) {
  120. EXPECT_EQ(parse.amount[x], testdata.second.amount[x])
  121. << "Sector:" << parse.sector;
  122. EXPECT_EQ(parse.percent[x], testdata.second.percent[x])
  123. << "Sector:" << parse.sector;
  124. }
  125. }
  126. }
  127. /*
  128. port parse = parse_portcim(data[0]);
  129. EXPECT_EQ(parse.sector, 2 );
  130. EXPECT_EQ(parse.type, 2);
  131. EXPECT_EQ(parse.amount[0], 2420);
  132. EXPECT_EQ(parse.sector, ports[0].sector);
  133. EXPECT_EQ(parse.type, ports[0].type);
  134. */
  135. /*
  136. this can't work. trying to compare "pointers" .. that's why the numbers are
  137. huge: Expected equality of these values: parse.amount Which is: 0x7fffc5ef83f6
  138. ports[0].amount
  139. Which is: 0x5556513ddb94
  140. */
  141. // EXPECT_EQ(parse.amount, ports[0].amount);
  142. // EXPECT_EQ(parse.percent, ports[0].percent);
  143. }
  144. } // namespace