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
|
# Copyright (C) 2011-2018 Jelmer Vernooij <jelmer@jelmer.uk>
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Test for git server."""
from __future__ import absolute_import
from dulwich.client import TCPGitClient
from dulwich.repo import Repo
import threading
from ....transport import transport_server_registry
from ....tests import (
TestCase,
TestCaseWithTransport,
)
from ..server import (
BzrBackend,
BzrTCPGitServer,
)
class TestPresent(TestCase):
def test_present(self):
# Just test that the server is registered.
transport_server_registry.get('git')
class GitServerTestCase(TestCaseWithTransport):
def start_server(self, t):
backend = BzrBackend(t)
server = BzrTCPGitServer(backend, 'localhost', port=0)
self.addCleanup(server.shutdown)
thread = threading.Thread(target=server.serve).start()
self._server = server
_, port = self._server.socket.getsockname()
return port
class TestPlainFetch(GitServerTestCase):
def test_fetch_simple(self):
wt = self.make_branch_and_tree('t')
self.build_tree(['t/foo'])
wt.add('foo')
revid = wt.commit(message="some data")
wt.branch.tags.set_tag("atag", revid)
t = self.get_transport('t')
port = self.start_server(t)
c = TCPGitClient('localhost', port=port)
gitrepo = Repo.init('gitrepo', mkdir=True)
result = c.fetch('/', gitrepo)
self.assertEquals(
set(result.refs.keys()),
set(["refs/tags/atag", "HEAD"]))
def test_fetch_nothing(self):
wt = self.make_branch_and_tree('t')
self.build_tree(['t/foo'])
wt.add('foo')
revid = wt.commit(message="some data")
wt.branch.tags.set_tag("atag", revid)
t = self.get_transport('t')
port = self.start_server(t)
c = TCPGitClient('localhost', port=port)
gitrepo = Repo.init('gitrepo', mkdir=True)
result = c.fetch('/', gitrepo, determine_wants=lambda x: [])
self.assertEquals(
set(result.refs.keys()),
set(["refs/tags/atag", "HEAD"]))
|