test_porcelain.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. # test_porcelain.py -- porcelain tests
  2. # Copyright (C) 2013 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. # of the License or (at your option) a later version.
  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 dulwich.porcelain."""
  19. from cStringIO import StringIO
  20. import os
  21. import shutil
  22. import tarfile
  23. import tempfile
  24. from dulwich import porcelain
  25. from dulwich.diff_tree import tree_changes
  26. from dulwich.objects import (
  27. Blob,
  28. Tag,
  29. Tree,
  30. )
  31. from dulwich.repo import Repo
  32. from dulwich.tests import (
  33. TestCase,
  34. )
  35. from dulwich.tests.utils import (
  36. build_commit_graph,
  37. make_object,
  38. )
  39. class PorcelainTestCase(TestCase):
  40. def setUp(self):
  41. super(TestCase, self).setUp()
  42. repo_dir = tempfile.mkdtemp()
  43. self.addCleanup(shutil.rmtree, repo_dir)
  44. self.repo = Repo.init(repo_dir)
  45. class ArchiveTests(PorcelainTestCase):
  46. """Tests for the archive command."""
  47. def test_simple(self):
  48. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1], [3, 1, 2]])
  49. self.repo.refs["refs/heads/master"] = c3.id
  50. out = StringIO()
  51. err = StringIO()
  52. porcelain.archive(self.repo.path, "refs/heads/master", outstream=out,
  53. errstream=err)
  54. self.assertEquals("", err.getvalue())
  55. tf = tarfile.TarFile(fileobj=out)
  56. self.addCleanup(tf.close)
  57. self.assertEquals([], tf.getnames())
  58. class UpdateServerInfoTests(PorcelainTestCase):
  59. def test_simple(self):
  60. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  61. [3, 1, 2]])
  62. self.repo.refs["refs/heads/foo"] = c3.id
  63. porcelain.update_server_info(self.repo.path)
  64. self.assertTrue(os.path.exists(os.path.join(self.repo.controldir(),
  65. 'info', 'refs')))
  66. class CommitTests(PorcelainTestCase):
  67. def test_custom_author(self):
  68. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  69. [3, 1, 2]])
  70. self.repo.refs["refs/heads/foo"] = c3.id
  71. sha = porcelain.commit(self.repo.path, message="Some message",
  72. author="Joe <joe@example.com>", committer="Bob <bob@example.com>")
  73. self.assertTrue(type(sha) is str)
  74. self.assertEquals(len(sha), 40)
  75. class CloneTests(PorcelainTestCase):
  76. def test_simple_local(self):
  77. f1_1 = make_object(Blob, data='f1')
  78. commit_spec = [[1], [2, 1], [3, 1, 2]]
  79. trees = {1: [('f1', f1_1), ('f2', f1_1)],
  80. 2: [('f1', f1_1), ('f2', f1_1)],
  81. 3: [('f1', f1_1), ('f2', f1_1)], }
  82. c1, c2, c3 = build_commit_graph(self.repo.object_store,
  83. commit_spec, trees)
  84. self.repo.refs["refs/heads/master"] = c3.id
  85. target_path = tempfile.mkdtemp()
  86. outstream = StringIO()
  87. self.addCleanup(shutil.rmtree, target_path)
  88. r = porcelain.clone(self.repo.path, target_path,
  89. checkout=False, outstream=outstream)
  90. self.assertEquals(r.path, target_path)
  91. self.assertEquals(Repo(target_path).head(), c3.id)
  92. self.assertTrue('f1' not in os.listdir(target_path))
  93. self.assertTrue('f2' not in os.listdir(target_path))
  94. def test_simple_local_with_checkout(self):
  95. f1_1 = make_object(Blob, data='f1')
  96. commit_spec = [[1], [2, 1], [3, 1, 2]]
  97. trees = {1: [('f1', f1_1), ('f2', f1_1)],
  98. 2: [('f1', f1_1), ('f2', f1_1)],
  99. 3: [('f1', f1_1), ('f2', f1_1)], }
  100. c1, c2, c3 = build_commit_graph(self.repo.object_store,
  101. commit_spec, trees)
  102. self.repo.refs["refs/heads/master"] = c3.id
  103. target_path = tempfile.mkdtemp()
  104. outstream = StringIO()
  105. self.addCleanup(shutil.rmtree, target_path)
  106. r = porcelain.clone(self.repo.path, target_path,
  107. checkout=True, outstream=outstream)
  108. self.assertEquals(r.path, target_path)
  109. self.assertEquals(Repo(target_path).head(), c3.id)
  110. self.assertTrue('f1' in os.listdir(target_path))
  111. self.assertTrue('f2' in os.listdir(target_path))
  112. def test_bare_local_with_checkout(self):
  113. f1_1 = make_object(Blob, data='f1')
  114. commit_spec = [[1], [2, 1], [3, 1, 2]]
  115. trees = {1: [('f1', f1_1), ('f2', f1_1)],
  116. 2: [('f1', f1_1), ('f2', f1_1)],
  117. 3: [('f1', f1_1), ('f2', f1_1)], }
  118. c1, c2, c3 = build_commit_graph(self.repo.object_store,
  119. commit_spec, trees)
  120. self.repo.refs["refs/heads/master"] = c3.id
  121. target_path = tempfile.mkdtemp()
  122. outstream = StringIO()
  123. self.addCleanup(shutil.rmtree, target_path)
  124. r = porcelain.clone(self.repo.path, target_path,
  125. bare=True, outstream=outstream)
  126. self.assertEquals(r.path, target_path)
  127. self.assertEquals(Repo(target_path).head(), c3.id)
  128. self.assertFalse('f1' in os.listdir(target_path))
  129. self.assertFalse('f2' in os.listdir(target_path))
  130. def test_no_checkout_with_bare(self):
  131. f1_1 = make_object(Blob, data='f1')
  132. commit_spec = [[1]]
  133. trees = {1: [('f1', f1_1), ('f2', f1_1)]}
  134. (c1, ) = build_commit_graph(self.repo.object_store, commit_spec, trees)
  135. self.repo.refs["refs/heads/master"] = c1.id
  136. target_path = tempfile.mkdtemp()
  137. outstream = StringIO()
  138. self.addCleanup(shutil.rmtree, target_path)
  139. self.assertRaises(ValueError, porcelain.clone, self.repo.path,
  140. target_path, checkout=True, bare=True, outstream=outstream)
  141. class InitTests(TestCase):
  142. def test_non_bare(self):
  143. repo_dir = tempfile.mkdtemp()
  144. self.addCleanup(shutil.rmtree, repo_dir)
  145. porcelain.init(repo_dir)
  146. def test_bare(self):
  147. repo_dir = tempfile.mkdtemp()
  148. self.addCleanup(shutil.rmtree, repo_dir)
  149. porcelain.init(repo_dir, bare=True)
  150. class AddTests(PorcelainTestCase):
  151. def test_add_default_paths(self):
  152. # create a file for initial commit
  153. with open(os.path.join(self.repo.path, 'blah'), 'w') as f:
  154. f.write("\n")
  155. porcelain.add(repo=self.repo.path, paths=['blah'])
  156. porcelain.commit(repo=self.repo.path, message='test',
  157. author='test', committer='test')
  158. # Add a second test file and a file in a directory
  159. with open(os.path.join(self.repo.path, 'foo'), 'w') as f:
  160. f.write("\n")
  161. os.mkdir(os.path.join(self.repo.path, 'adir'))
  162. with open(os.path.join(self.repo.path, 'adir', 'afile'), 'w') as f:
  163. f.write("\n")
  164. porcelain.add(self.repo.path)
  165. # Check that foo was added and nothing in .git was modified
  166. index = self.repo.open_index()
  167. self.assertEquals(list(index), ['blah', 'foo', 'adir/afile'])
  168. def test_add_file(self):
  169. with open(os.path.join(self.repo.path, 'foo'), 'w') as f:
  170. f.write("BAR")
  171. porcelain.add(self.repo.path, paths=["foo"])
  172. class RemoveTests(PorcelainTestCase):
  173. def test_remove_file(self):
  174. f = open(os.path.join(self.repo.path, 'foo'), 'w')
  175. try:
  176. f.write("BAR")
  177. finally:
  178. f.close()
  179. porcelain.add(self.repo.path, paths=["foo"])
  180. porcelain.rm(self.repo.path, paths=["foo"])
  181. class LogTests(PorcelainTestCase):
  182. def test_simple(self):
  183. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  184. [3, 1, 2]])
  185. self.repo.refs["HEAD"] = c3.id
  186. outstream = StringIO()
  187. porcelain.log(self.repo.path, outstream=outstream)
  188. self.assertEquals(3, outstream.getvalue().count("-" * 50))
  189. def test_max_entries(self):
  190. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  191. [3, 1, 2]])
  192. self.repo.refs["HEAD"] = c3.id
  193. outstream = StringIO()
  194. porcelain.log(self.repo.path, outstream=outstream, max_entries=1)
  195. self.assertEquals(1, outstream.getvalue().count("-" * 50))
  196. class ShowTests(PorcelainTestCase):
  197. def test_nolist(self):
  198. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  199. [3, 1, 2]])
  200. self.repo.refs["HEAD"] = c3.id
  201. outstream = StringIO()
  202. porcelain.show(self.repo.path, objects=c3.id, outstream=outstream)
  203. self.assertTrue(outstream.getvalue().startswith("-" * 50))
  204. def test_simple(self):
  205. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  206. [3, 1, 2]])
  207. self.repo.refs["HEAD"] = c3.id
  208. outstream = StringIO()
  209. porcelain.show(self.repo.path, objects=[c3.id], outstream=outstream)
  210. self.assertTrue(outstream.getvalue().startswith("-" * 50))
  211. def test_blob(self):
  212. b = Blob.from_string("The Foo\n")
  213. self.repo.object_store.add_object(b)
  214. outstream = StringIO()
  215. porcelain.show(self.repo.path, objects=[b.id], outstream=outstream)
  216. self.assertEquals(outstream.getvalue(), "The Foo\n")
  217. class SymbolicRefTests(PorcelainTestCase):
  218. def test_set_wrong_symbolic_ref(self):
  219. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  220. [3, 1, 2]])
  221. self.repo.refs["HEAD"] = c3.id
  222. outstream = StringIO()
  223. self.assertRaises(ValueError, porcelain.symbolic_ref, self.repo.path, 'foobar')
  224. def test_set_force_wrong_symbolic_ref(self):
  225. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  226. [3, 1, 2]])
  227. self.repo.refs["HEAD"] = c3.id
  228. porcelain.symbolic_ref(self.repo.path, 'force_foobar', force=True)
  229. #test if we actually changed the file
  230. new_ref = self.repo.get_named_file('HEAD').read()
  231. self.assertEqual(new_ref, 'ref: refs/heads/force_foobar\n')
  232. def test_set_symbolic_ref(self):
  233. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  234. [3, 1, 2]])
  235. self.repo.refs["HEAD"] = c3.id
  236. porcelain.symbolic_ref(self.repo.path, 'master')
  237. def test_set_symbolic_ref_other_than_master(self):
  238. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  239. [3, 1, 2]], attrs=dict(refs='develop'))
  240. self.repo.refs["HEAD"] = c3.id
  241. self.repo.refs["refs/heads/develop"] = c3.id
  242. porcelain.symbolic_ref(self.repo.path, 'develop')
  243. #test if we actually changed the file
  244. new_ref = self.repo.get_named_file('HEAD').read()
  245. self.assertEqual(new_ref, 'ref: refs/heads/develop\n')
  246. class DiffTreeTests(PorcelainTestCase):
  247. def test_empty(self):
  248. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  249. [3, 1, 2]])
  250. self.repo.refs["HEAD"] = c3.id
  251. outstream = StringIO()
  252. porcelain.diff_tree(self.repo.path, c2.tree, c3.tree, outstream=outstream)
  253. self.assertEquals(outstream.getvalue(), "")
  254. class CommitTreeTests(PorcelainTestCase):
  255. def test_simple(self):
  256. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  257. [3, 1, 2]])
  258. b = Blob()
  259. b.data = "foo the bar"
  260. t = Tree()
  261. t.add("somename", 0o100644, b.id)
  262. self.repo.object_store.add_object(t)
  263. self.repo.object_store.add_object(b)
  264. sha = porcelain.commit_tree(
  265. self.repo.path, t.id, message="Withcommit.",
  266. author="Joe <joe@example.com>",
  267. committer="Jane <jane@example.com>")
  268. self.assertTrue(type(sha) is str)
  269. self.assertEquals(len(sha), 40)
  270. class RevListTests(PorcelainTestCase):
  271. def test_simple(self):
  272. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  273. [3, 1, 2]])
  274. outstream = StringIO()
  275. porcelain.rev_list(
  276. self.repo.path, [c3.id], outstream=outstream)
  277. self.assertEquals(
  278. "%s\n%s\n%s\n" % (c3.id, c2.id, c1.id),
  279. outstream.getvalue())
  280. class TagTests(PorcelainTestCase):
  281. def test_annotated(self):
  282. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  283. [3, 1, 2]])
  284. self.repo.refs["HEAD"] = c3.id
  285. porcelain.tag(self.repo.path, "tryme", 'foo <foo@bar.com>', 'bar',
  286. annotated=True)
  287. tags = self.repo.refs.as_dict("refs/tags")
  288. self.assertEquals(tags.keys(), ["tryme"])
  289. tag = self.repo['refs/tags/tryme']
  290. self.assertTrue(isinstance(tag, Tag))
  291. self.assertEquals("foo <foo@bar.com>", tag.tagger)
  292. self.assertEquals("bar", tag.message)
  293. def test_unannotated(self):
  294. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  295. [3, 1, 2]])
  296. self.repo.refs["HEAD"] = c3.id
  297. porcelain.tag(self.repo.path, "tryme", annotated=False)
  298. tags = self.repo.refs.as_dict("refs/tags")
  299. self.assertEquals(tags.keys(), ["tryme"])
  300. tag = self.repo['refs/tags/tryme']
  301. self.assertEquals(tags.values(), [self.repo.head()])
  302. class ListTagsTests(PorcelainTestCase):
  303. def test_empty(self):
  304. tags = porcelain.list_tags(self.repo.path)
  305. self.assertEquals([], tags)
  306. def test_simple(self):
  307. self.repo.refs["refs/tags/foo"] = "aa" * 20
  308. self.repo.refs["refs/tags/bar/bla"] = "bb" * 20
  309. tags = porcelain.list_tags(self.repo.path)
  310. self.assertEquals(["bar/bla", "foo"], tags)
  311. class ResetTests(PorcelainTestCase):
  312. def test_hard_head(self):
  313. f = open(os.path.join(self.repo.path, 'foo'), 'w')
  314. try:
  315. f.write("BAR")
  316. finally:
  317. f.close()
  318. porcelain.add(self.repo.path, paths=["foo"])
  319. porcelain.commit(self.repo.path, message="Some message",
  320. committer="Jane <jane@example.com>",
  321. author="John <john@example.com>")
  322. f = open(os.path.join(self.repo.path, 'foo'), 'w')
  323. try:
  324. f.write("OOH")
  325. finally:
  326. f.close()
  327. porcelain.reset(self.repo, "hard", "HEAD")
  328. index = self.repo.open_index()
  329. changes = list(tree_changes(self.repo,
  330. index.commit(self.repo.object_store),
  331. self.repo['HEAD'].tree))
  332. self.assertEquals([], changes)
  333. class PushTests(PorcelainTestCase):
  334. def test_simple(self):
  335. """
  336. Basic test of porcelain push where self.repo is the remote. First
  337. clone the remote, commit a file to the clone, then push the changes
  338. back to the remote.
  339. """
  340. outstream = StringIO()
  341. errstream = StringIO()
  342. porcelain.commit(repo=self.repo.path, message='init',
  343. author='', committer='')
  344. # Setup target repo cloned from temp test repo
  345. clone_path = tempfile.mkdtemp()
  346. porcelain.clone(self.repo.path, target=clone_path, outstream=outstream)
  347. # create a second file to be pushed back to origin
  348. handle, fullpath = tempfile.mkstemp(dir=clone_path)
  349. porcelain.add(repo=clone_path, paths=[os.path.basename(fullpath)])
  350. porcelain.commit(repo=clone_path, message='push',
  351. author='', committer='')
  352. # Setup a non-checked out branch in the remote
  353. refs_path = os.path.join('refs', 'heads', 'foo')
  354. self.repo[refs_path] = self.repo['HEAD']
  355. # Push to the remote
  356. porcelain.push(clone_path, self.repo.path, refs_path, outstream=outstream,
  357. errstream=errstream)
  358. # Check that the target and source
  359. r_clone = Repo(clone_path)
  360. # Get the change in the target repo corresponding to the add
  361. # this will be in the foo branch.
  362. change = list(tree_changes(self.repo, self.repo['HEAD'].tree,
  363. self.repo['refs/heads/foo'].tree))[0]
  364. self.assertEquals(r_clone['HEAD'].id, self.repo[refs_path].id)
  365. self.assertEquals(os.path.basename(fullpath), change.new.path)
  366. class PullTests(PorcelainTestCase):
  367. def test_simple(self):
  368. outstream = StringIO()
  369. errstream = StringIO()
  370. # create a file for initial commit
  371. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  372. filename = os.path.basename(fullpath)
  373. porcelain.add(repo=self.repo.path, paths=filename)
  374. porcelain.commit(repo=self.repo.path, message='test',
  375. author='test', committer='test')
  376. # Setup target repo
  377. target_path = tempfile.mkdtemp()
  378. porcelain.clone(self.repo.path, target=target_path, outstream=outstream)
  379. # create a second file to be pushed
  380. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  381. filename = os.path.basename(fullpath)
  382. porcelain.add(repo=self.repo.path, paths=filename)
  383. porcelain.commit(repo=self.repo.path, message='test2',
  384. author='test2', committer='test2')
  385. # Pull changes into the cloned repo
  386. porcelain.pull(target_path, self.repo.path, 'refs/heads/master',
  387. outstream=outstream, errstream=errstream)
  388. # Check the target repo for pushed changes
  389. r = Repo(target_path)
  390. self.assertEquals(r['HEAD'].id, self.repo['HEAD'].id)