test_protocol.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. # test_protocol.py -- Tests for the git protocol
  2. # Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # or (at your option) any later version of the License.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. """Tests for the smart protocol utility functions."""
  19. from io import BytesIO
  20. from dulwich.errors import (
  21. HangupException,
  22. )
  23. from dulwich.protocol import (
  24. PktLineParser,
  25. Protocol,
  26. ReceivableProtocol,
  27. extract_capabilities,
  28. extract_want_line_capabilities,
  29. ack_type,
  30. SINGLE_ACK,
  31. MULTI_ACK,
  32. MULTI_ACK_DETAILED,
  33. BufferedPktLineWriter,
  34. )
  35. from dulwich.tests import TestCase
  36. class BaseProtocolTests(object):
  37. def test_write_pkt_line_none(self):
  38. self.proto.write_pkt_line(None)
  39. self.assertEqual(self.rout.getvalue(), '0000')
  40. def test_write_pkt_line(self):
  41. self.proto.write_pkt_line('bla')
  42. self.assertEqual(self.rout.getvalue(), '0007bla')
  43. def test_read_pkt_line(self):
  44. self.rin.write('0008cmd ')
  45. self.rin.seek(0)
  46. self.assertEqual('cmd ', self.proto.read_pkt_line())
  47. def test_eof(self):
  48. self.rin.write('0000')
  49. self.rin.seek(0)
  50. self.assertFalse(self.proto.eof())
  51. self.assertEqual(None, self.proto.read_pkt_line())
  52. self.assertTrue(self.proto.eof())
  53. self.assertRaises(HangupException, self.proto.read_pkt_line)
  54. def test_unread_pkt_line(self):
  55. self.rin.write('0007foo0000')
  56. self.rin.seek(0)
  57. self.assertEqual('foo', self.proto.read_pkt_line())
  58. self.proto.unread_pkt_line('bar')
  59. self.assertEqual('bar', self.proto.read_pkt_line())
  60. self.assertEqual(None, self.proto.read_pkt_line())
  61. self.proto.unread_pkt_line('baz1')
  62. self.assertRaises(ValueError, self.proto.unread_pkt_line, 'baz2')
  63. def test_read_pkt_seq(self):
  64. self.rin.write('0008cmd 0005l0000')
  65. self.rin.seek(0)
  66. self.assertEqual(['cmd ', 'l'], list(self.proto.read_pkt_seq()))
  67. def test_read_pkt_line_none(self):
  68. self.rin.write('0000')
  69. self.rin.seek(0)
  70. self.assertEqual(None, self.proto.read_pkt_line())
  71. def test_read_pkt_line_wrong_size(self):
  72. self.rin.write('0100too short')
  73. self.rin.seek(0)
  74. self.assertRaises(AssertionError, self.proto.read_pkt_line)
  75. def test_write_sideband(self):
  76. self.proto.write_sideband(3, 'bloe')
  77. self.assertEqual(self.rout.getvalue(), '0009\x03bloe')
  78. def test_send_cmd(self):
  79. self.proto.send_cmd('fetch', 'a', 'b')
  80. self.assertEqual(self.rout.getvalue(), '000efetch a\x00b\x00')
  81. def test_read_cmd(self):
  82. self.rin.write('0012cmd arg1\x00arg2\x00')
  83. self.rin.seek(0)
  84. self.assertEqual(('cmd', ['arg1', 'arg2']), self.proto.read_cmd())
  85. def test_read_cmd_noend0(self):
  86. self.rin.write('0011cmd arg1\x00arg2')
  87. self.rin.seek(0)
  88. self.assertRaises(AssertionError, self.proto.read_cmd)
  89. class ProtocolTests(BaseProtocolTests, TestCase):
  90. def setUp(self):
  91. TestCase.setUp(self)
  92. self.rout = BytesIO()
  93. self.rin = BytesIO()
  94. self.proto = Protocol(self.rin.read, self.rout.write)
  95. class ReceivableBytesIO(BytesIO):
  96. """BytesIO with socket-like recv semantics for testing."""
  97. def __init__(self):
  98. BytesIO.__init__(self)
  99. self.allow_read_past_eof = False
  100. def recv(self, size):
  101. # fail fast if no bytes are available; in a real socket, this would
  102. # block forever
  103. if self.tell() == len(self.getvalue()) and not self.allow_read_past_eof:
  104. raise AssertionError('Blocking read past end of socket')
  105. if size == 1:
  106. return self.read(1)
  107. # calls shouldn't return quite as much as asked for
  108. return self.read(size - 1)
  109. class ReceivableProtocolTests(BaseProtocolTests, TestCase):
  110. def setUp(self):
  111. TestCase.setUp(self)
  112. self.rout = BytesIO()
  113. self.rin = ReceivableBytesIO()
  114. self.proto = ReceivableProtocol(self.rin.recv, self.rout.write)
  115. self.proto._rbufsize = 8
  116. def test_eof(self):
  117. # Allow blocking reads past EOF just for this test. The only parts of
  118. # the protocol that might check for EOF do not depend on the recv()
  119. # semantics anyway.
  120. self.rin.allow_read_past_eof = True
  121. BaseProtocolTests.test_eof(self)
  122. def test_recv(self):
  123. all_data = '1234567' * 10 # not a multiple of bufsize
  124. self.rin.write(all_data)
  125. self.rin.seek(0)
  126. data = ''
  127. # We ask for 8 bytes each time and actually read 7, so it should take
  128. # exactly 10 iterations.
  129. for _ in range(10):
  130. data += self.proto.recv(10)
  131. # any more reads would block
  132. self.assertRaises(AssertionError, self.proto.recv, 10)
  133. self.assertEqual(all_data, data)
  134. def test_recv_read(self):
  135. all_data = '1234567' # recv exactly in one call
  136. self.rin.write(all_data)
  137. self.rin.seek(0)
  138. self.assertEqual('1234', self.proto.recv(4))
  139. self.assertEqual('567', self.proto.read(3))
  140. self.assertRaises(AssertionError, self.proto.recv, 10)
  141. def test_read_recv(self):
  142. all_data = '12345678abcdefg'
  143. self.rin.write(all_data)
  144. self.rin.seek(0)
  145. self.assertEqual('1234', self.proto.read(4))
  146. self.assertEqual('5678abc', self.proto.recv(8))
  147. self.assertEqual('defg', self.proto.read(4))
  148. self.assertRaises(AssertionError, self.proto.recv, 10)
  149. def test_mixed(self):
  150. # arbitrary non-repeating string
  151. all_data = ','.join(str(i) for i in range(100))
  152. self.rin.write(all_data)
  153. self.rin.seek(0)
  154. data = ''
  155. for i in range(1, 100):
  156. data += self.proto.recv(i)
  157. # if we get to the end, do a non-blocking read instead of blocking
  158. if len(data) + i > len(all_data):
  159. data += self.proto.recv(i)
  160. # ReceivableBytesIO leaves off the last byte unless we ask
  161. # nicely
  162. data += self.proto.recv(1)
  163. break
  164. else:
  165. data += self.proto.read(i)
  166. else:
  167. # didn't break, something must have gone wrong
  168. self.fail()
  169. self.assertEqual(all_data, data)
  170. class CapabilitiesTestCase(TestCase):
  171. def test_plain(self):
  172. self.assertEqual(('bla', []), extract_capabilities('bla'))
  173. def test_caps(self):
  174. self.assertEqual(('bla', ['la']), extract_capabilities('bla\0la'))
  175. self.assertEqual(('bla', ['la']), extract_capabilities('bla\0la\n'))
  176. self.assertEqual(('bla', ['la', 'la']), extract_capabilities('bla\0la la'))
  177. def test_plain_want_line(self):
  178. self.assertEqual(('want bla', []), extract_want_line_capabilities('want bla'))
  179. def test_caps_want_line(self):
  180. self.assertEqual(('want bla', ['la']), extract_want_line_capabilities('want bla la'))
  181. self.assertEqual(('want bla', ['la']), extract_want_line_capabilities('want bla la\n'))
  182. self.assertEqual(('want bla', ['la', 'la']), extract_want_line_capabilities('want bla la la'))
  183. def test_ack_type(self):
  184. self.assertEqual(SINGLE_ACK, ack_type(['foo', 'bar']))
  185. self.assertEqual(MULTI_ACK, ack_type(['foo', 'bar', 'multi_ack']))
  186. self.assertEqual(MULTI_ACK_DETAILED,
  187. ack_type(['foo', 'bar', 'multi_ack_detailed']))
  188. # choose detailed when both present
  189. self.assertEqual(MULTI_ACK_DETAILED,
  190. ack_type(['foo', 'bar', 'multi_ack',
  191. 'multi_ack_detailed']))
  192. class BufferedPktLineWriterTests(TestCase):
  193. def setUp(self):
  194. TestCase.setUp(self)
  195. self._output = BytesIO()
  196. self._writer = BufferedPktLineWriter(self._output.write, bufsize=16)
  197. def assertOutputEquals(self, expected):
  198. self.assertEqual(expected, self._output.getvalue())
  199. def _truncate(self):
  200. self._output.seek(0)
  201. self._output.truncate()
  202. def test_write(self):
  203. self._writer.write('foo')
  204. self.assertOutputEquals('')
  205. self._writer.flush()
  206. self.assertOutputEquals('0007foo')
  207. def test_write_none(self):
  208. self._writer.write(None)
  209. self.assertOutputEquals('')
  210. self._writer.flush()
  211. self.assertOutputEquals('0000')
  212. def test_flush_empty(self):
  213. self._writer.flush()
  214. self.assertOutputEquals('')
  215. def test_write_multiple(self):
  216. self._writer.write('foo')
  217. self._writer.write('bar')
  218. self.assertOutputEquals('')
  219. self._writer.flush()
  220. self.assertOutputEquals('0007foo0007bar')
  221. def test_write_across_boundary(self):
  222. self._writer.write('foo')
  223. self._writer.write('barbaz')
  224. self.assertOutputEquals('0007foo000abarba')
  225. self._truncate()
  226. self._writer.flush()
  227. self.assertOutputEquals('z')
  228. def test_write_to_boundary(self):
  229. self._writer.write('foo')
  230. self._writer.write('barba')
  231. self.assertOutputEquals('0007foo0009barba')
  232. self._truncate()
  233. self._writer.write('z')
  234. self._writer.flush()
  235. self.assertOutputEquals('0005z')
  236. class PktLineParserTests(TestCase):
  237. def test_none(self):
  238. pktlines = []
  239. parser = PktLineParser(pktlines.append)
  240. parser.parse("0000")
  241. self.assertEqual(pktlines, [None])
  242. self.assertEqual("", parser.get_tail())
  243. def test_small_fragments(self):
  244. pktlines = []
  245. parser = PktLineParser(pktlines.append)
  246. parser.parse("00")
  247. parser.parse("05")
  248. parser.parse("z0000")
  249. self.assertEqual(pktlines, ["z", None])
  250. self.assertEqual("", parser.get_tail())
  251. def test_multiple_packets(self):
  252. pktlines = []
  253. parser = PktLineParser(pktlines.append)
  254. parser.parse("0005z0006aba")
  255. self.assertEqual(pktlines, ["z", "ab"])
  256. self.assertEqual("a", parser.get_tail())