/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_bundle.py

  • Committer: v.ladeuil+lp at free
  • Date: 2006-10-12 14:29:32 UTC
  • mto: (2145.1.1 keepalive)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: v.ladeuil+lp@free.fr-20061012142932-7221fe16d2b48fa3
Shuffle http related test code. Hopefully it ends up at the right place :)

* bzrlib/tests/HttpServer.py: 
New file. bzrlib.tests.ChrootedTestCase use HttpServer. So the
class can't be defined in bzrlib.tests.HTTPUtils because it
creates a circular dependency (bzrlib.tests.HTTPUtils needs to
import bzrlib.tests).

* bzrlib/transport/http/_urllib.py: 
Transfer test server definition to bzrlib.tests.HttpServer. Clean
up imports.

* bzrlib/transport/http/_pycurl.py: 
Transfer test server definition to bzrlib.tests.HttpServer. Clean
up imports.

* bzrlib/transport/http/__init__.py: 
Transfer all test related code to either bzrlib.tests.HttpServer
and bzrlib.tests.HTTPUtils.
Fix all use of TransportNotPossible and InvalidURL by prefixing it
by 'errors.' (this seems to be the preferred way in the rest of
bzr).
Get rid of unused imports.

* bzrlib/tests/test_transport.py:
(ReadonlyDecoratorTransportTest.test_local_parameters,
FakeNFSDecoratorTests.test_http_parameters): Use HttpServer from
bzrlib.tests.HttpServer instead of bzrlib.transport.http.

* bzrlib/tests/test_sftp_transport.py:
(set_test_transport_to_sftp): Use HttpServer from
bzrlib.tests.HttpServer instead of bzrlib.transport.http.

* bzrlib/tests/test_selftest.py:
(TestTestCaseWithTransport.test_get_readonly_url_http): Use
HttpServer from bzrlib.tests.HttpServer instead of
bzrlib.transport.http.

* bzrlib/tests/test_repository.py: 
Does *not* use HttpServer.

* bzrlib/tests/test_http.py: 
Build on top of bzrlib.tests.HttpServer and bzrlib.tests.HTTPUtils
instead of bzrlib.transport.http.

* bzrlib/tests/test_bzrdir.py:
(ChrootedTests.setUp): Use HttpServer from bzrlib.tests.HttpServer
instead of bzrlib.transport.http.

* bzrlib/tests/branch_implementations/test_http.py:
(HTTPBranchTests.setUp): Use HttpServer from bzrlib.tests.HttpServer
instead of bzrlib.transport.http.

* bzrlib/tests/branch_implementations/test_branch.py:
(ChrootedTests.setUp): Use HttpServer from bzrlib.tests.HttpServer
instead of bzrlib.transport.http.

* bzrlib/tests/__init__.py:
(ChrootedTestCase.setUp): Use HttpServer from
bzrlib.tests.HttpServer instead of bzrlib.transport.http.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 by Canonical Ltd
 
2
# Authors: Aaron Bentley
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
 
 
19
import os
 
20
from StringIO import StringIO
 
21
 
 
22
from bzrlib.bundle.serializer import read_bundle
 
23
from bzrlib.bzrdir import BzrDir
 
24
from bzrlib.tests import TestCaseInTempDir
 
25
 
 
26
 
 
27
class TestBundle(TestCaseInTempDir):
 
28
 
 
29
    def make_trees(self):
 
30
        grandparent_tree = BzrDir.create_standalone_workingtree('grandparent')
 
31
        grandparent_tree.commit('initial commit', rev_id='revision1')
 
32
        parent_bzrdir = grandparent_tree.bzrdir.sprout('parent')
 
33
        parent_tree = parent_bzrdir.open_workingtree()
 
34
        parent_tree.commit('next commit', rev_id='revision2')
 
35
        branch_tree = parent_tree.bzrdir.sprout('branch').open_workingtree()
 
36
        branch_tree.commit('last commit', rev_id='revision3')
 
37
 
 
38
    def test_uses_parent(self):
 
39
        """Parent location is used as a basis by default"""
 
40
        self.make_trees()        
 
41
        os.chdir('grandparent')
 
42
        errmsg = self.run_bzr('bundle', retcode=3)[1]
 
43
        self.assertContainsRe(errmsg, 'No base branch known or specified')
 
44
        os.chdir('../branch')
 
45
        stdout, stderr = self.run_bzr('bundle')
 
46
        self.assertEqual(stderr.count('Using saved location'), 1)
 
47
        br = read_bundle(StringIO(stdout))
 
48
        self.assertRevisions(br, ['revision3'])
 
49
 
 
50
    def assertRevisions(self, bi, expected):
 
51
        self.assertEqual([r.revision_id for r in bi.revisions], expected)
 
52
 
 
53
    def test_uses_submit(self):
 
54
        """Submit location can be used and set"""
 
55
        self.make_trees()        
 
56
        os.chdir('branch')
 
57
        br = read_bundle(StringIO(self.run_bzr('bundle')[0]))
 
58
        self.assertRevisions(br, ['revision3'])
 
59
        br = read_bundle(StringIO(self.run_bzr('bundle', '../grandparent')[0]))
 
60
        self.assertRevisions(br, ['revision3', 'revision2'])
 
61
        # submit location should be auto-remembered
 
62
        br = read_bundle(StringIO(self.run_bzr('bundle')[0]))
 
63
        self.assertRevisions(br, ['revision3', 'revision2'])
 
64
        self.run_bzr('bundle', '../parent')
 
65
        br = read_bundle(StringIO(self.run_bzr('bundle')[0]))
 
66
        self.assertRevisions(br, ['revision3', 'revision2'])
 
67
        self.run_bzr('bundle', '../parent', '--remember')
 
68
        br = read_bundle(StringIO(self.run_bzr('bundle')[0]))
 
69
        self.assertRevisions(br, ['revision3'])
 
70
        err = self.run_bzr('bundle', '--remember', retcode=3)[1]
 
71
        self.assertContainsRe(err, 
 
72
                              '--remember requires a branch to be specified.')
 
73
 
 
74
    def test_revision_branch_interaction(self):
 
75
        self.make_trees()        
 
76
        os.chdir('branch')
 
77
        bi = read_bundle(StringIO(self.run_bzr('bundle', '../grandparent')[0]))
 
78
        self.assertRevisions(bi, ['revision3', 'revision2'])
 
79
        out = StringIO(self.run_bzr('bundle', '../grandparent', '-r', '-2')[0])
 
80
        bi = read_bundle(out)
 
81
        self.assertRevisions(bi, ['revision2'])
 
82
        bi = read_bundle(StringIO(self.run_bzr('bundle', '-r', '-2..-1')[0]))
 
83
        self.assertRevisions(bi, ['revision3'])
 
84
        self.run_bzr('bundle', '../grandparent', '-r', '-2..-1', retcode=3)