Server to test HTTP clients
Project description
HTTP Server to test HTTP clients.
Installation
pip install test-server
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)
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.31.tar.gz
(9.7 kB
view details)
File details
Details for the file test-server-0.0.31.tar.gz
.
File metadata
- Download URL: test-server-0.0.31.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbfd416658b20e138fbb30d1900ec3b93c3aa3cdcbbbaecda42f62c27674cdba |
|
MD5 | 61afb28c2d3455f618f5bfa27bc54153 |
|
BLAKE2b-256 | 609f769035c59f509250cd68d99b8c66242ca78b7e1e724028f63915227c4275 |