bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
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 the ControlDir facility.
|
|
18 |
||
19 |
For interface contract tests, see tests/per_control_dir.
|
|
20 |
"""
|
|
21 |
||
22 |
from bzrlib import ( |
|
23 |
controldir, |
|
|
5669.3.11
by Jelmer Vernooij
review feedback from vila. |
24 |
tests, |
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
25 |
)
|
26 |
||
27 |
||
|
5669.3.10
by Jelmer Vernooij
Use ControlComponentFormat. |
28 |
class SampleComponentFormat(controldir.ControlComponentFormat): |
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
29 |
|
30 |
def get_format_string(self): |
|
31 |
return "Example component format." |
|
32 |
||
33 |
||
|
5669.3.10
by Jelmer Vernooij
Use ControlComponentFormat. |
34 |
class SampleExtraComponentFormat(controldir.ControlComponentFormat): |
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
35 |
"""Extra format, no format string.""" |
36 |
||
37 |
||
|
5669.3.11
by Jelmer Vernooij
review feedback from vila. |
38 |
class TestMetaComponentFormatRegistry(tests.TestCase): |
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
39 |
|
40 |
def setUp(self): |
|
41 |
super(TestMetaComponentFormatRegistry, self).setUp() |
|
|
5669.3.9
by Jelmer Vernooij
Consistent naming. |
42 |
self.registry = controldir.ControlComponentFormatRegistry() |
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
43 |
|
44 |
def test_register_unregister_format(self): |
|
45 |
format = SampleComponentFormat() |
|
46 |
self.registry.register(format) |
|
47 |
self.assertEquals(format, |
|
48 |
self.registry.get("Example component format.")) |
|
49 |
self.registry.remove(format) |
|
50 |
self.assertRaises(KeyError, self.registry.get, |
|
51 |
"Example component format.") |
|
52 |
||
53 |
def test_get_all(self): |
|
54 |
format = SampleComponentFormat() |
|
55 |
self.assertEquals([], self.registry._get_all()) |
|
56 |
self.registry.register(format) |
|
57 |
self.assertEquals([format], self.registry._get_all()) |
|
58 |
||
|
5676.1.7
by Jelmer Vernooij
Add test for ControlComponentFormatRegistry._get_all_modules. |
59 |
def test_get_all_modules(self): |
60 |
format = SampleComponentFormat() |
|
61 |
self.assertEquals(set(), self.registry._get_all_modules()) |
|
62 |
self.registry.register(format) |
|
63 |
self.assertEquals( |
|
64 |
set(["bzrlib.tests.test_controldir"]), |
|
65 |
self.registry._get_all_modules()) |
|
66 |
||
|
5669.3.8
by Jelmer Vernooij
Refactor, move to bzrlib.controldir. |
67 |
def test_register_extra(self): |
68 |
format = SampleExtraComponentFormat() |
|
69 |
self.assertEquals([], self.registry._get_all()) |
|
70 |
self.registry.register_extra(format) |
|
71 |
self.assertEquals([format], self.registry._get_all()) |
|
72 |
||
73 |
def test_register_extra_lazy(self): |
|
74 |
self.assertEquals([], self.registry._get_all()) |
|
75 |
self.registry.register_extra_lazy("bzrlib.tests.test_controldir", |
|
76 |
"SampleExtraComponentFormat") |
|
77 |
formats = self.registry._get_all() |
|
78 |
self.assertEquals(1, len(formats)) |
|
79 |
self.assertIsInstance(formats[0], SampleExtraComponentFormat) |