Skip to main content

Server to test HTTP clients

Project description

https://travis-ci.org/lorien/test_server.png?branch=master https://ci.appveyor.com/api/projects/status/o3qhdh1gprcu1x1x https://coveralls.io/repos/lorien/test_server/badge.svg?branch=master https://api.codacy.com/project/badge/Grade/3ff9f3ebf06d4b7f8809b264837eac43

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


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.29.tar.gz (13.1 kB view details)

Uploaded Source

File details

Details for the file test-server-0.0.29.tar.gz.

File metadata

File hashes

Hashes for test-server-0.0.29.tar.gz
Algorithm Hash digest
SHA256 4ebbad0355aafa186012632eafefe7d4c0856b8d7c0ab12f990342f52af1f5fd
MD5 c10220454cf609efdf1ac18db3c5c426
BLAKE2b-256 db8aab7bb651780a000310972e846dedcdf3454ea5ca36046c646bdeca408eea

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page