1
# Copyright 2009 Canonical Ltd. This software is licensed under the
1
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
4
"""Tests for lp.registry.scripts.productreleasefinder.walker."""
18
20
def testCreatesDefaultLogger(self):
19
21
"""WalkerBase creates a default logger."""
20
from lp.registry.scripts.productreleasefinder.walker import (
22
22
from logging import Logger
23
23
w = WalkerBase("/")
24
24
self.failUnless(isinstance(w.log, Logger))
26
26
def testCreatesChildLogger(self):
27
27
"""WalkerBase creates a child logger if given a parent."""
28
from lp.registry.scripts.productreleasefinder.walker import (
30
28
from logging import getLogger
31
29
parent = getLogger("foo")
32
30
w = WalkerBase("/", log_parent=parent)
38
36
def testSetsBase(self):
39
37
"""WalkerBase sets the base property."""
40
from lp.registry.scripts.productreleasefinder.walker import (
42
38
w = WalkerBase("ftp://localhost/")
43
39
self.assertEquals(w.base, "ftp://localhost/")
45
41
def testSetsScheme(self):
46
42
"""WalkerBase sets the scheme property."""
47
from lp.registry.scripts.productreleasefinder.walker import (
49
43
w = WalkerBase("ftp://localhost/")
50
44
self.assertEquals(w.scheme, "ftp")
52
46
def testSetsHost(self):
53
47
"""WalkerBase sets the host property."""
54
from lp.registry.scripts.productreleasefinder.walker import (
56
48
w = WalkerBase("ftp://localhost/")
57
49
self.assertEquals(w.host, "localhost")
59
51
def testNoScheme(self):
60
52
"""WalkerBase works when given a URL with no scheme."""
61
from lp.registry.scripts.productreleasefinder.walker import (
63
53
w = WalkerBase("/")
64
54
self.assertEquals(w.host, "")
72
62
def testUnescapesHost(self):
73
63
"""WalkerBase unescapes the host portion."""
74
from lp.registry.scripts.productreleasefinder.walker import (
76
64
w = WalkerBase("ftp://local%40host/")
77
65
self.assertEquals(w.host, "local@host")
79
67
def testNoUsername(self):
80
68
"""WalkerBase stores None when there is no username."""
81
from lp.registry.scripts.productreleasefinder.walker import (
83
69
w = WalkerBase("ftp://localhost/")
84
70
self.assertEquals(w.user, None)
86
72
def testUsername(self):
87
73
"""WalkerBase splits out the username from the host portion."""
88
from lp.registry.scripts.productreleasefinder.walker import (
90
74
w = WalkerBase("ftp://scott@localhost/")
91
75
self.assertEquals(w.user, "scott")
92
76
self.assertEquals(w.host, "localhost")
94
78
def testUnescapesUsername(self):
95
79
"""WalkerBase unescapes the username portion."""
96
from lp.registry.scripts.productreleasefinder.walker import (
98
80
w = WalkerBase("ftp://scott%3awibble@localhost/")
99
81
self.assertEquals(w.user, "scott:wibble")
100
82
self.assertEquals(w.host, "localhost")
102
84
def testNoPassword(self):
103
85
"""WalkerBase stores None when there is no password."""
104
from lp.registry.scripts.productreleasefinder.walker import (
106
86
w = WalkerBase("ftp://scott@localhost/")
107
87
self.assertEquals(w.passwd, None)
109
89
def testPassword(self):
110
90
"""WalkerBase splits out the password from the username."""
111
from lp.registry.scripts.productreleasefinder.walker import (
113
91
w = WalkerBase("ftp://scott:wibble@localhost/")
114
92
self.assertEquals(w.user, "scott")
115
93
self.assertEquals(w.passwd, "wibble")
118
96
def testUnescapesPassword(self):
119
97
"""WalkerBase unescapes the password portion."""
120
from lp.registry.scripts.productreleasefinder.walker import (
122
98
w = WalkerBase("ftp://scott:wibble%20wobble@localhost/")
123
99
self.assertEquals(w.user, "scott")
124
100
self.assertEquals(w.passwd, "wibble wobble")
127
103
def testPathOnly(self):
128
104
"""WalkerBase stores the path if that's all there is."""
129
from lp.registry.scripts.productreleasefinder.walker import (
131
105
w = WalkerBase("/path/to/something/")
132
106
self.assertEquals(w.path, "/path/to/something/")
134
108
def testPathInUrl(self):
135
109
"""WalkerBase stores the path portion of a complete URL."""
136
from lp.registry.scripts.productreleasefinder.walker import (
138
110
w = WalkerBase("ftp://localhost/path/to/something/")
139
111
self.assertEquals(w.path, "/path/to/something/")
141
113
def testAddsSlashToPath(self):
142
114
"""WalkerBase adds a trailing slash to path if ommitted."""
143
from lp.registry.scripts.productreleasefinder.walker import (
145
115
w = WalkerBase("ftp://localhost/path/to/something")
146
116
self.assertEquals(w.path, "/path/to/something/")
148
118
def testUnescapesPath(self):
149
119
"""WalkerBase leaves the path escaped."""
150
from lp.registry.scripts.productreleasefinder.walker import (
152
120
w = WalkerBase("ftp://localhost/some%20thing/")
153
121
self.assertEquals(w.path, "/some%20thing/")
155
123
def testStoresQuery(self):
156
124
"""WalkerBase stores the query portion of a supporting URL."""
157
from lp.registry.scripts.productreleasefinder.walker import (
159
125
w = WalkerBase("http://localhost/?foo")
160
126
self.assertEquals(w.query, "foo")
162
128
def testStoresFragment(self):
163
129
"""WalkerBase stores the fragment portion of a supporting URL."""
164
from lp.registry.scripts.productreleasefinder.walker import (
166
130
WalkerBase.FRAGMENTS = True
168
132
w = WalkerBase("http://localhost/#foo")
202
164
logger.setLevel(logging.DEBUG)
203
165
logger.addHandler(logging.StreamHandler(log_output))
204
166
walker = TestWalker('http://example.org/foo', logger)
207
168
self.assertEqual(
208
169
"Unicode error parsing http://example.org/foo page '/foo/'\n",
209
170
log_output.getvalue())
172
def test_walk_open_fail(self):
173
# The walker handles an exception raised during open().
175
class TestWalker(WalkerBase):
177
def list(self, sub_dir):
181
raise IOError("Test failure.")
186
log_output = StringIO.StringIO()
187
logger = logging.getLogger()
188
self.addCleanup(logger.setLevel, logger.level)
189
logger.setLevel(logging.DEBUG)
190
logger.addHandler(logging.StreamHandler(log_output))
191
walker = TestWalker('ftp://example.org/foo', logger)
194
"Could not connect to ftp://example.org/foo\n"
195
"Failure: Test failure.\n",
196
log_output.getvalue())
212
199
class FTPWalker_Base(TestCase):