Skip to main content

A testsupport utility module for python

Project description

quiltz-testsupport

A package for test support

Purpose

At QWAN we're building some applications in python. We collect usefull stuff in quiltz packages:

  • quiltz-domain contains domain level modules like, entity id's, results, an email anonymizer, validators and parsers
  • quiltz-testsupport (this package) contains test support modules, that supports mainly non unit tests, like integrating with smtp, probing asynchronous results and asserting log statements
  • quiltz-messaging contains a messaging domain concept and an engines to send the messages. Currently only smtp sending is supported.

Modules in this package

logging

With the logging module you can assert log statements in a test using the log_collector fixture:

in test:

from quiltz.testsupport import log_collector
def test_logs_hello(log_collector):
    foo()
    log_collector.assert_info('hello info')

in production

def foo():
    logger = logging.getLogger()
    logger.info('hello info')

probing

With the probing module you can probe for async results:

from hamcrest import assert_that, equal_to
from quiltz.testsupport import probe_that

def test_stub_server_collects_message_for_recepient(self):        
    message = aMessage(recipient='rob@mailinator.com', sender='no-reply@qwan.eu', subject='test', body='hello test')
    self.message_engine.send([message])
    
    probe_that(lambda: self.server.messages == [stringified_message(message)])
    # or
    probe_that(lambda: assert_that(self.server.messages, equal_to([
        stringified_message(message)
    ])))
    # or
    probe_that(lambda: self.server.messages, equal_to([
        stringified_message(message)
    ]))

smtp

With the smtp module you can create a stub smtp server that collects smtp messages

from hamcrest import assert_that, equal_to
from quiltz.testsupport import probe_that
def server()
    server = StubSmtpServer(hostname='localhost', port=9925)
    server.start()
    yield(server)
    server.stop()

def test_collects_message_for_recepient(self, server): 
    message_engine = SMTPClientForTest(host='localhost', port='9925')
    message = aMessage(recipient='rob@mailinator.com', sender='no-reply@qwan.eu', subject='test', body='hello test')
    message_engine.send([message])
    
    probe_that(lambda: assert_that(server.messages, equal_to([
        stringified_message(message)
    ])))

installing

pip install quiltz-testsupport

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

quiltz_testsupport-0.3.1.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

quiltz_testsupport-0.3.1-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file quiltz_testsupport-0.3.1.tar.gz.

File metadata

  • Download URL: quiltz_testsupport-0.3.1.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.15

File hashes

Hashes for quiltz_testsupport-0.3.1.tar.gz
Algorithm Hash digest
SHA256 e4d67a664f345e3dcfacf6ea254a640e6e82992d4a42f295a46736a10a27f5f0
MD5 c05cda6792ec936716bcacf899b52daf
BLAKE2b-256 3dbed3f7e06808b2a46cee2ad74ea52d14414878e3a17c36d214cfe3c7aa1651

See more details on using hashes here.

File details

Details for the file quiltz_testsupport-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for quiltz_testsupport-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2162ad942e9e6bda776501c4aa81a4f3ec973de16bc445e01f3e2434455e8fbe
MD5 1f3e0c000b22b810fb50bb3311371259
BLAKE2b-256 ebe166a9f55fb10d22fe54ff7d9156ac5cab6c7c98a8c53493fdec1fa7aca141

See more details on using hashes here.

Supported by

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