~bzr-pqm/bzr/bzr.dev

5717.1.1 by Jelmer Vernooij
Support overriding check_supported.
1
# Copyright (C) 2011 Canonical Ltd
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
17
"""Tests for control directory formats."""
18
5717.1.2 by Jelmer Vernooij
Add test for ControlDirFormat.check_supported.
19
from bzrlib import (
20
    errors,
21
    )
22
5717.1.1 by Jelmer Vernooij
Support overriding check_supported.
23
from bzrlib.tests.per_controldir import TestCaseWithControlDir
24
5717.1.6 by Jelmer Vernooij
Fix formatting.
25
5717.1.1 by Jelmer Vernooij
Support overriding check_supported.
26
class TestControlDir(TestCaseWithControlDir):
27
28
    def test_get_format_description(self):
29
        self.assertIsInstance(self.bzrdir_format.get_format_description(),
30
                str)
31
32
    def test_is_supported(self):
33
        self.assertIsInstance(self.bzrdir_format.is_supported(), bool)
34
35
    def test_upgrade_recommended(self):
36
        self.assertIsInstance(self.bzrdir_format.upgrade_recommended, bool)
5717.1.2 by Jelmer Vernooij
Add test for ControlDirFormat.check_supported.
37
6205.3.1 by Jelmer Vernooij
Add ControlDirFormat.supports_transport.
38
    def test_supports_transport(self):
39
        self.assertIsInstance(
40
            self.bzrdir_format.supports_transport(self.get_transport()), bool)
41
5717.1.7 by Jelmer Vernooij
Rename check_status -> check_support_status.
42
    def test_check_support_status(self):
5717.1.2 by Jelmer Vernooij
Add test for ControlDirFormat.check_supported.
43
        if not self.bzrdir_format.is_supported():
44
            self.assertRaises(errors.UnsupportedFormatError,
5717.1.7 by Jelmer Vernooij
Rename check_status -> check_support_status.
45
                self.bzrdir_format.check_support_status, False)
5717.1.2 by Jelmer Vernooij
Add test for ControlDirFormat.check_supported.
46
        else:
5717.1.7 by Jelmer Vernooij
Rename check_status -> check_support_status.
47
            self.bzrdir_format.check_support_status(True)
48
            self.bzrdir_format.check_support_status(False)