annotate tests/doctest.txt @ 6:0cd69fa6751c

add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 27 Jun 2011 07:16:46 -0700
parents 6b99523536ee
children b02420253bfd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 Test urlmatch
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2 =============
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 The obligatory imports::
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5
5
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
6 >>> from urlmatch import UrlMatcher
2
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
8 Test matching::
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
9
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
10 >>> matcher = UrlMatcher('http://www.example.com/foo/bar/fleem')
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11 >>> matcher.add('http://www.example.com/foo/blah')
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
12 >>> matcher.add('https://www.example.com/foo/')
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
13 >>> matcher.add('https://www.example.net/foo/')
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
14 >>> sorted(matcher.match('example.com/foo/bar'))
5
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
15 ['http://www.example.com/foo/bar/fleem']
2
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
16 >>> sorted(matcher.match('http://example.com/foo'))
5
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
17 ['http://www.example.com/foo/bar/fleem', 'http://www.example.com/foo/blah']
2
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
18 >>> sorted(matcher.match('example.com'))
5
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
19 ['http://www.example.com/foo/bar/fleem', 'http://www.example.com/foo/blah', 'https://www.example.com/foo/']
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
20 >>> sorted(matcher.match('example')) # -> example.*
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
21 ['http://www.example.com/foo/bar/fleem', 'http://www.example.com/foo/blah', 'https://www.example.com/foo/', 'https://www.example.net/foo/']
2
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
22
6
0cd69fa6751c add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
23 Test decomposition::
0cd69fa6751c add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
24
0cd69fa6751c add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
25 >>> matcher = UrlMatcher()
0cd69fa6751c add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
26 >>> sorted(matcher.decompose('http://www.example.com/foo').items())
0cd69fa6751c add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
27 [('domain', ['example', 'com', 'www']), ('path', ['foo']), ('scheme', 'http')]
0cd69fa6751c add test for decomposition; stub diff, will have to move to 2-tuples to do this properly
Jeff Hammel <jhammel@mozilla.com>
parents: 5
diff changeset
28
2
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
29 Test url diffs::
20dde2687cfb stub doctests
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
30
5
6b99523536ee tests work
Jeff Hammel <jhammel@mozilla.com>
parents: 2
diff changeset
31 >>> matcher = UrlMatcher()