4763.2.4
by John Arbash Meinel
merge bzr.2.1 in preparation for NEWS entry. |
1 |
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
|
3251.3.1
by Aaron Bentley
Add support for directory services |
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
|
|
4183.7.1
by Sabin Iacob
update FSF mailing address |
15 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
3251.3.1
by Aaron Bentley
Add support for directory services |
16 |
|
17 |
"""Test directory service implementation"""
|
|
18 |
||
4789.13.1
by John Arbash Meinel
Change the DirectoryService tests a little bit. |
19 |
from bzrlib import ( |
20 |
errors, |
|
5273.1.7
by Vincent Ladeuil
No more use of the get_transport imported *symbol*, all uses are through |
21 |
transport, |
4789.13.1
by John Arbash Meinel
Change the DirectoryService tests a little bit. |
22 |
urlutils, |
23 |
)
|
|
6319.2.1
by Jelmer Vernooij
Allow registering custom location aliases. |
24 |
from bzrlib.directory_service import ( |
25 |
AliasDirectory, |
|
26 |
DirectoryServiceRegistry, |
|
27 |
directories, |
|
28 |
)
|
|
3512.2.1
by Aaron Bentley
Add support for branch-associated locations |
29 |
from bzrlib.tests import TestCase, TestCaseWithTransport |
3625.1.2
by Michael Hudson
import urlutils and write urlutils.join rather than join |
30 |
|
3251.3.1
by Aaron Bentley
Add support for directory services |
31 |
|
32 |
class FooService(object): |
|
33 |
"""A directory service that maps the name to a FILE url"""
|
|
34 |
||
5278.1.2
by Martin Pool
Don't say 'Linux' except when specifically talking about the kernel |
35 |
# eg 'file:///foo' on Unix, or 'file:///C:/foo' on Windows
|
4789.13.1
by John Arbash Meinel
Change the DirectoryService tests a little bit. |
36 |
base = urlutils.local_path_to_url('/foo') |
37 |
||
3251.3.1
by Aaron Bentley
Add support for directory services |
38 |
def look_up(self, name, url): |
4789.13.1
by John Arbash Meinel
Change the DirectoryService tests a little bit. |
39 |
return self.base + name |
3251.3.1
by Aaron Bentley
Add support for directory services |
40 |
|
41 |
||
42 |
class TestDirectoryLookup(TestCase): |
|
43 |
||
44 |
def setUp(self): |
|
45 |
TestCase.setUp(self) |
|
46 |
self.registry = DirectoryServiceRegistry() |
|
47 |
self.registry.register('foo:', FooService, 'Map foo URLs to http urls') |
|
48 |
||
49 |
def test_get_directory_service(self): |
|
50 |
directory, suffix = self.registry.get_prefix('foo:bar') |
|
51 |
self.assertIs(FooService, directory) |
|
52 |
self.assertEqual('bar', suffix) |
|
53 |
||
54 |
def test_dereference(self): |
|
4789.13.1
by John Arbash Meinel
Change the DirectoryService tests a little bit. |
55 |
self.assertEqual(FooService.base + 'bar', |
3251.3.1
by Aaron Bentley
Add support for directory services |
56 |
self.registry.dereference('foo:bar')) |
57 |
self.assertEqual('baz:qux', self.registry.dereference('baz:qux')) |
|
58 |
||
59 |
def test_get_transport(self): |
|
60 |
directories.register('foo:', FooService, 'Map foo URLs to http urls') |
|
4985.2.1
by Vincent Ladeuil
Deploy addAttrCleanup on the whole test suite. |
61 |
self.addCleanup(directories.remove, 'foo:') |
4789.13.1
by John Arbash Meinel
Change the DirectoryService tests a little bit. |
62 |
self.assertEqual(FooService.base + 'bar/', |
5273.1.7
by Vincent Ladeuil
No more use of the get_transport imported *symbol*, all uses are through |
63 |
transport.get_transport('foo:bar').base) |
3512.2.1
by Aaron Bentley
Add support for branch-associated locations |
64 |
|
65 |
||
66 |
class TestAliasDirectory(TestCaseWithTransport): |
|
67 |
||
68 |
def test_lookup_parent(self): |
|
69 |
branch = self.make_branch('.') |
|
70 |
branch.set_parent('http://a') |
|
71 |
self.assertEqual('http://a', directories.dereference(':parent')) |
|
72 |
||
73 |
def test_lookup_submit(self): |
|
74 |
branch = self.make_branch('.') |
|
75 |
branch.set_submit_branch('http://b') |
|
76 |
self.assertEqual('http://b', directories.dereference(':submit')) |
|
77 |
||
78 |
def test_lookup_public(self): |
|
79 |
branch = self.make_branch('.') |
|
80 |
branch.set_public_branch('http://c') |
|
81 |
self.assertEqual('http://c', directories.dereference(':public')) |
|
82 |
||
83 |
def test_lookup_bound(self): |
|
84 |
branch = self.make_branch('.') |
|
85 |
branch.set_bound_location('http://d') |
|
86 |
self.assertEqual('http://d', directories.dereference(':bound')) |
|
87 |
||
3512.2.2
by Aaron Bentley
Add :push and :this |
88 |
def test_lookup_push(self): |
89 |
branch = self.make_branch('.') |
|
90 |
branch.set_push_location('http://e') |
|
91 |
self.assertEqual('http://e', directories.dereference(':push')) |
|
92 |
||
93 |
def test_lookup_this(self): |
|
94 |
branch = self.make_branch('.') |
|
95 |
self.assertEqual(branch.base, directories.dereference(':this')) |
|
96 |
||
3625.1.1
by Michael Hudson
Allow appending path segments to the :<name> style aliases. |
97 |
def test_extra_path(self): |
98 |
branch = self.make_branch('.') |
|
3625.1.2
by Michael Hudson
import urlutils and write urlutils.join rather than join |
99 |
self.assertEqual(urlutils.join(branch.base, 'arg'), |
100 |
directories.dereference(':this/arg')) |
|
3625.1.1
by Michael Hudson
Allow appending path segments to the :<name> style aliases. |
101 |
|
3512.2.1
by Aaron Bentley
Add support for branch-associated locations |
102 |
def test_lookup_badname(self): |
103 |
branch = self.make_branch('.') |
|
104 |
e = self.assertRaises(errors.InvalidLocationAlias, |
|
105 |
directories.dereference, ':booga') |
|
106 |
self.assertEqual('":booga" is not a valid location alias.', |
|
107 |
str(e)) |
|
108 |
||
109 |
def test_lookup_badvalue(self): |
|
110 |
branch = self.make_branch('.') |
|
111 |
e = self.assertRaises(errors.UnsetLocationAlias, |
|
112 |
directories.dereference, ':parent') |
|
113 |
self.assertEqual('No parent location assigned.', str(e)) |
|
6319.2.1
by Jelmer Vernooij
Allow registering custom location aliases. |
114 |
|
115 |
def test_register_location_alias(self): |
|
116 |
branch = self.make_branch('.') |
|
117 |
self.addCleanup(AliasDirectory.branch_aliases.remove, "booga") |
|
118 |
AliasDirectory.branch_aliases.register("booga", |
|
119 |
lambda b: "UHH?", help="Nobody knows") |
|
120 |
self.assertEquals("UHH?", directories.dereference(":booga")) |