test_cdiff.py 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """Unit test for cdiff"""
  4. import sys
  5. if sys.hexversion < 0x02050000:
  6. raise SystemExit("*** Requires python >= 2.5.0") # pragma: no cover
  7. import unittest
  8. import tempfile
  9. import subprocess
  10. import os
  11. sys.path.insert(0, '')
  12. import cdiff
  13. class Sequential(object):
  14. """A non-seekable iterator, mock of file object"""
  15. def __init__(self, items):
  16. self._items = items
  17. self._index = 0
  18. def __iter__(self):
  19. while True:
  20. try:
  21. item = self._items[self._index]
  22. except IndexError:
  23. raise StopIteration
  24. yield item
  25. self._index += 1
  26. def readline(self):
  27. try:
  28. item = self._items[self._index]
  29. except IndexError:
  30. return ''
  31. self._index += 1
  32. return item
  33. class TestPatchStream(unittest.TestCase):
  34. def test_is_empty(self):
  35. stream = cdiff.PatchStream(Sequential([]))
  36. self.assertTrue(stream.is_empty())
  37. stream = cdiff.PatchStream(Sequential(['hello', 'world']))
  38. self.assertFalse(stream.is_empty())
  39. def test_read_stream_header(self):
  40. stream = cdiff.PatchStream(Sequential([]))
  41. self.assertEqual(stream.read_stream_header(1), [])
  42. items = ['hello', 'world', 'again']
  43. stream = cdiff.PatchStream(Sequential(items))
  44. self.assertEqual(stream.read_stream_header(2), items[:2])
  45. stream = cdiff.PatchStream(Sequential(items))
  46. self.assertEqual(stream.read_stream_header(4), items[:])
  47. def test_iter_after_read_stream_header(self):
  48. items = ['hello', 'world', 'again', 'and', 'again']
  49. stream = cdiff.PatchStream(Sequential(items))
  50. _ = stream.read_stream_header(2)
  51. out = list(stream)
  52. self.assertEqual(out, items)
  53. class TestHunk(unittest.TestCase):
  54. def test_get_old_text(self):
  55. hunk = cdiff.Hunk([], '@@ -1,2 +1,2 @@', (1, 2), (1, 2))
  56. hunk.append(('-', 'foo\n'))
  57. hunk.append(('+', 'bar\n'))
  58. hunk.append((' ', 'common\n'))
  59. self.assertEqual(hunk._get_old_text(), ['foo\n', 'common\n'])
  60. def test_get_new_text(self):
  61. hunk = cdiff.Hunk([], '@@ -1,2 +1,2 @@', (1, 2), (1, 2))
  62. hunk.append(('-', 'foo\n'))
  63. hunk.append(('+', 'bar\n'))
  64. hunk.append((' ', 'common\n'))
  65. self.assertEqual(hunk._get_new_text(), ['bar\n', 'common\n'])
  66. class TestDiff(unittest.TestCase):
  67. def _init_diff(self):
  68. """Return a minimal diff contains all required samples
  69. header
  70. --- old
  71. +++ new
  72. hunk header
  73. @@ -1,4 +1,4 @@
  74. -hhello
  75. +helloo
  76. +spammm
  77. world
  78. -garb
  79. -Again
  80. +again
  81. """
  82. hunk = cdiff.Hunk(['hunk header\n'], '@@ -1,4 +1,4 @@\n',
  83. (1, 4), (1, 4))
  84. hunk.append(('-', 'hhello\n'))
  85. hunk.append(('+', 'helloo\n'))
  86. hunk.append(('+', 'spammm\n'))
  87. hunk.append((' ', 'world\n'))
  88. hunk.append(('-', 'garb\n'))
  89. hunk.append(('-', 'Again\n'))
  90. hunk.append(('+', 'again\n'))
  91. diff = cdiff.Diff(['header\n'], '--- old\n', '+++ new\n', [hunk])
  92. return diff
  93. def test_markup_mix(self):
  94. line = 'foo \x00-del\x01 \x00+add\x01 \x00^chg\x01 bar'
  95. base_color = 'red'
  96. diff = cdiff.Diff(None, None, None, None)
  97. self.assertEqual(
  98. diff._markup_mix(line, base_color),
  99. '\x1b[31mfoo \x1b[7m\x1b[31mdel\x1b[0m\x1b[31m '
  100. '\x1b[7m\x1b[31madd\x1b[0m\x1b[31m '
  101. '\x1b[4m\x1b[31mchg\x1b[0m\x1b[31m bar\x1b[0m')
  102. def test_markup_traditional_hunk_header(self):
  103. hunk = cdiff.Hunk(['hunk header\n'], '@@ -0 +0 @@\n', (0, 0), (0, 0))
  104. diff = cdiff.Diff([], '--- old\n', '+++ new\n', [hunk])
  105. out = list(diff.markup_traditional())
  106. self.assertEqual(len(out), 4)
  107. self.assertEqual(out[0], '\x1b[33m--- old\n\x1b[0m')
  108. self.assertEqual(out[1], '\x1b[33m+++ new\n\x1b[0m')
  109. self.assertEqual(out[2], '\x1b[1;36mhunk header\n\x1b[0m')
  110. self.assertEqual(out[3], '\x1b[1;34m@@ -0 +0 @@\n\x1b[0m')
  111. def test_markup_traditional_old_changed(self):
  112. hunk = cdiff.Hunk([], '@@ -1 +0,0 @@\n', (1, 0), (0, 0))
  113. hunk.append(('-', 'spam\n'))
  114. diff = cdiff.Diff([], '--- old\n', '+++ new\n', [hunk])
  115. out = list(diff.markup_traditional())
  116. self.assertEqual(len(out), 4)
  117. self.assertEqual(out[0], '\x1b[33m--- old\n\x1b[0m')
  118. self.assertEqual(out[1], '\x1b[33m+++ new\n\x1b[0m')
  119. self.assertEqual(out[2], '\x1b[1;34m@@ -1 +0,0 @@\n\x1b[0m')
  120. self.assertEqual(out[3], '\x1b[1;31m-spam\n\x1b[0m')
  121. def test_markup_traditional_new_changed(self):
  122. hunk = cdiff.Hunk([], '@@ -0,0 +1 @@\n', (0, 0), (1, 0))
  123. hunk.append(('+', 'spam\n'))
  124. diff = cdiff.Diff([], '--- old\n', '+++ new\n', [hunk])
  125. out = list(diff.markup_traditional())
  126. self.assertEqual(len(out), 4)
  127. self.assertEqual(out[0], '\x1b[33m--- old\n\x1b[0m')
  128. self.assertEqual(out[1], '\x1b[33m+++ new\n\x1b[0m')
  129. self.assertEqual(out[2], '\x1b[1;34m@@ -0,0 +1 @@\n\x1b[0m')
  130. self.assertEqual(out[3], '\x1b[1;32m+spam\n\x1b[0m')
  131. def test_markup_traditional_both_changed(self):
  132. hunk = cdiff.Hunk([], '@@ -1,2 +1,2 @@\n', (1, 2), (1, 2))
  133. hunk.append(('-', 'hella\n'))
  134. hunk.append(('+', 'hello\n'))
  135. hunk.append((' ', 'common\n'))
  136. diff = cdiff.Diff([], '--- old\n', '+++ new\n', [hunk])
  137. out = list(diff.markup_traditional())
  138. self.assertEqual(len(out), 6)
  139. self.assertEqual(out[0], '\x1b[33m--- old\n\x1b[0m')
  140. self.assertEqual(out[1], '\x1b[33m+++ new\n\x1b[0m')
  141. self.assertEqual(out[2], '\x1b[1;34m@@ -1,2 +1,2 @@\n\x1b[0m')
  142. self.assertEqual(
  143. out[3],
  144. '\x1b[1;31m-\x1b[0m\x1b[31mhell'
  145. '\x1b[4m\x1b[31ma\x1b[0m\x1b[31m\n\x1b[0m')
  146. self.assertEqual(
  147. out[4],
  148. '\x1b[1;32m+\x1b[0m\x1b[32mhell'
  149. '\x1b[4m\x1b[32mo\x1b[0m\x1b[32m\n\x1b[0m')
  150. self.assertEqual(out[5], '\x1b[0m common\n\x1b[0m')
  151. def test_markup_side_by_side_padded(self):
  152. diff = self._init_diff()
  153. out = list(diff.markup_side_by_side(7))
  154. self.assertEqual(len(out), 10)
  155. sys.stdout.write('\n')
  156. for markup in out:
  157. sys.stdout.write(markup)
  158. self.assertEqual(out[0], '\x1b[36mheader\n\x1b[0m')
  159. self.assertEqual(out[1], '\x1b[33m--- old\n\x1b[0m')
  160. self.assertEqual(out[2], '\x1b[33m+++ new\n\x1b[0m')
  161. self.assertEqual(out[3], '\x1b[1;36mhunk header\n\x1b[0m')
  162. self.assertEqual(out[4], '\x1b[1;34m@@ -1,4 +1,4 @@\n\x1b[0m')
  163. self.assertEqual(
  164. out[5],
  165. '\x1b[33m1\x1b[0m '
  166. '\x1b[31m\x1b[7m\x1b[31mh\x1b[0m\x1b[31mhello\x1b[0m '
  167. '\x1b[0m\x1b[33m1\x1b[0m '
  168. '\x1b[32mhello\x1b[7m\x1b[32mo\x1b[0m\x1b[32m\x1b[0m\n')
  169. self.assertEqual(
  170. out[6],
  171. '\x1b[33m '
  172. '\x1b[0m '
  173. '\x1b[0m\x1b[33m2\x1b[0m '
  174. '\x1b[1;32mspammm\x1b[0m\n')
  175. self.assertEqual(
  176. out[7],
  177. '\x1b[33m2\x1b[0m '
  178. '\x1b[0mworld\x1b[0m '
  179. '\x1b[0m\x1b[33m3\x1b[0m '
  180. '\x1b[0mworld\x1b[0m\n')
  181. self.assertEqual(
  182. out[8],
  183. '\x1b[33m3\x1b[0m '
  184. '\x1b[1;31mgarb\x1b[0m '
  185. '\x1b[0m\x1b[33m '
  186. '\x1b[0m \n')
  187. self.assertEqual(
  188. out[9],
  189. '\x1b[33m4\x1b[0m '
  190. '\x1b[31m\x1b[4m\x1b[31mA\x1b[0m\x1b[31mgain\x1b[0m '
  191. '\x1b[0m\x1b[33m4\x1b[0m '
  192. '\x1b[32m\x1b[4m\x1b[32ma\x1b[0m\x1b[32mgain\x1b[0m\n')
  193. def test_markup_side_by_side_neg_width(self):
  194. diff = self._init_diff()
  195. out = list(diff.markup_side_by_side(-1))
  196. self.assertEqual(len(out), 10)
  197. self.assertEqual(out[0], '\x1b[36mheader\n\x1b[0m')
  198. self.assertEqual(out[1], '\x1b[33m--- old\n\x1b[0m')
  199. self.assertEqual(out[2], '\x1b[33m+++ new\n\x1b[0m')
  200. self.assertEqual(out[3], '\x1b[1;36mhunk header\n\x1b[0m')
  201. self.assertEqual(out[4], '\x1b[1;34m@@ -1,4 +1,4 @@\n\x1b[0m')
  202. self.assertEqual(
  203. out[5],
  204. '\x1b[33m1\x1b[0m '
  205. '\x1b[31m\x1b[7m\x1b[31mh\x1b[0m\x1b[31mhello\x1b[0m ' +
  206. (' ' * 74) +
  207. '\x1b[0m\x1b[33m1\x1b[0m '
  208. '\x1b[32mhello\x1b[7m\x1b[32mo\x1b[0m\x1b[32m\x1b[0m\n')
  209. self.assertEqual(
  210. out[6],
  211. '\x1b[33m '
  212. '\x1b[0m ' + (' ' * 80) +
  213. '\x1b[0m\x1b[33m2\x1b[0m '
  214. '\x1b[1;32mspammm\x1b[0m\n')
  215. self.assertEqual(
  216. out[7],
  217. '\x1b[33m2\x1b[0m '
  218. '\x1b[0mworld\x1b[0m ' + (' ' * 75) +
  219. '\x1b[0m\x1b[33m3\x1b[0m '
  220. '\x1b[0mworld\x1b[0m\n')
  221. self.assertEqual(
  222. out[8],
  223. '\x1b[33m3\x1b[0m '
  224. '\x1b[1;31mgarb\x1b[0m '
  225. '\x1b[0m\x1b[33m '
  226. '\x1b[0m \n')
  227. self.assertEqual(
  228. out[9],
  229. '\x1b[33m4\x1b[0m '
  230. '\x1b[31m\x1b[4m\x1b[31mA\x1b[0m\x1b[31mgain\x1b[0m ' +
  231. (' ' * 75) +
  232. '\x1b[0m\x1b[33m4\x1b[0m '
  233. '\x1b[32m\x1b[4m\x1b[32ma\x1b[0m\x1b[32mgain\x1b[0m\n')
  234. def test_markup_side_by_side_off_by_one(self):
  235. diff = self._init_diff()
  236. out = list(diff.markup_side_by_side(6))
  237. self.assertEqual(len(out), 10)
  238. sys.stdout.write('\n')
  239. for markup in out:
  240. sys.stdout.write(markup)
  241. self.assertEqual(out[0], '\x1b[36mheader\n\x1b[0m')
  242. self.assertEqual(out[1], '\x1b[33m--- old\n\x1b[0m')
  243. self.assertEqual(out[2], '\x1b[33m+++ new\n\x1b[0m')
  244. self.assertEqual(out[3], '\x1b[1;36mhunk header\n\x1b[0m')
  245. self.assertEqual(out[4], '\x1b[1;34m@@ -1,4 +1,4 @@\n\x1b[0m')
  246. self.assertEqual(
  247. out[5],
  248. '\x1b[33m1\x1b[0m '
  249. '\x1b[31m\x1b[7m\x1b[31mh\x1b[0m\x1b[31mhello\x1b[0m '
  250. '\x1b[0m\x1b[33m1\x1b[0m '
  251. '\x1b[32mhello\x1b[7m\x1b[32mo\x1b[0m\n')
  252. self.assertEqual(
  253. out[6],
  254. '\x1b[33m \x1b[0m '
  255. '\x1b[0m\x1b[33m2\x1b[0m '
  256. '\x1b[1;32mspammm\x1b[0m\n')
  257. self.assertEqual(
  258. out[7],
  259. '\x1b[33m2\x1b[0m '
  260. '\x1b[0mworld\x1b[0m '
  261. '\x1b[0m\x1b[33m3\x1b[0m '
  262. '\x1b[0mworld\x1b[0m\n')
  263. self.assertEqual(
  264. out[8],
  265. '\x1b[33m3\x1b[0m '
  266. '\x1b[1;31mgarb\x1b[0m '
  267. '\x1b[0m\x1b[33m '
  268. '\x1b[0m \n')
  269. self.assertEqual(
  270. out[9],
  271. '\x1b[33m4\x1b[0m '
  272. '\x1b[31m\x1b[4m\x1b[31mA\x1b[0m\x1b[31mgain\x1b[0m '
  273. '\x1b[0m\x1b[33m4\x1b[0m '
  274. '\x1b[32m\x1b[4m\x1b[32ma\x1b[0m\x1b[32mgain\x1b[0m\n')
  275. def test_markup_side_by_side_wrapped(self):
  276. diff = self._init_diff()
  277. out = list(diff.markup_side_by_side(5))
  278. self.assertEqual(len(out), 10)
  279. sys.stdout.write('\n')
  280. for markup in out:
  281. sys.stdout.write(markup)
  282. self.assertEqual(out[0], '\x1b[36mheader\n\x1b[0m')
  283. self.assertEqual(out[1], '\x1b[33m--- old\n\x1b[0m')
  284. self.assertEqual(out[2], '\x1b[33m+++ new\n\x1b[0m')
  285. self.assertEqual(out[3], '\x1b[1;36mhunk header\n\x1b[0m')
  286. self.assertEqual(out[4], '\x1b[1;34m@@ -1,4 +1,4 @@\n\x1b[0m')
  287. self.assertEqual(
  288. out[5],
  289. '\x1b[33m1\x1b[0m '
  290. '\x1b[31m\x1b[7m\x1b[31mh\x1b[0m\x1b[31mhel\x1b[0m\x1b[1;35m>\x1b[0m '
  291. '\x1b[0m\x1b[33m1\x1b[0m '
  292. '\x1b[32mhell\x1b[0m\x1b[1;35m>\x1b[0m\n')
  293. self.assertEqual(
  294. out[6],
  295. '\x1b[33m \x1b[0m '
  296. '\x1b[0m\x1b[33m2\x1b[0m '
  297. ''
  298. '\x1b[1;32mspam\x1b[0m\x1b[1;35m>\x1b[0m\n')
  299. self.assertEqual(
  300. out[7],
  301. '\x1b[33m2\x1b[0m '
  302. '\x1b[0mworld\x1b[0m '
  303. '\x1b[0m\x1b[33m3\x1b[0m '
  304. '\x1b[0mworld\x1b[0m\n')
  305. self.assertEqual(
  306. out[8],
  307. '\x1b[33m3\x1b[0m '
  308. '\x1b[1;31mgarb\x1b[0m '
  309. '\x1b[0m\x1b[33m '
  310. '\x1b[0m \n')
  311. self.assertEqual(
  312. out[9],
  313. '\x1b[33m4\x1b[0m '
  314. '\x1b[31m\x1b[4m\x1b[31mA\x1b[0m\x1b[31mgain\x1b[0m '
  315. '\x1b[0m\x1b[33m4\x1b[0m '
  316. '\x1b[32m\x1b[4m\x1b[32ma\x1b[0m\x1b[32mgain\x1b[0m\n')
  317. class TestUdiff(unittest.TestCase):
  318. diff = cdiff.Udiff(None, None, None, None)
  319. def test_is_hunk_meta_normal(self):
  320. self.assertTrue(self.diff.is_hunk_meta('@@ -1 +1 @@'))
  321. self.assertTrue(self.diff.is_hunk_meta('@@ -3,7 +3,6 @@'))
  322. self.assertTrue(self.diff.is_hunk_meta('@@ -3,7 +3,6 @@ class Foo'))
  323. self.assertTrue(self.diff.is_hunk_meta('@@ -3,7 +3,6 @@ class Foo\n'))
  324. self.assertTrue(
  325. self.diff.is_hunk_meta('@@ -3,7 +3,6 @@ class Foo\r\n'))
  326. def test_is_hunk_meta_svn_prop(self):
  327. self.assertTrue(self.diff.is_hunk_meta('## -0,0 +1 ##'))
  328. self.assertTrue(self.diff.is_hunk_meta('## -0,0 +1 ##\n'))
  329. self.assertTrue(self.diff.is_hunk_meta('## -0,0 +1 ##\r\n'))
  330. def test_is_hunk_meta_neg(self):
  331. self.assertFalse(self.diff.is_hunk_meta('@@ -1 + @@'))
  332. self.assertFalse(self.diff.is_hunk_meta('@@ -this is not a hunk meta'))
  333. self.assertFalse(self.diff.is_hunk_meta('## -this is not either'))
  334. def test_parse_hunk_meta_normal(self):
  335. self.assertEqual(self.diff.parse_hunk_meta('@@ -3,7 +3,6 @@'),
  336. ((3, 7), (3, 6)))
  337. def test_parse_hunk_meta_missing(self):
  338. self.assertEqual(self.diff.parse_hunk_meta('@@ -3 +3,6 @@'),
  339. ((3, 0), (3, 6)))
  340. self.assertEqual(self.diff.parse_hunk_meta('@@ -3,7 +3 @@'),
  341. ((3, 7), (3, 0)))
  342. self.assertEqual(self.diff.parse_hunk_meta('@@ -3 +3 @@'),
  343. ((3, 0), (3, 0)))
  344. def test_parse_hunk_meta_svn_prop(self):
  345. self.assertEqual(self.diff.parse_hunk_meta('## -0,0 +1 ##'),
  346. ((0, 0), (1, 0)))
  347. def test_is_old(self):
  348. self.assertTrue(self.diff.is_old('-hello world'))
  349. self.assertTrue(self.diff.is_old('----')) # yaml
  350. def test_is_old_neg(self):
  351. self.assertFalse(self.diff.is_old('--- considered as old path'))
  352. self.assertFalse(self.diff.is_old('-' * 72)) # svn log --diff
  353. def test_is_new(self):
  354. self.assertTrue(self.diff.is_new('+hello world'))
  355. self.assertTrue(self.diff.is_new('++++hello world'))
  356. def test_is_new_neg(self):
  357. self.assertFalse(self.diff.is_new('+++ considered as new path'))
  358. class TestDiffParser(unittest.TestCase):
  359. def test_type_detect(self):
  360. patch = r"""\
  361. spam
  362. --- a
  363. +++ b
  364. @@ -1,2 +1,2 @@
  365. """
  366. items = patch.splitlines(True)
  367. stream = cdiff.PatchStream(Sequential(items))
  368. parser = cdiff.DiffParser(stream)
  369. self.assertEqual(parser._type, 'udiff')
  370. def test_type_detect_neg(self):
  371. patch = r"""\
  372. spam
  373. --- a
  374. +++ b
  375. spam
  376. """
  377. items = patch.splitlines(True)
  378. stream = cdiff.PatchStream(Sequential(items))
  379. self.assertRaises(RuntimeError, cdiff.DiffParser, stream)
  380. def test_parse_invalid_hunk_meta(self):
  381. patch = r"""\
  382. spam
  383. --- a
  384. +++ b
  385. spam
  386. @@ -a,a +0 @@
  387. """
  388. items = patch.splitlines(True)
  389. stream = cdiff.PatchStream(Sequential(items))
  390. parser = cdiff.DiffParser(stream)
  391. self.assertRaises(RuntimeError, list, parser.get_diff_generator())
  392. def test_parse_dangling_header(self):
  393. patch = r"""\
  394. --- a
  395. +++ b
  396. @@ -1,2 +1,2 @@
  397. -foo
  398. +bar
  399. common
  400. spam
  401. """
  402. items = patch.splitlines(True)
  403. stream = cdiff.PatchStream(Sequential(items))
  404. parser = cdiff.DiffParser(stream)
  405. self.assertRaises(RuntimeError, list, parser.get_diff_generator())
  406. def test_parse_missing_new_path(self):
  407. patch = r"""\
  408. --- a
  409. +++ b
  410. @@ -1,2 +1,2 @@
  411. -foo
  412. +bar
  413. common
  414. --- c
  415. """
  416. items = patch.splitlines(True)
  417. stream = cdiff.PatchStream(Sequential(items))
  418. parser = cdiff.DiffParser(stream)
  419. self.assertRaises(AssertionError, list, parser.get_diff_generator())
  420. def test_parse_missing_hunk_meta(self):
  421. patch = r"""\
  422. --- a
  423. +++ b
  424. @@ -1,2 +1,2 @@
  425. -foo
  426. +bar
  427. common
  428. --- c
  429. +++ d
  430. """
  431. items = patch.splitlines(True)
  432. stream = cdiff.PatchStream(Sequential(items))
  433. parser = cdiff.DiffParser(stream)
  434. self.assertRaises(AssertionError, list, parser.get_diff_generator())
  435. def test_parse_missing_hunk_list(self):
  436. patch = r"""\
  437. --- a
  438. +++ b
  439. @@ -1,2 +1,2 @@
  440. -foo
  441. +bar
  442. common
  443. --- c
  444. +++ d
  445. @@ -1,2 +1,2 @@
  446. """
  447. items = patch.splitlines(True)
  448. stream = cdiff.PatchStream(Sequential(items))
  449. parser = cdiff.DiffParser(stream)
  450. self.assertRaises(AssertionError, list, parser.get_diff_generator())
  451. def test_parse_only_in_dir(self):
  452. patch = r"""\
  453. --- a
  454. +++ b
  455. @@ -1,2 +1,2 @@
  456. -foo
  457. +bar
  458. common
  459. Only in foo: foo
  460. --- c
  461. +++ d
  462. @@ -1,2 +1,2 @@
  463. -foo
  464. +bar
  465. common
  466. """
  467. items = patch.splitlines(True)
  468. stream = cdiff.PatchStream(Sequential(items))
  469. parser = cdiff.DiffParser(stream)
  470. out = list(parser.get_diff_generator())
  471. self.assertEqual(len(out), 3)
  472. self.assertEqual(len(out[1]._hunks), 0)
  473. self.assertEqual(out[1]._headers, ['Only in foo: foo\n'])
  474. self.assertEqual(len(out[2]._hunks), 1)
  475. self.assertEqual(len(out[2]._hunks[0]._hunk_list), 3)
  476. def test_parse_only_in_dir_at_last(self):
  477. patch = r"""\
  478. --- a
  479. +++ b
  480. @@ -1,2 +1,2 @@
  481. -foo
  482. +bar
  483. common
  484. Only in foo: foo
  485. """
  486. items = patch.splitlines(True)
  487. stream = cdiff.PatchStream(Sequential(items))
  488. parser = cdiff.DiffParser(stream)
  489. out = list(parser.get_diff_generator())
  490. self.assertEqual(len(out), 2)
  491. self.assertEqual(len(out[1]._hunks), 0)
  492. self.assertEqual(out[1]._headers, ['Only in foo: foo\n'])
  493. def test_parse_binary_differ_diff_ru(self):
  494. patch = r"""\
  495. --- a
  496. +++ b
  497. @@ -1,2 +1,2 @@
  498. -foo
  499. +bar
  500. common
  501. Binary files a/1.pdf and b/1.pdf differ
  502. --- c
  503. +++ d
  504. @@ -1,2 +1,2 @@
  505. -foo
  506. +bar
  507. common
  508. """
  509. items = patch.splitlines(True)
  510. stream = cdiff.PatchStream(Sequential(items))
  511. parser = cdiff.DiffParser(stream)
  512. out = list(parser.get_diff_generator())
  513. self.assertEqual(len(out), 3)
  514. self.assertEqual(len(out[1]._hunks), 0)
  515. self.assertEqual(out[1]._old_path, '')
  516. self.assertEqual(out[1]._new_path, '')
  517. self.assertEqual(len(out[1]._headers), 1)
  518. self.assertTrue(out[1]._headers[0].startswith('Binary files'))
  519. self.assertEqual(len(out[2]._hunks), 1)
  520. self.assertEqual(len(out[2]._hunks[0]._hunk_list), 3)
  521. def test_parse_binary_differ_git(self):
  522. patch = r"""\
  523. diff --git a/foo b/foo
  524. index 529d8a3..ad71911 100755
  525. --- a/foo
  526. +++ b/foo
  527. @@ -1,2 +1,2 @@
  528. -foo
  529. +bar
  530. common
  531. diff --git a/example.pdf b/example.pdf
  532. index 1eacfd8..3696851 100644
  533. Binary files a/example.pdf and b/example.pdf differ
  534. diff --git a/bar b/bar
  535. index 529e8a3..ad71921 100755
  536. --- a/bar
  537. +++ b/bar
  538. @@ -1,2 +1,2 @@
  539. -foo
  540. +bar
  541. common
  542. """
  543. items = patch.splitlines(True)
  544. stream = cdiff.PatchStream(Sequential(items))
  545. parser = cdiff.DiffParser(stream)
  546. out = list(parser.get_diff_generator())
  547. self.assertEqual(len(out), 3)
  548. self.assertEqual(len(out[1]._hunks), 0)
  549. self.assertEqual(out[1]._old_path, '')
  550. self.assertEqual(out[1]._new_path, '')
  551. self.assertEqual(len(out[1]._headers), 3)
  552. self.assertTrue(out[1]._headers[2].startswith('Binary files'))
  553. self.assertEqual(len(out[2]._hunks), 1)
  554. self.assertEqual(len(out[2]._hunks[0]._hunk_list), 3)
  555. def test_parse_svn_prop(self):
  556. patch = r"""\
  557. --- a
  558. +++ b
  559. Added: svn:executable
  560. ## -0,0 +1 ##
  561. +*
  562. \ No newline at end of property
  563. Added: svn:keywords
  564. ## -0,0 +1 ##
  565. +Id
  566. """
  567. items = patch.splitlines(True)
  568. stream = cdiff.PatchStream(Sequential(items))
  569. parser = cdiff.DiffParser(stream)
  570. out = list(parser.get_diff_generator())
  571. self.assertEqual(len(out), 1)
  572. self.assertEqual(len(out[0]._hunks), 2)
  573. hunk = out[0]._hunks[1]
  574. self.assertEqual(hunk._hunk_headers, ['Added: svn:keywords\n'])
  575. self.assertEqual(hunk._hunk_list, [('+', 'Id\n')])
  576. class TestMain(unittest.TestCase):
  577. def setUp(self):
  578. self._cwd = os.getcwd()
  579. self._ws = tempfile.mkdtemp(prefix='test_cdiff')
  580. self._non_ws = tempfile.mkdtemp(prefix='test_cdiff')
  581. cmd = ('cd %s; git init; git config user.name me; '
  582. 'git config user.email me@example.org') % self._ws
  583. subprocess.call(cmd, shell=True, stdout=subprocess.PIPE)
  584. self._change_file('init')
  585. def tearDown(self):
  586. os.chdir(self._cwd)
  587. cmd = ['/bin/rm', '-rf', self._ws, self._non_ws]
  588. subprocess.call(cmd)
  589. def _change_file(self, text):
  590. cmd = ['/bin/sh', '-c',
  591. 'cd %s; echo "%s" > foo' % (self._ws, text)]
  592. subprocess.call(cmd)
  593. def _commit_file(self):
  594. cmd = ['/bin/sh', '-c',
  595. 'cd %s; git add foo; git commit foo -m update' % self._ws]
  596. subprocess.call(cmd, stdout=subprocess.PIPE)
  597. def test_read_diff(self):
  598. sys.argv = sys.argv[:1]
  599. self._change_file('read_diff')
  600. os.chdir(self._ws)
  601. ret = cdiff.main()
  602. os.chdir(self._cwd)
  603. self.assertEqual(ret, 0)
  604. def test_read_diff_neg(self):
  605. sys.argv = sys.argv[:1]
  606. os.chdir(self._non_ws)
  607. ret = cdiff.main()
  608. os.chdir(self._cwd)
  609. self.assertNotEqual(ret, 0)
  610. def test_read_log(self):
  611. sys.argv = [sys.argv[0], '--log']
  612. self._change_file('read_log')
  613. self._commit_file()
  614. os.chdir(self._ws)
  615. ret = cdiff.main()
  616. os.chdir(self._cwd)
  617. self.assertEqual(ret, 0)
  618. def test_read_log_neg(self):
  619. sys.argv = [sys.argv[0], '--log']
  620. os.chdir(self._non_ws)
  621. ret = cdiff.main()
  622. os.chdir(self._cwd)
  623. self.assertNotEqual(ret, 0)
  624. if __name__ == '__main__':
  625. unittest.main()
  626. # vim:set et sts=4 sw=4 tw=80: