test-director.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. dir.username = "test";
  20. // should I setup galaxy-N-test.yaml ? Probably yes.
  21. std::string lines[] = {
  22. "TradeWars Game Server Copyright (C) "
  23. "EIS",
  24. "Selection (? for menu): N",
  25. "Trade Wars 2002 Win32 module now loading.",
  26. " ==-- Trade Wars 2002 --==",
  27. "Enter your choice: ",
  28. "^Command [TL=00:00:00]:[2985] (?=Help)? :"};
  29. for (auto line : lines) {
  30. if (line[0] == '^') {
  31. dir.server_prompt(line.substr(1), line.substr(1));
  32. } else {
  33. dir.server_line(line, line);
  34. }
  35. }
  36. EXPECT_EQ(client[0],
  37. "\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  38. client.clear();
  39. dir.client_input("~");
  40. for (auto line : client) {
  41. GTEST_COUT << line << std::endl;
  42. }
  43. }
  44. } // namespace