mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
import urllib
|
|
assert "Hello World!" == urllib.urlopen('http://localhost:18080').read()
|
|
assert "About Crow example." == urllib.urlopen('http://localhost:18080/about').read()
|
|
assert 404 == urllib.urlopen('http://localhost:18080/list').getcode()
|
|
assert "3 bottles of beer!" == urllib.urlopen('http://localhost:18080/hello/3').read()
|
|
assert "100 bottles of beer!" == urllib.urlopen('http://localhost:18080/hello/100').read()
|
|
assert 400 == urllib.urlopen('http://localhost:18080/hello/500').getcode()
|
|
assert "3" == urllib.urlopen('http://localhost:18080/add_json', data='{"a":1,"b":2}').read()
|
|
assert "3" == urllib.urlopen('http://localhost:18080/add/1/2').read()
|
|
|
|
# test persistent connection
|
|
import socket
|
|
import time
|
|
s = socket.socket()
|
|
s.connect(('localhost', 18080))
|
|
for i in xrange(10):
|
|
s.send('''GET / HTTP/1.1
|
|
Host: localhost\r\n\r\n''');
|
|
assert 'Hello World!' in s.recv(1024)
|
|
|
|
# test timeout
|
|
s = socket.socket()
|
|
s.connect(('localhost', 18080))
|
|
print 'ERROR REQUEST'
|
|
s.send('''GET / HTTP/1.1
|
|
hHhHHefhwjkefhklwejfklwejf
|
|
''')
|
|
print s.recv(1024)
|