123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- # test_objects.py -- tests for objects.py
- # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License
- # as published by the Free Software Foundation; version 2
- # of the License or (at your option) any later version of
- # the License.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- # MA 02110-1301, USA.
- """Tests for git base objects."""
- # TODO: Round-trip parse-serialize-parse and serialize-parse-serialize tests.
- from cStringIO import StringIO
- import datetime
- import os
- import stat
- from dulwich.errors import (
- ObjectFormatException,
- )
- from dulwich.misc import (
- TreeEntry,
- )
- from dulwich.objects import (
- Blob,
- Tree,
- Commit,
- Tag,
- format_timezone,
- hex_to_sha,
- sha_to_hex,
- hex_to_filename,
- check_hexsha,
- check_identity,
- parse_timezone,
- parse_tree,
- _parse_tree_py,
- sorted_tree_items,
- _sorted_tree_items_py,
- )
- from dulwich.tests import (
- TestCase,
- TestSkipped,
- )
- from utils import (
- make_commit,
- make_object,
- )
- a_sha = '6f670c0fb53f9463760b7295fbb814e965fb20c8'
- b_sha = '2969be3e8ee1c0222396a5611407e4769f14e54b'
- c_sha = '954a536f7819d40e6f637f849ee187dd10066349'
- tree_sha = '70c190eb48fa8bbb50ddc692a17b44cb781af7f6'
- tag_sha = '71033db03a03c6a36721efcf1968dd8f8e0cf023'
- try:
- from itertools import permutations
- except ImportError:
- # Implementation of permutations from Python 2.6 documentation:
- # http://docs.python.org/2.6/library/itertools.html#itertools.permutations
- # Copyright (c) 2001-2010 Python Software Foundation; All Rights Reserved
- # Modified syntax slightly to run under Python 2.4.
- def permutations(iterable, r=None):
- # permutations('ABCD', 2) --> AB AC AD BA BC BD CA CB CD DA DB DC
- # permutations(range(3)) --> 012 021 102 120 201 210
- pool = tuple(iterable)
- n = len(pool)
- if r is None:
- r = n
- if r > n:
- return
- indices = range(n)
- cycles = range(n, n-r, -1)
- yield tuple(pool[i] for i in indices[:r])
- while n:
- for i in reversed(range(r)):
- cycles[i] -= 1
- if cycles[i] == 0:
- indices[i:] = indices[i+1:] + indices[i:i+1]
- cycles[i] = n - i
- else:
- j = cycles[i]
- indices[i], indices[-j] = indices[-j], indices[i]
- yield tuple(pool[i] for i in indices[:r])
- break
- else:
- return
- class TestHexToSha(TestCase):
- def test_simple(self):
- self.assertEquals("\xab\xcd" * 10, hex_to_sha("abcd" * 10))
- def test_reverse(self):
- self.assertEquals("abcd" * 10, sha_to_hex("\xab\xcd" * 10))
- class BlobReadTests(TestCase):
- """Test decompression of blobs"""
- def get_sha_file(self, cls, base, sha):
- dir = os.path.join(os.path.dirname(__file__), 'data', base)
- return cls.from_path(hex_to_filename(dir, sha))
- def get_blob(self, sha):
- """Return the blob named sha from the test data dir"""
- return self.get_sha_file(Blob, 'blobs', sha)
-
- def get_tree(self, sha):
- return self.get_sha_file(Tree, 'trees', sha)
-
- def get_tag(self, sha):
- return self.get_sha_file(Tag, 'tags', sha)
-
- def commit(self, sha):
- return self.get_sha_file(Commit, 'commits', sha)
-
- def test_decompress_simple_blob(self):
- b = self.get_blob(a_sha)
- self.assertEqual(b.data, 'test 1\n')
- self.assertEqual(b.sha().hexdigest(), a_sha)
-
- def test_hash(self):
- b = self.get_blob(a_sha)
- self.assertEqual(hash(b.id), hash(b))
- def test_parse_empty_blob_object(self):
- sha = 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391'
- b = self.get_blob(sha)
- self.assertEqual(b.data, '')
- self.assertEqual(b.id, sha)
- self.assertEqual(b.sha().hexdigest(), sha)
-
- def test_create_blob_from_string(self):
- string = 'test 2\n'
- b = Blob.from_string(string)
- self.assertEqual(b.data, string)
- self.assertEqual(b.sha().hexdigest(), b_sha)
- def test_legacy_from_file(self):
- b1 = Blob.from_string("foo")
- b_raw = b1.as_legacy_object()
- b2 = b1.from_file(StringIO(b_raw))
- self.assertEquals(b1, b2)
- def test_chunks(self):
- string = 'test 5\n'
- b = Blob.from_string(string)
- self.assertEqual([string], b.chunked)
- def test_set_chunks(self):
- b = Blob()
- b.chunked = ['te', 'st', ' 5\n']
- self.assertEqual('test 5\n', b.data)
- b.chunked = ['te', 'st', ' 6\n']
- self.assertEqual('test 6\n', b.as_raw_string())
-
- def test_parse_legacy_blob(self):
- string = 'test 3\n'
- b = self.get_blob(c_sha)
- self.assertEqual(b.data, string)
- self.assertEqual(b.sha().hexdigest(), c_sha)
-
- def test_eq(self):
- blob1 = self.get_blob(a_sha)
- blob2 = self.get_blob(a_sha)
- self.assertEqual(blob1, blob2)
-
- def test_read_tree_from_file(self):
- t = self.get_tree(tree_sha)
- self.assertEqual(t.entries()[0], (33188, 'a', a_sha))
- self.assertEqual(t.entries()[1], (33188, 'b', b_sha))
-
- def test_read_tag_from_file(self):
- t = self.get_tag(tag_sha)
- self.assertEqual(t.object, (Commit, '51b668fd5bf7061b7d6fa525f88803e6cfadaa51'))
- self.assertEqual(t.name,'signed')
- self.assertEqual(t.tagger,'Ali Sabil <ali.sabil@gmail.com>')
- self.assertEqual(t.tag_time, 1231203091)
- 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')
-
- def test_read_commit_from_file(self):
- sha = '60dacdc733de308bb77bb76ce0fb0f9b44c9769e'
- c = self.commit(sha)
- self.assertEqual(c.tree, tree_sha)
- self.assertEqual(c.parents,
- ['0d89f20333fbb1d2f3a94da77f4981373d8f4310'])
- self.assertEqual(c.author,
- 'James Westby <jw+debian@jameswestby.net>')
- self.assertEqual(c.committer,
- 'James Westby <jw+debian@jameswestby.net>')
- self.assertEqual(c.commit_time, 1174759230)
- self.assertEqual(c.commit_timezone, 0)
- self.assertEqual(c.author_timezone, 0)
- self.assertEqual(c.message, 'Test commit\n')
-
- def test_read_commit_no_parents(self):
- sha = '0d89f20333fbb1d2f3a94da77f4981373d8f4310'
- c = self.commit(sha)
- self.assertEqual(c.tree, '90182552c4a85a45ec2a835cadc3451bebdfe870')
- self.assertEqual(c.parents, [])
- self.assertEqual(c.author,
- 'James Westby <jw+debian@jameswestby.net>')
- self.assertEqual(c.committer,
- 'James Westby <jw+debian@jameswestby.net>')
- self.assertEqual(c.commit_time, 1174758034)
- self.assertEqual(c.commit_timezone, 0)
- self.assertEqual(c.author_timezone, 0)
- self.assertEqual(c.message, 'Test commit\n')
-
- def test_read_commit_two_parents(self):
- sha = '5dac377bdded4c9aeb8dff595f0faeebcc8498cc'
- c = self.commit(sha)
- self.assertEqual(c.tree, 'd80c186a03f423a81b39df39dc87fd269736ca86')
- self.assertEqual(c.parents, ['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
- '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'])
- self.assertEqual(c.author,
- 'James Westby <jw+debian@jameswestby.net>')
- self.assertEqual(c.committer,
- 'James Westby <jw+debian@jameswestby.net>')
- self.assertEqual(c.commit_time, 1174773719)
- self.assertEqual(c.commit_timezone, 0)
- self.assertEqual(c.author_timezone, 0)
- self.assertEqual(c.message, 'Merge ../b\n')
- def test_stub_sha(self):
- sha = '5' * 40
- c = make_commit(id=sha, message='foo')
- self.assertTrue(isinstance(c, Commit))
- self.assertEqual(sha, c.id)
- self.assertNotEqual(sha, c._make_sha())
- class ShaFileCheckTests(TestCase):
- def assertCheckFails(self, cls, data):
- obj = cls()
- def do_check():
- obj.set_raw_string(data)
- obj.check()
- self.assertRaises(ObjectFormatException, do_check)
- def assertCheckSucceeds(self, cls, data):
- obj = cls()
- obj.set_raw_string(data)
- self.assertEqual(None, obj.check())
- class CommitSerializationTests(TestCase):
- def make_commit(self, **kwargs):
- attrs = {'tree': 'd80c186a03f423a81b39df39dc87fd269736ca86',
- 'parents': ['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
- '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'],
- 'author': 'James Westby <jw+debian@jameswestby.net>',
- 'committer': 'James Westby <jw+debian@jameswestby.net>',
- 'commit_time': 1174773719,
- 'author_time': 1174773719,
- 'commit_timezone': 0,
- 'author_timezone': 0,
- 'message': 'Merge ../b\n'}
- attrs.update(kwargs)
- return make_commit(**attrs)
- def test_encoding(self):
- c = self.make_commit(encoding='iso8859-1')
- self.assertTrue('encoding iso8859-1\n' in c.as_raw_string())
- def test_short_timestamp(self):
- c = self.make_commit(commit_time=30)
- c1 = Commit()
- c1.set_raw_string(c.as_raw_string())
- self.assertEquals(30, c1.commit_time)
- def test_raw_length(self):
- c = self.make_commit()
- self.assertEquals(len(c.as_raw_string()), c.raw_length())
- def test_simple(self):
- c = self.make_commit()
- self.assertEquals(c.id, '5dac377bdded4c9aeb8dff595f0faeebcc8498cc')
- self.assertEquals(
- 'tree d80c186a03f423a81b39df39dc87fd269736ca86\n'
- 'parent ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd\n'
- 'parent 4cffe90e0a41ad3f5190079d7c8f036bde29cbe6\n'
- 'author James Westby <jw+debian@jameswestby.net> '
- '1174773719 +0000\n'
- 'committer James Westby <jw+debian@jameswestby.net> '
- '1174773719 +0000\n'
- '\n'
- 'Merge ../b\n', c.as_raw_string())
- def test_timezone(self):
- c = self.make_commit(commit_timezone=(5 * 60))
- self.assertTrue(" +0005\n" in c.as_raw_string())
- def test_neg_timezone(self):
- c = self.make_commit(commit_timezone=(-1 * 3600))
- self.assertTrue(" -0100\n" in c.as_raw_string())
- default_committer = 'James Westby <jw+debian@jameswestby.net> 1174773719 +0000'
- class CommitParseTests(ShaFileCheckTests):
- def make_commit_lines(self,
- tree='d80c186a03f423a81b39df39dc87fd269736ca86',
- parents=['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
- '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'],
- author=default_committer,
- committer=default_committer,
- encoding=None,
- message='Merge ../b\n',
- extra=None):
- lines = []
- if tree is not None:
- lines.append('tree %s' % tree)
- if parents is not None:
- lines.extend('parent %s' % p for p in parents)
- if author is not None:
- lines.append('author %s' % author)
- if committer is not None:
- lines.append('committer %s' % committer)
- if encoding is not None:
- lines.append('encoding %s' % encoding)
- if extra is not None:
- for name, value in sorted(extra.iteritems()):
- lines.append('%s %s' % (name, value))
- lines.append('')
- if message is not None:
- lines.append(message)
- return lines
- def make_commit_text(self, **kwargs):
- return '\n'.join(self.make_commit_lines(**kwargs))
- def test_simple(self):
- c = Commit.from_string(self.make_commit_text())
- self.assertEquals('Merge ../b\n', c.message)
- self.assertEquals('James Westby <jw+debian@jameswestby.net>', c.author)
- self.assertEquals('James Westby <jw+debian@jameswestby.net>',
- c.committer)
- self.assertEquals('d80c186a03f423a81b39df39dc87fd269736ca86', c.tree)
- self.assertEquals(['ab64bbdcc51b170d21588e5c5d391ee5c0c96dfd',
- '4cffe90e0a41ad3f5190079d7c8f036bde29cbe6'],
- c.parents)
- expected_time = datetime.datetime(2007, 3, 24, 22, 1, 59)
- self.assertEquals(expected_time,
- datetime.datetime.utcfromtimestamp(c.commit_time))
- self.assertEquals(0, c.commit_timezone)
- self.assertEquals(expected_time,
- datetime.datetime.utcfromtimestamp(c.author_time))
- self.assertEquals(0, c.author_timezone)
- self.assertEquals(None, c.encoding)
- def test_custom(self):
- c = Commit.from_string(self.make_commit_text(
- extra={'extra-field': 'data'}))
- self.assertEquals([('extra-field', 'data')], c.extra)
- def test_encoding(self):
- c = Commit.from_string(self.make_commit_text(encoding='UTF-8'))
- self.assertEquals('UTF-8', c.encoding)
- def test_check(self):
- self.assertCheckSucceeds(Commit, self.make_commit_text())
- self.assertCheckSucceeds(Commit, self.make_commit_text(parents=None))
- self.assertCheckSucceeds(Commit,
- self.make_commit_text(encoding='UTF-8'))
- self.assertCheckFails(Commit, self.make_commit_text(tree='xxx'))
- self.assertCheckFails(Commit, self.make_commit_text(
- parents=[a_sha, 'xxx']))
- bad_committer = "some guy without an email address 1174773719 +0000"
- self.assertCheckFails(Commit,
- self.make_commit_text(committer=bad_committer))
- self.assertCheckFails(Commit,
- self.make_commit_text(author=bad_committer))
- self.assertCheckFails(Commit, self.make_commit_text(author=None))
- self.assertCheckFails(Commit, self.make_commit_text(committer=None))
- self.assertCheckFails(Commit, self.make_commit_text(
- author=None, committer=None))
- def test_check_duplicates(self):
- # duplicate each of the header fields
- for i in xrange(5):
- lines = self.make_commit_lines(parents=[a_sha], encoding='UTF-8')
- lines.insert(i, lines[i])
- text = '\n'.join(lines)
- if lines[i].startswith('parent'):
- # duplicate parents are ok for now
- self.assertCheckSucceeds(Commit, text)
- else:
- self.assertCheckFails(Commit, text)
- def test_check_order(self):
- lines = self.make_commit_lines(parents=[a_sha], encoding='UTF-8')
- headers = lines[:5]
- rest = lines[5:]
- # of all possible permutations, ensure only the original succeeds
- for perm in permutations(headers):
- perm = list(perm)
- text = '\n'.join(perm + rest)
- if perm == headers:
- self.assertCheckSucceeds(Commit, text)
- else:
- self.assertCheckFails(Commit, text)
- _TREE_ITEMS = {
- 'a.c': (0100755, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- 'a': (stat.S_IFDIR, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- 'a/c': (stat.S_IFDIR, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- }
- _SORTED_TREE_ITEMS = [
- TreeEntry('a.c', 0100755, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- TreeEntry('a', stat.S_IFDIR, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- TreeEntry('a/c', stat.S_IFDIR, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- ]
- class TreeTests(ShaFileCheckTests):
- def test_simple(self):
- myhexsha = "d80c186a03f423a81b39df39dc87fd269736ca86"
- x = Tree()
- x["myname"] = (0100755, myhexsha)
- self.assertEquals('100755 myname\0' + hex_to_sha(myhexsha),
- x.as_raw_string())
- def test_tree_update_id(self):
- x = Tree()
- x["a.c"] = (0100755, "d80c186a03f423a81b39df39dc87fd269736ca86")
- self.assertEquals("0c5c6bc2c081accfbc250331b19e43b904ab9cdd", x.id)
- x["a.b"] = (stat.S_IFDIR, "d80c186a03f423a81b39df39dc87fd269736ca86")
- self.assertEquals("07bfcb5f3ada15bbebdfa3bbb8fd858a363925c8", x.id)
- def test_tree_iteritems_dir_sort(self):
- x = Tree()
- for name, item in _TREE_ITEMS.iteritems():
- x[name] = item
- self.assertEquals(_SORTED_TREE_ITEMS, list(x.iteritems()))
- def test_tree_items_dir_sort(self):
- x = Tree()
- for name, item in _TREE_ITEMS.iteritems():
- x[name] = item
- self.assertEquals(_SORTED_TREE_ITEMS, x.items())
- def _do_test_parse_tree(self, parse_tree):
- dir = os.path.join(os.path.dirname(__file__), 'data', 'trees')
- o = Tree.from_path(hex_to_filename(dir, tree_sha))
- self.assertEquals([('a', 0100644, a_sha), ('b', 0100644, b_sha)],
- list(parse_tree(o.as_raw_string())))
- def test_parse_tree(self):
- self._do_test_parse_tree(_parse_tree_py)
- def test_parse_tree_extension(self):
- if parse_tree is _parse_tree_py:
- raise TestSkipped('parse_tree extension not found')
- self._do_test_parse_tree(parse_tree)
- def _do_test_sorted_tree_items(self, sorted_tree_items):
- def do_sort(entries):
- return list(sorted_tree_items(entries))
- actual = do_sort(_TREE_ITEMS)
- self.assertEqual(_SORTED_TREE_ITEMS, actual)
- self.assertTrue(isinstance(actual[0], TreeEntry))
- # C/Python implementations may differ in specific error types, but
- # should all error on invalid inputs.
- # For example, the C implementation has stricter type checks, so may
- # raise TypeError where the Python implementation raises AttributeError.
- errors = (TypeError, ValueError, AttributeError)
- self.assertRaises(errors, do_sort, 'foo')
- self.assertRaises(errors, do_sort, {'foo': (1, 2, 3)})
- myhexsha = 'd80c186a03f423a81b39df39dc87fd269736ca86'
- self.assertRaises(errors, do_sort, {'foo': ('xxx', myhexsha)})
- self.assertRaises(errors, do_sort, {'foo': (0100755, 12345)})
- def test_sorted_tree_items(self):
- self._do_test_sorted_tree_items(_sorted_tree_items_py)
- def test_sorted_tree_items_extension(self):
- if sorted_tree_items is _sorted_tree_items_py:
- raise TestSkipped('sorted_tree_items extension not found')
- self._do_test_sorted_tree_items(sorted_tree_items)
- def test_check(self):
- t = Tree
- sha = hex_to_sha(a_sha)
- # filenames
- self.assertCheckSucceeds(t, '100644 .a\0%s' % sha)
- self.assertCheckFails(t, '100644 \0%s' % sha)
- self.assertCheckFails(t, '100644 .\0%s' % sha)
- self.assertCheckFails(t, '100644 a/a\0%s' % sha)
- self.assertCheckFails(t, '100644 ..\0%s' % sha)
- # modes
- self.assertCheckSucceeds(t, '100644 a\0%s' % sha)
- self.assertCheckSucceeds(t, '100755 a\0%s' % sha)
- self.assertCheckSucceeds(t, '160000 a\0%s' % sha)
- # TODO more whitelisted modes
- self.assertCheckFails(t, '123456 a\0%s' % sha)
- self.assertCheckFails(t, '123abc a\0%s' % sha)
- # shas
- self.assertCheckFails(t, '100644 a\0%s' % ('x' * 5))
- self.assertCheckFails(t, '100644 a\0%s' % ('x' * 18 + '\0'))
- self.assertCheckFails(t, '100644 a\0%s\n100644 b\0%s' % ('x' * 21, sha))
- # ordering
- sha2 = hex_to_sha(b_sha)
- self.assertCheckSucceeds(t, '100644 a\0%s\n100644 b\0%s' % (sha, sha))
- self.assertCheckSucceeds(t, '100644 a\0%s\n100644 b\0%s' % (sha, sha2))
- self.assertCheckFails(t, '100644 a\0%s\n100755 a\0%s' % (sha, sha2))
- self.assertCheckFails(t, '100644 b\0%s\n100644 a\0%s' % (sha2, sha))
- def test_iter(self):
- t = Tree()
- t["foo"] = (0100644, a_sha)
- self.assertEquals(set(["foo"]), set(t))
- class TagSerializeTests(TestCase):
- def test_serialize_simple(self):
- x = make_object(Tag,
- tagger='Jelmer Vernooij <jelmer@samba.org>',
- name='0.1',
- message='Tag 0.1',
- object=(Blob, 'd80c186a03f423a81b39df39dc87fd269736ca86'),
- tag_time=423423423,
- tag_timezone=0)
- self.assertEquals(('object d80c186a03f423a81b39df39dc87fd269736ca86\n'
- 'type blob\n'
- 'tag 0.1\n'
- 'tagger Jelmer Vernooij <jelmer@samba.org> '
- '423423423 +0000\n'
- '\n'
- 'Tag 0.1'), x.as_raw_string())
- default_tagger = ('Linus Torvalds <torvalds@woody.linux-foundation.org> '
- '1183319674 -0700')
- default_message = """Linux 2.6.22-rc7
- -----BEGIN PGP SIGNATURE-----
- Version: GnuPG v1.4.7 (GNU/Linux)
- iD8DBQBGiAaAF3YsRnbiHLsRAitMAKCiLboJkQECM/jpYsY3WPfvUgLXkACgg3ql
- OK2XeQOiEeXtT76rV4t2WR4=
- =ivrA
- -----END PGP SIGNATURE-----
- """
- class TagParseTests(ShaFileCheckTests):
- def make_tag_lines(self,
- object_sha="a38d6181ff27824c79fc7df825164a212eff6a3f",
- object_type_name="commit",
- name="v2.6.22-rc7",
- tagger=default_tagger,
- message=default_message):
- lines = []
- if object_sha is not None:
- lines.append("object %s" % object_sha)
- if object_type_name is not None:
- lines.append("type %s" % object_type_name)
- if name is not None:
- lines.append("tag %s" % name)
- if tagger is not None:
- lines.append("tagger %s" % tagger)
- lines.append("")
- if message is not None:
- lines.append(message)
- return lines
- def make_tag_text(self, **kwargs):
- return "\n".join(self.make_tag_lines(**kwargs))
- def test_parse(self):
- x = Tag()
- x.set_raw_string(self.make_tag_text())
- self.assertEquals(
- "Linus Torvalds <torvalds@woody.linux-foundation.org>", x.tagger)
- self.assertEquals("v2.6.22-rc7", x.name)
- object_type, object_sha = x.object
- self.assertEquals("a38d6181ff27824c79fc7df825164a212eff6a3f",
- object_sha)
- self.assertEquals(Commit, object_type)
- self.assertEquals(datetime.datetime.utcfromtimestamp(x.tag_time),
- datetime.datetime(2007, 7, 1, 19, 54, 34))
- self.assertEquals(-25200, x.tag_timezone)
- def test_parse_no_tagger(self):
- x = Tag()
- x.set_raw_string(self.make_tag_text(tagger=None))
- self.assertEquals(None, x.tagger)
- self.assertEquals("v2.6.22-rc7", x.name)
- def test_check(self):
- self.assertCheckSucceeds(Tag, self.make_tag_text())
- self.assertCheckFails(Tag, self.make_tag_text(object_sha=None))
- self.assertCheckFails(Tag, self.make_tag_text(object_type_name=None))
- self.assertCheckFails(Tag, self.make_tag_text(name=None))
- self.assertCheckFails(Tag, self.make_tag_text(name=''))
- self.assertCheckFails(Tag, self.make_tag_text(
- object_type_name="foobar"))
- self.assertCheckFails(Tag, self.make_tag_text(
- tagger="some guy without an email address 1183319674 -0700"))
- self.assertCheckFails(Tag, self.make_tag_text(
- tagger=("Linus Torvalds <torvalds@woody.linux-foundation.org> "
- "Sun 7 Jul 2007 12:54:34 +0700")))
- self.assertCheckFails(Tag, self.make_tag_text(object_sha="xxx"))
- def test_check_duplicates(self):
- # duplicate each of the header fields
- for i in xrange(4):
- lines = self.make_tag_lines()
- lines.insert(i, lines[i])
- self.assertCheckFails(Tag, '\n'.join(lines))
- def test_check_order(self):
- lines = self.make_tag_lines()
- headers = lines[:4]
- rest = lines[4:]
- # of all possible permutations, ensure only the original succeeds
- for perm in permutations(headers):
- perm = list(perm)
- text = '\n'.join(perm + rest)
- if perm == headers:
- self.assertCheckSucceeds(Tag, text)
- else:
- self.assertCheckFails(Tag, text)
- class CheckTests(TestCase):
- def test_check_hexsha(self):
- check_hexsha(a_sha, "failed to check good sha")
- self.assertRaises(ObjectFormatException, check_hexsha, '1' * 39,
- 'sha too short')
- self.assertRaises(ObjectFormatException, check_hexsha, '1' * 41,
- 'sha too long')
- self.assertRaises(ObjectFormatException, check_hexsha, 'x' * 40,
- 'invalid characters')
- def test_check_identity(self):
- check_identity("Dave Borowitz <dborowitz@google.com>",
- "failed to check good identity")
- check_identity("<dborowitz@google.com>",
- "failed to check good identity")
- self.assertRaises(ObjectFormatException, check_identity,
- "Dave Borowitz", "no email")
- self.assertRaises(ObjectFormatException, check_identity,
- "Dave Borowitz <dborowitz", "incomplete email")
- self.assertRaises(ObjectFormatException, check_identity,
- "dborowitz@google.com>", "incomplete email")
- self.assertRaises(ObjectFormatException, check_identity,
- "Dave Borowitz <<dborowitz@google.com>", "typo")
- self.assertRaises(ObjectFormatException, check_identity,
- "Dave Borowitz <dborowitz@google.com>>", "typo")
- self.assertRaises(ObjectFormatException, check_identity,
- "Dave Borowitz <dborowitz@google.com>xxx",
- "trailing characters")
- class TimezoneTests(TestCase):
- def test_parse_timezone_utc(self):
- self.assertEquals((0, False), parse_timezone("+0000"))
- def test_parse_timezone_utc_negative(self):
- self.assertEquals((0, True), parse_timezone("-0000"))
- def test_generate_timezone_utc(self):
- self.assertEquals("+0000", format_timezone(0))
- def test_generate_timezone_utc_negative(self):
- self.assertEquals("-0000", format_timezone(0, True))
- def test_parse_timezone_cet(self):
- self.assertEquals((60 * 60, False), parse_timezone("+0100"))
- def test_format_timezone_cet(self):
- self.assertEquals("+0100", format_timezone(60 * 60))
- def test_format_timezone_pdt(self):
- self.assertEquals("-0400", format_timezone(-4 * 60 * 60))
- def test_parse_timezone_pdt(self):
- self.assertEquals((-4 * 60 * 60, False), parse_timezone("-0400"))
- def test_format_timezone_pdt_half(self):
- self.assertEquals("-0440",
- format_timezone(int(((-4 * 60) - 40) * 60)))
- def test_parse_timezone_pdt_half(self):
- self.assertEquals((((-4 * 60) - 40) * 60, False),
- parse_timezone("-0440"))
|