test-galaxy.cpp 4.5 KB

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