test_1.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. from proxy import *
  2. from twisted.trial import unittest
  3. from twisted.python import log
  4. log.startLogging(sys.stdout)
  5. from pprint import pprint
  6. from unittest.mock import Mock, patch
  7. from shutil import copyfile
  8. # import twisted.internet.base
  9. # twisted.internet.base.DelayedCall.debug = True
  10. class GameTestCase(unittest.TestCase):
  11. def setUp(self):
  12. self.game = Game()
  13. # Fake game init
  14. self.game.queue_player = defer.DeferredQueue()
  15. self.game.queue_game = defer.DeferredQueue()
  16. self.game.observer = Observer()
  17. self.game.setPlayerReceived()
  18. self.game.observer.connect("user-game", self.game.show_game)
  19. # This should silence trying to send data when we can't.
  20. # Well, it doesn't. >:(
  21. self.game.playerDataReceived = Mock()
  22. print("Set!")
  23. def setRecv(self, f):
  24. self.game.queue_game.get().addCallback(f)
  25. def sent(self, line):
  26. print("Sent: [{0}]".format(line))
  27. self.setRecv(self.sent)
  28. def show(self, line):
  29. print("Recv: [{0}]".format(line))
  30. def inject(self, data):
  31. line = data.decode("latin-1", "ignore")
  32. self.assertIn(
  33. "TWGS Proxy build v", line, "Proxy activation text is in the data."
  34. )
  35. self.fired = True
  36. def test_inject(self):
  37. """ Verify that our injection is working.
  38. This doesn't need a defer, apparently the DeferredQueue works
  39. without depending on the reactor running.
  40. """
  41. self.setRecv(self.inject)
  42. self.fired = False
  43. self.game.dataReceived(b"\r\nTWGS v2.20b www.eisonline.com\n\r\n\r\n\r")
  44. self.assertEquals(self.fired, True, "Data was not received from queue_game.")
  45. def path_part3(self, *_):
  46. self.assertIsInstance(self.game.gamedata, GameData)
  47. warps = [2565, 5468, 5128, 238]
  48. pprint(self.game.gamedata.warps)
  49. for w in warps:
  50. self.assertIn(w, self.game.gamedata.warps)
  51. # Test completed, clear the deferred.
  52. self.d.callback(0)
  53. def path_part2(self, *_):
  54. self.assertEquals(self.fired, True, "reactor.callLater is not working.")
  55. self.assertIsInstance(self.game.gamedata, GameData)
  56. self.game.dataReceived(
  57. b"The shortest path (9 hops, 27 turns) from sector 2565 to sector 2957 is:\n\r"
  58. )
  59. self.game.dataReceived(
  60. b"2565 > 5468 > 5128 > 238 > (3957) > (2531) > (1292) > (1892) > (4439) > (2957)\n\r"
  61. )
  62. reactor.callLater(0.1, self.path_part3)
  63. def path_user(self, user):
  64. self.fired = True
  65. def test_path(self):
  66. """ Verify that path detection is working.
  67. This needs a deferred(), in order for reactor.CallLater events
  68. to fire. (See: Observer.emit)
  69. """
  70. self.fired = False
  71. self.game.observer.connect("user-game", self.path_user)
  72. # emit user-game to init the game.gamedata (GameData) object.
  73. self.game.observer.emit("user-game", ("test", "A"))
  74. d = defer.Deferred()
  75. self.d = d
  76. reactor.callLater(0.1, self.path_part2)
  77. return d
  78. def trade1_part3(self, *_):
  79. print("How about now?")
  80. self.d.callback(0)
  81. def trade1_part2(self, *_):
  82. for line in self.p.trade_report:
  83. noascii = "".join([c if ord(c) < 0x7F else "" for c in line])
  84. print(cleanANSI(noascii))
  85. # print(self.p.trade_report)
  86. self.game.observer.load(self.p.save)
  87. self.p.keepalive.stop()
  88. self.p = None
  89. self.d.callback(0)
  90. # reactor.callLater(0.5, self.trade1_part3)
  91. def trade1_part1(self, *_):
  92. self.assertEquals(self.fired, True, "user-game emit ok.")
  93. ProxyMenu.awake = Mock()
  94. self.p = ProxyMenu(self.game)
  95. # self.p.keepalive.stop()
  96. # # stop the keepalive so the reactor is clean.
  97. z = coiterate(self.p.make_trade_report())
  98. z.addCallback(self.trade1_part2)
  99. def test_trade1(self):
  100. """ Attempt to run the trade script.
  101. Oh boy.
  102. """
  103. self.fired = False
  104. self.game.observer.connect("user-game", self.path_user)
  105. # emit user-game to init the game.gamedata (GameData) object.
  106. copyfile("../data_Z.json", "data_Z.json")
  107. self.game.observer.emit("user-game", ("data", "Z"))
  108. d = defer.Deferred()
  109. self.d = d
  110. reactor.callLater(1.5, self.trade1_part1)
  111. return d