1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
#!/usr/bin/python
#
# Copyright (C) 2008 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__author__ = 'j.s@google.com (Jeff Scudder)'
import unittest
import atom.url
import gdata.test_config as conf
class UrlTest(unittest.TestCase):
def testParseUrl(self):
url = atom.url.parse_url('http://www.google.com/calendar/feeds')
self.assert_(url.protocol == 'http')
self.assert_(url.port is None)
self.assert_(url.host == 'www.google.com')
self.assert_(url.path == '/calendar/feeds')
self.assert_(url.params == {})
url = atom.url.parse_url('http://example.com:6091/calendar/feeds')
self.assert_(url.protocol == 'http')
self.assert_(url.host == 'example.com')
self.assert_(url.port == '6091')
self.assert_(url.path == '/calendar/feeds')
self.assert_(url.params == {})
url = atom.url.parse_url('/calendar/feeds?foo=bar')
self.assert_(url.protocol is None)
self.assert_(url.host is None)
self.assert_(url.path == '/calendar/feeds')
self.assert_(len(url.params.keys()) == 1)
self.assert_('foo' in url.params)
self.assert_(url.params['foo'] == 'bar')
url = atom.url.parse_url('/calendar/feeds?my+foo=bar%3Dx')
self.assert_(len(url.params.keys()) == 1)
self.assert_('my foo' in url.params)
self.assert_(url.params['my foo'] == 'bar=x')
def testUrlToString(self):
url = atom.url.Url(port=80)
url.host = 'example.com'
self.assert_(str(url), '//example.com:80')
url = atom.url.Url(protocol='http', host='example.com', path='/feed')
url.params['has spaces'] = 'sneaky=values?&!'
self.assert_(url.to_string() == (
'http://example.com/feed?has+spaces=sneaky%3Dvalues%3F%26%21'))
def testGetRequestUri(self):
url = atom.url.Url(protocol='http', host='example.com', path='/feed')
url.params['has spaces'] = 'sneaky=values?&!'
self.assert_(url.get_request_uri() == (
'/feed?has+spaces=sneaky%3Dvalues%3F%26%21'))
self.assert_(url.get_param_string() == (
'has+spaces=sneaky%3Dvalues%3F%26%21'))
def testComparistons(self):
url1 = atom.url.Url(protocol='http', host='example.com', path='/feed',
params={'x':'1', 'y':'2'})
url2 = atom.url.Url(host='example.com', port=80, path='/feed',
params={'y':'2', 'x':'1'})
self.assertEquals(url1, url2)
url3 = atom.url.Url(host='example.com', port=81, path='/feed',
params={'x':'1', 'y':'2'})
self.assert_(url1 != url3)
self.assert_(url2 != url3)
url4 = atom.url.Url(protocol='ftp', host='example.com', path='/feed',
params={'x':'1', 'y':'2'})
self.assert_(url1 != url4)
self.assert_(url2 != url4)
self.assert_(url3 != url4)
def suite():
return conf.build_suite([UrlTest])
if __name__ == '__main__':
unittest.main()
|