1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright (C) 2007 Jelmer Vernooij <jelmer@samba.org>
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from dulwich.objects import (
Commit,
)
from bzrlib.plugins.git import tests
from bzrlib.plugins.git.mapping import (
BzrGitMappingv1,
escape_file_id,
revision_to_commit,
unescape_file_id,
)
class TestRevidConversionV1(tests.TestCase):
def test_simple_git_to_bzr_revision_id(self):
self.assertEqual("git-v1:"
"c6a4d8f1fa4ac650748e647c4b1b368f589a7356",
BzrGitMappingv1().revision_id_foreign_to_bzr(
"c6a4d8f1fa4ac650748e647c4b1b368f589a7356"))
def test_simple_bzr_to_git_revision_id(self):
self.assertEqual(("c6a4d8f1fa4ac650748e647c4b1b368f589a7356",
BzrGitMappingv1()),
BzrGitMappingv1().revision_id_bzr_to_foreign(
"git-v1:"
"c6a4d8f1fa4ac650748e647c4b1b368f589a7356"))
class FileidTests(tests.TestCase):
def test_escape_space(self):
self.assertEquals("bla_s", escape_file_id("bla "))
def test_escape_underscore(self):
self.assertEquals("bla__", escape_file_id("bla_"))
def test_escape_underscore_space(self):
self.assertEquals("bla___s", escape_file_id("bla_ "))
def test_unescape_underscore(self):
self.assertEquals("bla ", unescape_file_id("bla_s"))
def test_unescape_underscore_space(self):
self.assertEquals("bla _", unescape_file_id("bla_s__"))
class TestImportCommit(tests.TestCase):
def test_commit(self):
c = Commit()
c.tree = "cc9462f7f8263ef5adfbeff2fb936bb36b504cba"
c.message = "Some message"
c.committer = "Committer"
c.commit_time = 4
c.author_time = 5
c.commit_timezone = 60 * 5
c.author_timezone = 60 * 3
c.author = "Author"
c.serialize()
rev = BzrGitMappingv1().import_commit(c)
self.assertEquals("Some message", rev.message)
self.assertEquals("Committer", rev.committer)
self.assertEquals("Author", rev.properties['author'])
self.assertEquals(300, rev.timezone)
self.assertEquals((), rev.parent_ids)
self.assertEquals("5", rev.properties['author-timestamp'])
self.assertEquals("180", rev.properties['author-timezone'])
self.assertEquals("git-v1:" + c.id, rev.revision_id)
class RoundtripRevisionsFromGit(tests.TestCase):
def setUp(self):
super(RoundtripRevisionsFromGit, self).setUp()
self.mapping = BzrGitMappingv1()
def assertRoundtripTree(self, tree):
raise NotImplementedError(self.assertRoundtripTree)
def assertRoundtripBlob(self, blob):
raise NotImplementedError(self.assertRoundtripBlob)
def assertRoundtripCommit(self, commit1):
commit1.serialize()
rev = self.mapping.import_commit(commit1)
commit2 = revision_to_commit(rev, "12341212121212", None)
self.assertEquals(commit1.committer, commit2.committer)
self.assertEquals(commit1.commit_time, commit2.commit_time)
self.assertEquals(commit1.commit_timezone, commit2.commit_timezone)
self.assertEquals(commit1.author, commit2.author)
self.assertEquals(commit1.author_time, commit2.author_time)
self.assertEquals(commit1.author_timezone, commit2.author_timezone)
self.assertEquals(commit1.message, commit2.message)
def test_commit(self):
c = Commit()
c.tree = "cc9462f7f8263ef5adfbeff2fb936bb36b504cba"
c.message = "Some message"
c.committer = "Committer <Committer>"
c.commit_time = 4
c.commit_timezone = -60 * 3
c.author_time = 5
c.author_timezone = 60 * 2
c.author = "Author <author>"
self.assertRoundtripCommit(c)
|