~bzr-pqm/bzr/bzr.dev

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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Copyright (C) 2007-2010 Canonical Ltd
#
# 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

"""Tests for the 'check' CLI command."""

from bzrlib.tests import ChrootedTestCase
from bzrlib.tests import TestCaseWithTransport


class TestCheck(TestCaseWithTransport):

    def test_check_no_tree(self):
        self.make_branch('.')
        self.run_bzr('check')

    def test_check_initial_tree(self):
        self.make_branch_and_tree('.')
        self.run_bzr('check')

    def test_check_one_commit_tree(self):
        tree = self.make_branch_and_tree('.')
        tree.commit('hallelujah')
        out, err = self.run_bzr('check')
        self.assertContainsRe(err, r"Checking working tree at '.*'\.\n")
        self.assertContainsRe(err, r"Checking repository at '.*'\.\n")
        # the root directory may be in the texts for rich root formats
        self.assertContainsRe(err, r"checked repository.*\n"
                                   r"     1 revisions\n"
                                   r"     [01] file-ids\n"
                                   )
        self.assertContainsRe(err, r"Checking branch at '.*'\.\n")
        self.assertContainsRe(err, r"checked branch.*")

    def test_check_branch(self):
        tree = self.make_branch_and_tree('.')
        tree.commit('foo')
        out, err = self.run_bzr('check --branch')
        self.assertContainsRe(err, r"^Checking branch at '.*'\.\n"
                                   r"checked branch.*")

    def test_check_repository(self):
        tree = self.make_branch_and_tree('.')
        tree.commit('foo')
        out, err = self.run_bzr('check --repo')
        self.assertContainsRe(err, r"^Checking repository at '.*'\.\n"
                                   r"checked repository.*\n"
                                   r"     1 revisions\n"
                                   r"     [01] file-ids\n"
                                   )

    def test_check_tree(self):
        tree = self.make_branch_and_tree('.')
        tree.commit('foo')
        out, err = self.run_bzr('check --tree')
        self.assertContainsRe(err, r"^Checking working tree at '.*'\.\n$")

    def test_partial_check(self):
        tree = self.make_branch_and_tree('.')
        tree.commit('foo')
        out, err = self.run_bzr('check --tree --branch')
        self.assertContainsRe(err, r"^Checking working tree at '.*'\.\n"
                                   r"Checking branch at '.*'\.\n"
                                   r"checked branch.*")

    def test_check_missing_tree(self):
        branch = self.make_branch('.')
        out, err = self.run_bzr('check --tree')
        self.assertEqual(err, "No working tree found at specified location.\n")

    def test_check_missing_partial(self):
        branch = self.make_branch('.')
        out, err = self.run_bzr('check --tree --branch')
        self.assertContainsRe(err,
            r"Checking branch at '.*'\.\n"
            r"No working tree found at specified location\.\n"
            r"checked branch.*")

    def test_check_missing_branch_in_shared_repo(self):
        self.make_repository('shared', shared=True)
        out, err = self.run_bzr('check --branch shared')
        self.assertEqual(err, "No branch found at specified location.\n")


class ChrootedCheckTests(ChrootedTestCase):

    def test_check_missing_branch(self):
        out, err = self.run_bzr(
            'check --branch %s' % self.get_readonly_url(''))
        self.assertEqual(err, "No branch found at specified location.\n")

    def test_check_missing_repository(self):
        out, err = self.run_bzr('check --repo %s' % self.get_readonly_url(''))
        self.assertEqual(err, "No repository found at specified location.\n")

    def test_check_missing_everything(self):
        out, err = self.run_bzr('check %s' % self.get_readonly_url(''))
        self.assertEqual(err, "No working tree found at specified location.\n"
                              "No branch found at specified location.\n"
                              "No repository found at specified location.\n")