test_porcelain.py 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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.objects import (
  26. Blob,
  27. Tree,
  28. )
  29. from dulwich.repo import Repo
  30. from dulwich.tests import (
  31. TestCase,
  32. )
  33. from dulwich.tests.utils import (
  34. build_commit_graph,
  35. )
  36. class PorcelainTestCase(TestCase):
  37. def setUp(self):
  38. super(TestCase, self).setUp()
  39. repo_dir = tempfile.mkdtemp()
  40. self.addCleanup(shutil.rmtree, repo_dir)
  41. self.repo = Repo.init(repo_dir)
  42. class ArchiveTests(PorcelainTestCase):
  43. """Tests for the archive command."""
  44. def test_simple(self):
  45. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1], [3, 1, 2]])
  46. self.repo.refs["refs/heads/master"] = c3.id
  47. out = StringIO()
  48. err = StringIO()
  49. porcelain.archive(self.repo.path, "refs/heads/master", outstream=out,
  50. errstream=err)
  51. self.assertEquals("", err.getvalue())
  52. tf = tarfile.TarFile(fileobj=out)
  53. self.addCleanup(tf.close)
  54. self.assertEquals([], tf.getnames())
  55. class UpdateServerInfoTests(PorcelainTestCase):
  56. def test_simple(self):
  57. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  58. [3, 1, 2]])
  59. self.repo.refs["refs/heads/foo"] = c3.id
  60. porcelain.update_server_info(self.repo.path)
  61. self.assertTrue(os.path.exists(os.path.join(self.repo.controldir(),
  62. 'info', 'refs')))
  63. class CommitTests(PorcelainTestCase):
  64. def test_simple(self):
  65. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  66. [3, 1, 2]])
  67. self.repo.refs["refs/heads/foo"] = c3.id
  68. sha = porcelain.commit(self.repo.path, message="Some message")
  69. self.assertTrue(type(sha) is str)
  70. self.assertEquals(len(sha), 40)
  71. def test_custom_author(self):
  72. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  73. [3, 1, 2]])
  74. self.repo.refs["refs/heads/foo"] = c3.id
  75. sha = porcelain.commit(self.repo.path, message="Some message",
  76. author="Joe <joe@example.com>", committer="Bob <bob@example.com>")
  77. self.assertTrue(type(sha) is str)
  78. self.assertEquals(len(sha), 40)
  79. class CloneTests(PorcelainTestCase):
  80. def test_simple_local(self):
  81. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  82. [3, 1, 2]])
  83. self.repo.refs["refs/heads/master"] = c3.id
  84. target_path = tempfile.mkdtemp()
  85. outstream = StringIO()
  86. self.addCleanup(shutil.rmtree, target_path)
  87. r = porcelain.clone(self.repo.path, target_path, outstream=outstream)
  88. self.assertEquals(r.path, target_path)
  89. self.assertEquals(Repo(target_path).head(), c3.id)
  90. class InitTests(TestCase):
  91. def test_non_bare(self):
  92. repo_dir = tempfile.mkdtemp()
  93. self.addCleanup(shutil.rmtree, repo_dir)
  94. porcelain.init(repo_dir)
  95. def test_bare(self):
  96. repo_dir = tempfile.mkdtemp()
  97. self.addCleanup(shutil.rmtree, repo_dir)
  98. porcelain.init(repo_dir, bare=True)
  99. class AddTests(PorcelainTestCase):
  100. def test_add_file(self):
  101. f = open(os.path.join(self.repo.path, 'foo'), 'w')
  102. try:
  103. f.write("BAR")
  104. finally:
  105. f.close()
  106. porcelain.add(self.repo.path, paths=["foo"])
  107. class RemoveTests(PorcelainTestCase):
  108. def test_remove_file(self):
  109. f = open(os.path.join(self.repo.path, 'foo'), 'w')
  110. try:
  111. f.write("BAR")
  112. finally:
  113. f.close()
  114. porcelain.add(self.repo.path, paths=["foo"])
  115. porcelain.rm(self.repo.path, paths=["foo"])
  116. class LogTests(PorcelainTestCase):
  117. def test_simple(self):
  118. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  119. [3, 1, 2]])
  120. self.repo.refs["HEAD"] = c3.id
  121. outstream = StringIO()
  122. porcelain.log(self.repo.path, outstream=outstream)
  123. self.assertTrue(outstream.getvalue().startswith("-" * 50))
  124. class ShowTests(PorcelainTestCase):
  125. def test_simple(self):
  126. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  127. [3, 1, 2]])
  128. self.repo.refs["HEAD"] = c3.id
  129. outstream = StringIO()
  130. porcelain.show(self.repo.path, committish=c3.id, outstream=outstream)
  131. self.assertTrue(outstream.getvalue().startswith("-" * 50))
  132. class SymbolicRefTests(PorcelainTestCase):
  133. def test_set_wrong_symbolic_ref(self):
  134. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  135. [3, 1, 2]])
  136. self.repo.refs["HEAD"] = c3.id
  137. outstream = StringIO()
  138. self.assertRaises(ValueError, porcelain.symbolic_ref, self.repo.path, 'foobar')
  139. def test_set_force_wrong_symbolic_ref(self):
  140. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  141. [3, 1, 2]])
  142. self.repo.refs["HEAD"] = c3.id
  143. porcelain.symbolic_ref(self.repo.path, 'force_foobar', force=True)
  144. #test if we actually changed the file
  145. new_ref = self.repo.get_named_file('HEAD').read()
  146. self.assertEqual(new_ref, 'ref: refs/heads/force_foobar\n')
  147. def test_set_symbolic_ref(self):
  148. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  149. [3, 1, 2]])
  150. self.repo.refs["HEAD"] = c3.id
  151. porcelain.symbolic_ref(self.repo.path, 'master')
  152. def test_set_symbolic_ref_other_than_master(self):
  153. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  154. [3, 1, 2]], attrs=dict(refs='develop'))
  155. self.repo.refs["HEAD"] = c3.id
  156. self.repo.refs["refs/heads/develop"] = c3.id
  157. porcelain.symbolic_ref(self.repo.path, 'develop')
  158. #test if we actually changed the file
  159. new_ref = self.repo.get_named_file('HEAD').read()
  160. self.assertEqual(new_ref, 'ref: refs/heads/develop\n')
  161. class DiffTreeTests(PorcelainTestCase):
  162. def test_empty(self):
  163. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  164. [3, 1, 2]])
  165. self.repo.refs["HEAD"] = c3.id
  166. outstream = StringIO()
  167. porcelain.diff_tree(self.repo.path, c2.tree, c3.tree, outstream=outstream)
  168. self.assertEquals(outstream.getvalue(), "")
  169. class CommitTreeTests(PorcelainTestCase):
  170. def test_simple(self):
  171. c1, c2, c3 = build_commit_graph(self.repo.object_store, [[1], [2, 1],
  172. [3, 1, 2]])
  173. b = Blob()
  174. b.data = "foo the bar"
  175. t = Tree()
  176. t.add("somename", 0100644, b.id)
  177. self.repo.object_store.add_object(t)
  178. self.repo.object_store.add_object(b)
  179. sha = porcelain.commit_tree(self.repo.path, t.id, message="Withcommit.")
  180. self.assertTrue(type(sha) is str)
  181. self.assertEquals(len(sha), 40)