8687.15.17
by Karl Fogel
Add the copyright header block to the rest of the files under lib/lp/. |
1 |
# Copyright 2009 Canonical Ltd. This software is licensed under the
|
2 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
|
6465.2.2
by Aaron Bentley
Ensured coverage of all formats with markers |
3 |
|
4 |
"""Tests of the branch interface."""
|
|
5 |
||
6 |
__metaclass__ = type |
|
7 |
||
7675.192.2
by Jonathan Lange
Make the test fail with a better error message. |
8 |
from unittest import TestLoader |
6465.2.4
by Aaron Bentley
Clean up imports |
9 |
|
6465.2.2
by Aaron Bentley
Ensured coverage of all formats with markers |
10 |
from bzrlib.branch import BranchFormat as BzrBranchFormat |
11 |
from bzrlib.bzrdir import BzrDirFormat |
|
12 |
from bzrlib.repository import format_registry as repo_format_registry |
|
13 |
||
11403.1.4
by Henning Eggers
Reformatted imports using format-imports script r32. |
14 |
from lp.code.bzr import ( |
15 |
BranchFormat, |
|
16 |
ControlFormat, |
|
17 |
RepositoryFormat, |
|
18 |
)
|
|
7675.192.2
by Jonathan Lange
Make the test fail with a better error message. |
19 |
from lp.testing import TestCase |
8137.17.24
by Barry Warsaw
thread merge |
20 |
|
21 |
||
6465.2.2
by Aaron Bentley
Ensured coverage of all formats with markers |
22 |
class TestFormatSupport(TestCase): |
23 |
"""Ensure the launchpad format list is up-to-date.
|
|
24 |
||
25 |
While ideally we would ensure that the lists of markers were the same,
|
|
26 |
early branch and repo formats did not use markers. (The branch/repo
|
|
6465.2.15
by Aaron Bentley
Updates from review |
27 |
was implied by the control dir format.)
|
28 |
"""
|
|
6465.2.2
by Aaron Bentley
Ensured coverage of all formats with markers |
29 |
|
30 |
def test_control_format_complement(self): |
|
31 |
self.bzrlib_is_subset(BzrDirFormat._formats.keys(), ControlFormat) |
|
32 |
||
33 |
def test_branch_format_complement(self): |
|
34 |
self.bzrlib_is_subset(BzrBranchFormat._formats.keys(), BranchFormat) |
|
35 |
||
36 |
def test_repository_format_complement(self): |
|
37 |
self.bzrlib_is_subset(repo_format_registry.keys(), RepositoryFormat) |
|
38 |
||
39 |
def bzrlib_is_subset(self, bzrlib_formats, launchpad_enum): |
|
40 |
"""Ensure the bzr format marker list is a subset of launchpad."""
|
|
6805.2.2
by Tim Penhey
Fix the enums to be consistent with what the tests were expecting. |
41 |
bzrlib_format_strings = set(bzrlib_formats) |
6465.2.2
by Aaron Bentley
Ensured coverage of all formats with markers |
42 |
launchpad_format_strings = set(format.title for format |
43 |
in launchpad_enum.items) |
|
44 |
self.assertEqual( |
|
45 |
set(), bzrlib_format_strings.difference(launchpad_format_strings)) |
|
46 |
||
6839.1.2
by Aaron Bentley
Ensure that descriptions are always 1-line |
47 |
def test_repositoryDescriptions(self): |
48 |
self.checkDescriptions(RepositoryFormat) |
|
49 |
||
50 |
def test_branchDescriptions(self): |
|
51 |
self.checkDescriptions(BranchFormat) |
|
52 |
||
53 |
def test_controlDescriptions(self): |
|
54 |
self.checkDescriptions(ControlFormat) |
|
55 |
||
56 |
def checkDescriptions(self, format_enums): |
|
57 |
for item in format_enums.items: |
|
58 |
description = item.description |
|
59 |
if description.endswith('\n'): |
|
60 |
description = description[:-1] |
|
61 |
self.assertTrue(len(description.split('\n')) == 1, |
|
62 |
item.description) |
|
63 |
||
6465.2.2
by Aaron Bentley
Ensured coverage of all formats with markers |
64 |
|
65 |
def test_suite(): |
|
66 |
return TestLoader().loadTestsFromName(__name__) |