~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-29 22:03:03 UTC
  • mfrom: (5416.2.6 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100929220303-cr95h8iwtggco721
(mbp) Add 'break-lock --force'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
17
17
"""Tests for the 'check' CLI command."""
18
18
 
19
19
from bzrlib.tests import ChrootedTestCase
20
 
from bzrlib.tests.blackbox import ExternalBase
21
 
 
22
 
 
23
 
class TestCheck(ExternalBase):
 
20
from bzrlib.tests import TestCaseWithTransport
 
21
 
 
22
 
 
23
class TestCheck(TestCaseWithTransport):
24
24
 
25
25
    def test_check_no_tree(self):
26
26
        self.make_branch('.')
34
34
        tree = self.make_branch_and_tree('.')
35
35
        tree.commit('hallelujah')
36
36
        out, err = self.run_bzr('check')
37
 
        self.assertContainsRe(err, r"^Checking working tree at '.*'\.\n"
38
 
                                   r"Checking repository at '.*'\.\n"
39
 
                                   r"checked repository.*\n"
 
37
        self.assertContainsRe(err, r"Checking working tree at '.*'\.\n")
 
38
        self.assertContainsRe(err, r"Checking repository at '.*'\.\n")
 
39
        # the root directory may be in the texts for rich root formats
 
40
        self.assertContainsRe(err, r"checked repository.*\n"
40
41
                                   r"     1 revisions\n"
41
 
                                   r"     0 file-ids\n"
42
 
                                   r"     0 unique file texts\n"
43
 
                                   r"     0 repeated file texts\n"
44
 
                                   r"     0 unreferenced text versions\n"
45
 
                                   r"Checking branch at '.*'\.\n"
46
 
                                   r"checked branch.*\n$")
 
42
                                   r"     [01] file-ids\n"
 
43
                                   )
 
44
        self.assertContainsRe(err, r"Checking branch at '.*'\.\n")
 
45
        self.assertContainsRe(err, r"checked branch.*")
47
46
 
48
47
    def test_check_branch(self):
49
48
        tree = self.make_branch_and_tree('.')
50
49
        tree.commit('foo')
51
50
        out, err = self.run_bzr('check --branch')
52
51
        self.assertContainsRe(err, r"^Checking branch at '.*'\.\n"
53
 
                                   r"checked branch.*\n$")
 
52
                                   r"checked branch.*")
54
53
 
55
54
    def test_check_repository(self):
56
55
        tree = self.make_branch_and_tree('.')
59
58
        self.assertContainsRe(err, r"^Checking repository at '.*'\.\n"
60
59
                                   r"checked repository.*\n"
61
60
                                   r"     1 revisions\n"
62
 
                                   r"     0 file-ids\n"
63
 
                                   r"     0 unique file texts\n"
64
 
                                   r"     0 repeated file texts\n"
65
 
                                   r"     0 unreferenced text versions$")
 
61
                                   r"     [01] file-ids\n"
 
62
                                   )
66
63
 
67
64
    def test_check_tree(self):
68
65
        tree = self.make_branch_and_tree('.')
76
73
        out, err = self.run_bzr('check --tree --branch')
77
74
        self.assertContainsRe(err, r"^Checking working tree at '.*'\.\n"
78
75
                                   r"Checking branch at '.*'\.\n"
79
 
                                   r"checked branch.*\n$")
 
76
                                   r"checked branch.*")
80
77
 
81
78
    def test_check_missing_tree(self):
82
79
        branch = self.make_branch('.')
87
84
        branch = self.make_branch('.')
88
85
        out, err = self.run_bzr('check --tree --branch')
89
86
        self.assertContainsRe(err,
90
 
            r"^No working tree found at specified location\.\n"
91
87
            r"Checking branch at '.*'\.\n"
92
 
            r"checked branch.*\n$")
 
88
            r"No working tree found at specified location\.\n"
 
89
            r"checked branch.*")
93
90
 
94
91
    def test_check_missing_branch_in_shared_repo(self):
95
92
        self.make_repository('shared', shared=True)