test_objects.py 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. # test_objects.py -- tests for objects.py
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  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. # of the License or (at your option) any later version of
  8. # the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18. # MA 02110-1301, USA.
  19. """Tests for git base objects."""
  20. # TODO: Round-trip parse-serialize-parse and serialize-parse-serialize tests.
  21. import datetime
  22. import os
  23. import stat
  24. import unittest
  25. from dulwich.errors import (
  26. ChecksumMismatch,
  27. ObjectFormatException,
  28. )
  29. from dulwich.objects import (
  30. Blob,
  31. Tree,
  32. Commit,
  33. Tag,
  34. format_timezone,
  35. hex_to_sha,
  36. sha_to_hex,
  37. hex_to_filename,
  38. check_hexsha,
  39. check_identity,
  40. parse_timezone,
  41. parse_tree,
  42. _parse_tree_py,
  43. )
  44. from dulwich.tests import (
  45. TestSkipped,
  46. )
  47. from utils import (
  48. make_commit,
  49. make_object,
  50. )
  51. a_sha = '6f670c0fb53f9463760b7295fbb814e965fb20c8'
  52. b_sha = '2969be3e8ee1c0222396a5611407e4769f14e54b'
  53. c_sha = '954a536f7819d40e6f637f849ee187dd10066349'
  54. tree_sha = '70c190eb48fa8bbb50ddc692a17b44cb781af7f6'
  55. tag_sha = '71033db03a03c6a36721efcf1968dd8f8e0cf023'
  56. try:
  57. from itertools import permutations
  58. except ImportError:
  59. # Implementation of permutations from Python 2.6 documentation:
  60. # http://docs.python.org/2.6/library/itertools.html#itertools.permutations
  61. # Copyright (c) 2001-2010 Python Software Foundation; All Rights Reserved
  62. # Modified syntax slightly to run under Python 2.4.
  63. def permutations(iterable, r=None):
  64. # permutations('ABCD', 2) --> AB AC AD BA BC BD CA CB CD DA DB DC
  65. # permutations(range(3)) --> 012 021 102 120 201 210
  66. pool = tuple(iterable)
  67. n = len(pool)
  68. if r is None:
  69. r = n
  70. if r > n:
  71. return
  72. indices = range(n)
  73. cycles = range(n, n-r, -1)
  74. yield tuple(pool[i] for i in indices[:r])
  75. while n:
  76. for i in reversed(range(r)):
  77. cycles[i] -= 1
  78. if cycles[i] == 0:
  79. indices[i:] = indices[i+1:] + indices[i:i+1]
  80. cycles[i] = n - i
  81. else:
  82. j = cycles[i]
  83. indices[i], indices[-j] = indices[-j], indices[i]
  84. yield tuple(pool[i] for i in indices[:r])
  85. break
  86. else:
  87. return
  88. class TestHexToSha(unittest.TestCase):
  89. def test_simple(self):
  90. self.assertEquals("\xab\xcd" * 10, hex_to_sha("abcd" * 10))
  91. def test_reverse(self):
  92. self.assertEquals("abcd" * 10, sha_to_hex("\xab\xcd" * 10))
  93. class BlobReadTests(unittest.TestCase):
  94. """Test decompression of blobs"""
  95. def get_sha_file(self, cls, base, sha):
  96. dir = os.path.join(os.path.dirname(__file__), 'data', base)
  97. return cls.from_path(hex_to_filename(dir, sha))
  98. def get_blob(self, sha):
  99. """Return the blob named sha from the test data dir"""
  100. return self.get_sha_file(Blob, 'blobs', sha)
  101. def get_tree(self, sha):
  102. return self.get_sha_file(Tree, 'trees', sha)
  103. def get_tag(self, sha):
  104. return self.get_sha_file(Tag, 'tags', sha)
  105. def commit(self, sha):
  106. return self.get_sha_file(Commit, 'commits', sha)
  107. def test_decompress_simple_blob(self):
  108. b = self.get_blob(a_sha)
  109. self.assertEqual(b.data, 'test 1\n')
  110. self.assertEqual(b.sha().hexdigest(), a_sha)
  111. def test_hash(self):
  112. b = self.get_blob(a_sha)
  113. self.assertEqual(hash(b.id), hash(b))
  114. def test_parse_empty_blob_object(self):
  115. sha = 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391'
  116. b = self.get_blob(sha)
  117. self.assertEqual(b.data, '')
  118. self.assertEqual(b.id, sha)
  119. self.assertEqual(b.sha().hexdigest(), sha)
  120. def test_create_blob_from_string(self):
  121. string = 'test 2\n'
  122. b = Blob.from_string(string)
  123. self.assertEqual(b.data, string)
  124. self.assertEqual(b.sha().hexdigest(), b_sha)
  125. def test_chunks(self):
  126. string = 'test 5\n'
  127. b = Blob.from_string(string)
  128. self.assertEqual([string], b.chunked)
  129. def test_set_chunks(self):
  130. b = Blob()
  131. b.chunked = ['te', 'st', ' 5\n']
  132. self.assertEqual('test 5\n', b.data)
  133. b.chunked = ['te', 'st', ' 6\n']
  134. self.assertEqual('test 6\n', b.as_raw_string())
  135. def test_parse_legacy_blob(self):
  136. string = 'test 3\n'
  137. b = self.get_blob(c_sha)
  138. self.assertEqual(b.data, string)
  139. self.assertEqual(b.sha().hexdigest(), c_sha)
  140. def test_eq(self):
  141. blob1 = self.get_blob(a_sha)
  142. blob2 = self.get_blob(a_sha)
  143. self.assertEqual(blob1, blob2)
  144. def test_read_tree_from_file(self):
  145. t = self.get_tree(tree_sha)
  146. self.assertEqual(t.entries()[0], (33188, 'a', a_sha))
  147. self.assertEqual(t.entries()[1], (33188, 'b', b_sha))
  148. def test_read_tag_from_file(self):
  149. t = self.get_tag(tag_sha)
  150. self.assertEqual(t.object, (Commit, '51b668fd5bf7061b7d6fa525f88803e6cfadaa51'))
  151. self.assertEqual(t.name,'signed')
  152. self.assertEqual(t.tagger,'Ali Sabil <ali.sabil@gmail.com>')
  153. self.assertEqual(t.tag_time, 1231203091)
  154. self.assertEqual(t.message, 'This is a signed tag\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.9 (GNU/Linux)\n\niEYEABECAAYFAkliqx8ACgkQqSMmLy9u/kcx5ACfakZ9NnPl02tOyYP6pkBoEkU1\n5EcAn0UFgokaSvS371Ym/4W9iJj6vh3h\n=ql7y\n-----END PGP SIGNATURE-----\n')
  155. def test_read_commit_from_file(self):
  156. sha = '60dacdc733de308bb77bb76ce0fb0f9b44c9769e'
  157. c = self.commit(sha)
  158. self.assertEqual(c.tree, tree_sha)
  159. self.assertEqual(c.parents, ['0d89f20333fbb1d2f3a94da77f4981373d8f4310'])
  160. self.assertEqual(c.author,
  161. 'James Westby <jw+debian@jameswestby.net>')
  162. self.assertEqual(c.committer,
  163. 'James Westby <jw+debian@jameswestby.net>')
  164. self.assertEqual(c.commit_time, 1174759230)
  165. self.assertEqual(c.commit_timezone, 0)
  166. self.assertEqual(c.author_timezone, 0)
  167. self.assertEqual(c.message, 'Test commit\n')
  168. def test_read_commit_no_parents(self):
  169. sha = '0d89f20333fbb1d2f3a94da77f4981373d8f4310'
  170. c = self.commit(sha)
  171. self.assertEqual(c.tree, '90182552c4a85a45ec2a835cadc3451bebdfe870')
  172. self.assertEqual(c.parents, [])
  173. self.assertEqual(c.author,
  174. 'James Westby <jw+debian@jameswestby.net>')
  175. self.assertEqual(c.committer,
  176. 'James Westby <jw+debian@jameswestby.net>')
  177. self.assertEqual(c.commit_time, 1174758034)
  178. self.assertEqual(c.commit_timezone, 0)
  179. self.assertEqual(c.author_timezone, 0)
  180. self.assertEqual(c.message, 'Test commit\n')
  181. def test_read_commit_two_parents(self):
  182. sha = '5dac377bdded4c9aeb8dff595f0faeebcc8498cc'
  183. c = self.commit(sha)
  184. self.assertEqual(c.tree, 'd80c186a03f423a81b39df39dc87fd269736ca86')
  185. self.assertEqual(c.parents, ['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
  186. '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'])
  187. self.assertEqual(c.author,
  188. 'James Westby <jw+debian@jameswestby.net>')
  189. self.assertEqual(c.committer,
  190. 'James Westby <jw+debian@jameswestby.net>')
  191. self.assertEqual(c.commit_time, 1174773719)
  192. self.assertEqual(c.commit_timezone, 0)
  193. self.assertEqual(c.author_timezone, 0)
  194. self.assertEqual(c.message, 'Merge ../b\n')
  195. def test_check_id(self):
  196. wrong_sha = '1' * 40
  197. b = self.get_blob(wrong_sha)
  198. self.assertEqual(wrong_sha, b.id)
  199. self.assertRaises(ChecksumMismatch, b.check)
  200. self.assertEqual('742b386350576589175e374a5706505cbd17680c', b.id)
  201. class ShaFileCheckTests(unittest.TestCase):
  202. def assertCheckFails(self, cls, data):
  203. obj = cls()
  204. def do_check():
  205. obj.set_raw_string(data)
  206. obj.check()
  207. self.assertRaises(ObjectFormatException, do_check)
  208. def assertCheckSucceeds(self, cls, data):
  209. obj = cls()
  210. obj.set_raw_string(data)
  211. self.assertEqual(None, obj.check())
  212. class CommitSerializationTests(unittest.TestCase):
  213. def make_commit(self, **kwargs):
  214. attrs = {'tree': 'd80c186a03f423a81b39df39dc87fd269736ca86',
  215. 'parents': ['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
  216. '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'],
  217. 'author': 'James Westby <jw+debian@jameswestby.net>',
  218. 'committer': 'James Westby <jw+debian@jameswestby.net>',
  219. 'commit_time': 1174773719,
  220. 'author_time': 1174773719,
  221. 'commit_timezone': 0,
  222. 'author_timezone': 0,
  223. 'message': 'Merge ../b\n'}
  224. attrs.update(kwargs)
  225. return make_commit(**attrs)
  226. def test_encoding(self):
  227. c = self.make_commit(encoding='iso8859-1')
  228. self.assertTrue('encoding iso8859-1\n' in c.as_raw_string())
  229. def test_short_timestamp(self):
  230. c = self.make_commit(commit_time=30)
  231. c1 = Commit()
  232. c1.set_raw_string(c.as_raw_string())
  233. self.assertEquals(30, c1.commit_time)
  234. def test_raw_length(self):
  235. c = self.make_commit()
  236. self.assertEquals(len(c.as_raw_string()), c.raw_length())
  237. def test_simple(self):
  238. c = self.make_commit()
  239. self.assertEquals(c.id, '5dac377bdded4c9aeb8dff595f0faeebcc8498cc')
  240. self.assertEquals(
  241. 'tree d80c186a03f423a81b39df39dc87fd269736ca86\n'
  242. 'parent ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd\n'
  243. 'parent 4cffe90e0a41ad3f5190079d7c8f036bde29cbe6\n'
  244. 'author James Westby <jw+debian@jameswestby.net> '
  245. '1174773719 +0000\n'
  246. 'committer James Westby <jw+debian@jameswestby.net> '
  247. '1174773719 +0000\n'
  248. '\n'
  249. 'Merge ../b\n', c.as_raw_string())
  250. def test_timezone(self):
  251. c = self.make_commit(commit_timezone=(5 * 60))
  252. self.assertTrue(" +0005\n" in c.as_raw_string())
  253. def test_neg_timezone(self):
  254. c = self.make_commit(commit_timezone=(-1 * 3600))
  255. self.assertTrue(" -0100\n" in c.as_raw_string())
  256. default_committer = 'James Westby <jw+debian@jameswestby.net> 1174773719 +0000'
  257. class CommitParseTests(ShaFileCheckTests):
  258. def make_commit_lines(self,
  259. tree='d80c186a03f423a81b39df39dc87fd269736ca86',
  260. parents=['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
  261. '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'],
  262. author=default_committer,
  263. committer=default_committer,
  264. encoding=None,
  265. message='Merge ../b\n',
  266. extra=None):
  267. lines = []
  268. if tree is not None:
  269. lines.append('tree %s' % tree)
  270. if parents is not None:
  271. lines.extend('parent %s' % p for p in parents)
  272. if author is not None:
  273. lines.append('author %s' % author)
  274. if committer is not None:
  275. lines.append('committer %s' % committer)
  276. if encoding is not None:
  277. lines.append('encoding %s' % encoding)
  278. if extra is not None:
  279. for name, value in sorted(extra.iteritems()):
  280. lines.append('%s %s' % (name, value))
  281. lines.append('')
  282. if message is not None:
  283. lines.append(message)
  284. return lines
  285. def make_commit_text(self, **kwargs):
  286. return '\n'.join(self.make_commit_lines(**kwargs))
  287. def test_simple(self):
  288. c = Commit.from_string(self.make_commit_text())
  289. self.assertEquals('Merge ../b\n', c.message)
  290. self.assertEquals('James Westby <jw+debian@jameswestby.net>', c.author)
  291. self.assertEquals('James Westby <jw+debian@jameswestby.net>',
  292. c.committer)
  293. self.assertEquals('d80c186a03f423a81b39df39dc87fd269736ca86', c.tree)
  294. self.assertEquals(['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
  295. '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'],
  296. c.parents)
  297. expected_time = datetime.datetime(2007, 3, 24, 22, 1, 59)
  298. self.assertEquals(expected_time,
  299. datetime.datetime.utcfromtimestamp(c.commit_time))
  300. self.assertEquals(0, c.commit_timezone)
  301. self.assertEquals(expected_time,
  302. datetime.datetime.utcfromtimestamp(c.author_time))
  303. self.assertEquals(0, c.author_timezone)
  304. self.assertEquals(None, c.encoding)
  305. def test_custom(self):
  306. c = Commit.from_string(self.make_commit_text(
  307. extra={'extra-field': 'data'}))
  308. self.assertEquals([('extra-field', 'data')], c.extra)
  309. def test_encoding(self):
  310. c = Commit.from_string(self.make_commit_text(encoding='UTF-8'))
  311. self.assertEquals('UTF-8', c.encoding)
  312. def test_check(self):
  313. self.assertCheckSucceeds(Commit, self.make_commit_text())
  314. self.assertCheckSucceeds(Commit, self.make_commit_text(parents=None))
  315. self.assertCheckSucceeds(Commit,
  316. self.make_commit_text(encoding='UTF-8'))
  317. self.assertCheckFails(Commit, self.make_commit_text(tree='xxx'))
  318. self.assertCheckFails(Commit, self.make_commit_text(
  319. parents=[a_sha, 'xxx']))
  320. bad_committer = "some guy without an email address 1174773719 +0000"
  321. self.assertCheckFails(Commit,
  322. self.make_commit_text(committer=bad_committer))
  323. self.assertCheckFails(Commit,
  324. self.make_commit_text(author=bad_committer))
  325. self.assertCheckFails(Commit, self.make_commit_text(author=None))
  326. self.assertCheckFails(Commit, self.make_commit_text(committer=None))
  327. self.assertCheckFails(Commit, self.make_commit_text(
  328. author=None, committer=None))
  329. def test_check_duplicates(self):
  330. # duplicate each of the header fields
  331. for i in xrange(5):
  332. lines = self.make_commit_lines(parents=[a_sha], encoding='UTF-8')
  333. lines.insert(i, lines[i])
  334. text = '\n'.join(lines)
  335. if lines[i].startswith('parent'):
  336. # duplicate parents are ok for now
  337. self.assertCheckSucceeds(Commit, text)
  338. else:
  339. self.assertCheckFails(Commit, text)
  340. def test_check_order(self):
  341. lines = self.make_commit_lines(parents=[a_sha], encoding='UTF-8')
  342. headers = lines[:5]
  343. rest = lines[5:]
  344. # of all possible permutations, ensure only the original succeeds
  345. for perm in permutations(headers):
  346. perm = list(perm)
  347. text = '\n'.join(perm + rest)
  348. if perm == headers:
  349. self.assertCheckSucceeds(Commit, text)
  350. else:
  351. self.assertCheckFails(Commit, text)
  352. class TreeTests(ShaFileCheckTests):
  353. def test_simple(self):
  354. myhexsha = "d80c186a03f423a81b39df39dc87fd269736ca86"
  355. x = Tree()
  356. x["myname"] = (0100755, myhexsha)
  357. self.assertEquals('100755 myname\0' + hex_to_sha(myhexsha),
  358. x.as_raw_string())
  359. def test_tree_dir_sort(self):
  360. x = Tree()
  361. x["a.c"] = (0100755, "d80c186a03f423a81b39df39dc87fd269736ca86")
  362. x["a"] = (stat.S_IFDIR, "d80c186a03f423a81b39df39dc87fd269736ca86")
  363. x["a/c"] = (stat.S_IFDIR, "d80c186a03f423a81b39df39dc87fd269736ca86")
  364. self.assertEquals(["a.c", "a", "a/c"], [p[0] for p in x.iteritems()])
  365. def _do_test_parse_tree(self, parse_tree):
  366. dir = os.path.join(os.path.dirname(__file__), 'data', 'trees')
  367. o = Tree.from_path(hex_to_filename(dir, tree_sha))
  368. self.assertEquals([('a', 0100644, a_sha), ('b', 0100644, b_sha)],
  369. list(parse_tree(o.as_raw_string())))
  370. def test_parse_tree(self):
  371. self._do_test_parse_tree(_parse_tree_py)
  372. def test_parse_tree_extension(self):
  373. if parse_tree is _parse_tree_py:
  374. raise TestSkipped('parse_tree extension not found')
  375. self._do_test_parse_tree(parse_tree)
  376. def test_check(self):
  377. t = Tree
  378. sha = hex_to_sha(a_sha)
  379. # filenames
  380. self.assertCheckSucceeds(t, '100644 .a\0%s' % sha)
  381. self.assertCheckFails(t, '100644 \0%s' % sha)
  382. self.assertCheckFails(t, '100644 .\0%s' % sha)
  383. self.assertCheckFails(t, '100644 a/a\0%s' % sha)
  384. self.assertCheckFails(t, '100644 ..\0%s' % sha)
  385. # modes
  386. self.assertCheckSucceeds(t, '100644 a\0%s' % sha)
  387. self.assertCheckSucceeds(t, '100755 a\0%s' % sha)
  388. self.assertCheckSucceeds(t, '160000 a\0%s' % sha)
  389. # TODO more whitelisted modes
  390. self.assertCheckFails(t, '123456 a\0%s' % sha)
  391. self.assertCheckFails(t, '123abc a\0%s' % sha)
  392. # shas
  393. self.assertCheckFails(t, '100644 a\0%s' % ('x' * 5))
  394. self.assertCheckFails(t, '100644 a\0%s' % ('x' * 18 + '\0'))
  395. self.assertCheckFails(t, '100644 a\0%s\n100644 b\0%s' % ('x' * 21, sha))
  396. # ordering
  397. sha2 = hex_to_sha(b_sha)
  398. self.assertCheckSucceeds(t, '100644 a\0%s\n100644 b\0%s' % (sha, sha))
  399. self.assertCheckSucceeds(t, '100644 a\0%s\n100644 b\0%s' % (sha, sha2))
  400. self.assertCheckFails(t, '100644 a\0%s\n100755 a\0%s' % (sha, sha2))
  401. self.assertCheckFails(t, '100644 b\0%s\n100644 a\0%s' % (sha2, sha))
  402. def test_iter(self):
  403. t = Tree()
  404. t["foo"] = (0100644, a_sha)
  405. self.assertEquals(set(["foo"]), set(t))
  406. class TagSerializeTests(unittest.TestCase):
  407. def test_serialize_simple(self):
  408. x = make_object(Tag,
  409. tagger='Jelmer Vernooij <jelmer@samba.org>',
  410. name='0.1',
  411. message='Tag 0.1',
  412. object=(Blob, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
  413. tag_time=423423423,
  414. tag_timezone=0)
  415. self.assertEquals(('object d80c186a03f423a81b39df39dc87fd269736ca86\n'
  416. 'type blob\n'
  417. 'tag 0.1\n'
  418. 'tagger Jelmer Vernooij <jelmer@samba.org> '
  419. '423423423 +0000\n'
  420. '\n'
  421. 'Tag 0.1'), x.as_raw_string())
  422. default_tagger = ('Linus Torvalds <torvalds@woody.linux-foundation.org> '
  423. '1183319674 -0700')
  424. default_message = """Linux 2.6.22-rc7
  425. -----BEGIN PGP SIGNATURE-----
  426. Version: GnuPG v1.4.7 (GNU/Linux)
  427. iD8DBQBGiAaAF3YsRnbiHLsRAitMAKCiLboJkQECM/jpYsY3WPfvUgLXkACgg3ql
  428. OK2XeQOiEeXtT76rV4t2WR4=
  429. =ivrA
  430. -----END PGP SIGNATURE-----
  431. """
  432. class TagParseTests(ShaFileCheckTests):
  433. def make_tag_lines(self,
  434. object_sha="a38d6181ff27824c79fc7df825164a212eff6a3f",
  435. object_type_name="commit",
  436. name="v2.6.22-rc7",
  437. tagger=default_tagger,
  438. message=default_message):
  439. lines = []
  440. if object_sha is not None:
  441. lines.append("object %s" % object_sha)
  442. if object_type_name is not None:
  443. lines.append("type %s" % object_type_name)
  444. if name is not None:
  445. lines.append("tag %s" % name)
  446. if tagger is not None:
  447. lines.append("tagger %s" % tagger)
  448. lines.append("")
  449. if message is not None:
  450. lines.append(message)
  451. return lines
  452. def make_tag_text(self, **kwargs):
  453. return "\n".join(self.make_tag_lines(**kwargs))
  454. def test_parse(self):
  455. x = Tag()
  456. x.set_raw_string(self.make_tag_text())
  457. self.assertEquals(
  458. "Linus Torvalds <torvalds@woody.linux-foundation.org>", x.tagger)
  459. self.assertEquals("v2.6.22-rc7", x.name)
  460. object_type, object_sha = x.object
  461. self.assertEquals("a38d6181ff27824c79fc7df825164a212eff6a3f",
  462. object_sha)
  463. self.assertEquals(Commit, object_type)
  464. self.assertEquals(datetime.datetime.utcfromtimestamp(x.tag_time),
  465. datetime.datetime(2007, 7, 1, 19, 54, 34))
  466. self.assertEquals(-25200, x.tag_timezone)
  467. def test_parse_no_tagger(self):
  468. x = Tag()
  469. x.set_raw_string(self.make_tag_text(tagger=None))
  470. self.assertEquals(None, x.tagger)
  471. self.assertEquals("v2.6.22-rc7", x.name)
  472. def test_check(self):
  473. self.assertCheckSucceeds(Tag, self.make_tag_text())
  474. self.assertCheckFails(Tag, self.make_tag_text(object_sha=None))
  475. self.assertCheckFails(Tag, self.make_tag_text(object_type_name=None))
  476. self.assertCheckFails(Tag, self.make_tag_text(name=None))
  477. self.assertCheckFails(Tag, self.make_tag_text(name=''))
  478. self.assertCheckFails(Tag, self.make_tag_text(
  479. object_type_name="foobar"))
  480. self.assertCheckFails(Tag, self.make_tag_text(
  481. tagger="some guy without an email address 1183319674 -0700"))
  482. self.assertCheckFails(Tag, self.make_tag_text(
  483. tagger=("Linus Torvalds <torvalds@woody.linux-foundation.org> "
  484. "Sun 7 Jul 2007 12:54:34 +0700")))
  485. self.assertCheckFails(Tag, self.make_tag_text(object_sha="xxx"))
  486. def test_check_duplicates(self):
  487. # duplicate each of the header fields
  488. for i in xrange(4):
  489. lines = self.make_tag_lines()
  490. lines.insert(i, lines[i])
  491. self.assertCheckFails(Tag, '\n'.join(lines))
  492. def test_check_order(self):
  493. lines = self.make_tag_lines()
  494. headers = lines[:4]
  495. rest = lines[4:]
  496. # of all possible permutations, ensure only the original succeeds
  497. for perm in permutations(headers):
  498. perm = list(perm)
  499. text = '\n'.join(perm + rest)
  500. if perm == headers:
  501. self.assertCheckSucceeds(Tag, text)
  502. else:
  503. self.assertCheckFails(Tag, text)
  504. class CheckTests(unittest.TestCase):
  505. def test_check_hexsha(self):
  506. check_hexsha(a_sha, "failed to check good sha")
  507. self.assertRaises(ObjectFormatException, check_hexsha, '1' * 39,
  508. 'sha too short')
  509. self.assertRaises(ObjectFormatException, check_hexsha, '1' * 41,
  510. 'sha too long')
  511. self.assertRaises(ObjectFormatException, check_hexsha, 'x' * 40,
  512. 'invalid characters')
  513. def test_check_identity(self):
  514. check_identity("Dave Borowitz <dborowitz@google.com>",
  515. "failed to check good identity")
  516. check_identity("<dborowitz@google.com>",
  517. "failed to check good identity")
  518. self.assertRaises(ObjectFormatException, check_identity,
  519. "Dave Borowitz", "no email")
  520. self.assertRaises(ObjectFormatException, check_identity,
  521. "Dave Borowitz <dborowitz", "incomplete email")
  522. self.assertRaises(ObjectFormatException, check_identity,
  523. "dborowitz@google.com>", "incomplete email")
  524. self.assertRaises(ObjectFormatException, check_identity,
  525. "Dave Borowitz <<dborowitz@google.com>", "typo")
  526. self.assertRaises(ObjectFormatException, check_identity,
  527. "Dave Borowitz <dborowitz@google.com>>", "typo")
  528. self.assertRaises(ObjectFormatException, check_identity,
  529. "Dave Borowitz <dborowitz@google.com>xxx",
  530. "trailing characters")
  531. class TimezoneTests(unittest.TestCase):
  532. def test_parse_timezone_utc(self):
  533. self.assertEquals((0, False), parse_timezone("+0000"))
  534. def test_parse_timezone_utc_negative(self):
  535. self.assertEquals((0, True), parse_timezone("-0000"))
  536. def test_generate_timezone_utc(self):
  537. self.assertEquals("+0000", format_timezone(0))
  538. def test_generate_timezone_utc_negative(self):
  539. self.assertEquals("-0000", format_timezone(0, True))
  540. def test_parse_timezone_cet(self):
  541. self.assertEquals((60 * 60, False), parse_timezone("+0100"))
  542. def test_format_timezone_cet(self):
  543. self.assertEquals("+0100", format_timezone(60 * 60))
  544. def test_format_timezone_pdt(self):
  545. self.assertEquals("-0400", format_timezone(-4 * 60 * 60))
  546. def test_parse_timezone_pdt(self):
  547. self.assertEquals((-4 * 60 * 60, False), parse_timezone("-0400"))
  548. def test_format_timezone_pdt_half(self):
  549. self.assertEquals("-0440",
  550. format_timezone(int(((-4 * 60) - 40) * 60)))
  551. def test_parse_timezone_pdt_half(self):
  552. self.assertEquals((((-4 * 60) - 40) * 60, False),
  553. parse_timezone("-0440"))