Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1868d7c2
Commit
1868d7c2
authored
Dec 09, 2008
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add simple unittests for Request
parent
16a2a1d2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
1 deletion
+47
-1
Lib/test/test_urllib2.py
Lib/test/test_urllib2.py
+47
-1
No files found.
Lib/test/test_urllib2.py
View file @
1868d7c2
...
...
@@ -1104,6 +1104,51 @@ class MiscTests(unittest.TestCase):
else
:
self
.
assert_
(
False
)
class
RequestTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
get
=
urllib2
.
Request
(
"http://www.python.org/~jeremy/"
)
self
.
post
=
urllib2
.
Request
(
"http://www.python.org/~jeremy/"
,
"data"
,
headers
=
{
"X-Test"
:
"test"
})
def
test_method
(
self
):
self
.
assertEqual
(
"POST"
,
self
.
post
.
get_method
())
self
.
assertEqual
(
"GET"
,
self
.
get
.
get_method
())
def
test_add_data
(
self
):
self
.
assert_
(
not
self
.
get
.
has_data
())
self
.
assertEqual
(
"GET"
,
self
.
get
.
get_method
())
self
.
get
.
add_data
(
"spam"
)
self
.
assert_
(
self
.
get
.
has_data
())
self
.
assertEqual
(
"POST"
,
self
.
get
.
get_method
())
def
test_get_full_url
(
self
):
self
.
assertEqual
(
"http://www.python.org/~jeremy/"
,
self
.
get
.
get_full_url
())
def
test_selector
(
self
):
self
.
assertEqual
(
"/~jeremy/"
,
self
.
get
.
get_selector
())
req
=
urllib2
.
Request
(
"http://www.python.org/"
)
self
.
assertEqual
(
"/"
,
req
.
get_selector
())
def
test_get_type
(
self
):
self
.
assertEqual
(
"http"
,
self
.
get
.
get_type
())
def
test_get_host
(
self
):
self
.
assertEqual
(
"www.python.org"
,
self
.
get
.
get_host
())
def
test_get_host_unquote
(
self
):
req
=
urllib2
.
Request
(
"http://www.%70ython.org/"
)
self
.
assertEqual
(
"www.python.org"
,
req
.
get_host
())
def
test_proxy
(
self
):
self
.
assert_
(
not
self
.
get
.
has_proxy
())
self
.
get
.
set_proxy
(
"www.perl.org"
,
"http"
)
self
.
assert_
(
self
.
get
.
has_proxy
())
self
.
assertEqual
(
"www.python.org"
,
self
.
get
.
get_origin_req_host
())
self
.
assertEqual
(
"www.perl.org"
,
self
.
get
.
get_host
())
def
test_main
(
verbose
=
None
):
from
test
import
test_urllib2
...
...
@@ -1112,7 +1157,8 @@ def test_main(verbose=None):
tests
=
(
TrivialTests
,
OpenerDirectorTests
,
HandlerTests
,
MiscTests
)
MiscTests
,
RequestTests
)
test_support
.
run_unittest
(
*
tests
)
if
__name__
==
"__main__"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment