2
0
Эх сурвалжийг харах

It is important to test the opposite workflow, too.

- Especially if there is desire to correctly reimplement the no-done
  behavior.
Tommy Yu 10 жил өмнө
parent
commit
a76c73817c

+ 14 - 0
dulwich/tests/compat/server_utils.py

@@ -273,6 +273,20 @@ class ServerTests(object):
         # a rather predictable result, assuming a default strategy.
         self.assertEqual(len(os.listdir(self._client_repo.path)), 8)
 
+    def test_push_to_dulwich_issue_88_standard(self):
+        # Same thing, but we reverse the role of the server/client
+        # and do a push instead.
+        self._source_repo = import_repo('issue88_expect_ack_nak_client.export')
+        self.addCleanup(tear_down_repo, self._source_repo)
+        self._client_repo = import_repo('issue88_expect_ack_nak_server.export',
+                                        as_working_copy=True)
+        self.addCleanup(tear_down_repo, self._client_repo)
+        port = self._start_server(self._source_repo)
+
+        run_git_or_fail(['push', self.url(port), 'master',],
+                        cwd=self._client_repo.path)
+        self.assertReposEqual(self._source_repo, self._client_repo)
+
 
 # TODO(dborowitz): Come up with a better way of testing various permutations of
 # capabilities. The only reason it is the way it is now is that side-band-64k

+ 4 - 0
dulwich/tests/compat/test_web.py

@@ -147,3 +147,7 @@ class DumbWebTestCase(WebTests, CompatTestCase):
         # Note: remove this if C git and dulwich implement dumb web shallow
         # clones.
         raise SkipTest('Dumb web shallow cloning not supported.')
+
+    def test_push_to_dulwich_issue_88_standard(self):
+        raise SkipTest('Dumb web pushing not supported.')
+