Server to test HTTP clients
Project description
HTTP Server to test HTTP clients.
Usage Example
Example:
from unittest import TestCase
try:
from urllib import urlopen
except ImportError:
from urllib.request import urlopen
from test_server import TestServer
class UrllibTestCase(TestCase):
@classmethod
def setUpClass(cls):
cls.server = TestServer()
cls.server.start()
@classmethod
def tearDownClass(cls):
cls.server.stop()
def setUp(self):
self.server.reset()
def test_get(self):
token = b'zorro'
self.server.response['data'] = token
data = urlopen(self.server.base_url).read()
self.assertEqual(data, token)
Installation
Run:
pip install test-server
Dependencies
tornado
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
test-server-0.0.16.tar.gz
(6.3 kB
view details)
File details
Details for the file test-server-0.0.16.tar.gz
.
File metadata
- Download URL: test-server-0.0.16.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71d6e09bd2565b8af25b129c1189f4bee131c95feb4159d3f137de4a3302260d |
|
MD5 | da6dce86f4e1acb4cbfc4021e9840e69 |
|
BLAKE2b-256 | 00fb53e6e52c14e0a3fcf982e3a1a2764010081dc0403c2fa30ea133078725b0 |