test-director.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #include <array>
  2. #include <map>
  3. #include <string>
  4. #include <vector>
  5. #include "director.h"
  6. #include "galaxy.h"
  7. #include "gtest/gtest.h"
  8. /*
  9. How can I add logging, but not really add/use it?
  10. */
  11. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  12. namespace {
  13. TEST(director, director_debugging) {
  14. Director dir;
  15. std::vector<std::string> client;
  16. std::vector<std::string> server;
  17. dir.to_client = [&client](const std::string line) { client.push_back(line); };
  18. dir.to_server = [&server](const std::string line) { server.push_back(line); };
  19. // activating the game gets this over to dir.galaxy.username.
  20. dir.username = "test";
  21. // should I setup galaxy-N-test.yaml ? Probably yes.
  22. std::string lines[] = {
  23. "TradeWars Game Server Copyright (C) "
  24. "EIS",
  25. "Selection (? for menu): N",
  26. "Trade Wars 2002 Win32 module now loading.",
  27. " ==-- Trade Wars 2002 --==",
  28. "Enter your choice: ",
  29. "^Command [TL=00:00:00]:[2985] (?=Help)? :"};
  30. for (auto line : lines) {
  31. if (line[0] == '^') {
  32. dir.server_prompt(line.substr(1), line.substr(1));
  33. } else if (line[0] == '!') {
  34. // client input
  35. dir.client_input(line.substr(1));
  36. } else {
  37. dir.server_line(line, line);
  38. }
  39. }
  40. EXPECT_EQ(client[0],
  41. "\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  42. client.clear();
  43. dir.client_input("~");
  44. for (auto line : client) {
  45. GTEST_COUT << line << std::endl;
  46. }
  47. }
  48. TEST(director, director_galaxy_save) {
  49. Director dir;
  50. dir.galaxy.username = "test";
  51. dir.galaxy.game = 'Z';
  52. // This causes a YAML::Node Sequence
  53. dir.galaxy.meta["trade"][10963][0] = 1;
  54. dir.galaxy.save();
  55. EXPECT_TRUE(1) << "No exception, this is good!";
  56. }
  57. } // namespace