test-galaxy.cpp 4.5 KB

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