Skip to main content

Hacks to assist with testing.

Project description

Hacks to assist with testing.

Latest release 20250426: Update DISTINFO.

Short summary:

  • assertSingleThread: Test that there is only one Thread still running.
  • product_test: Decorator for test methods which should run subTests against the Cartesian products from params.
  • SetupTeardownMixin: A mixin to support a single setupTeardown() context manager method.

Module contents:

  • assertSingleThread(include_daemon=False, exclude=None): Test that there is only one Thread still running.

    Parameters:

    • include_daemon: also count daemon Threads, normally skipped
    • exclude: optional Callable[Thread] to test for other Threads to exclude
  • product_test(*da, **dkw): Decorator for test methods which should run subTests against the Cartesian products from params.

    A specific TestCase would define its own decorator and apply it throughout the suite. Here is an example from cs.vt.datadir_tests:

    def multitest(test_method): return product_test( test_method, datadirclass=[DataDir, RawDataDir], indexclass=[ indexclass_by_name(indexname) for indexname in sorted(indexclass_names()) ], hashclass=[ HASHCLASS_BY_NAME[hashname] for hashname in sorted(HASHCLASS_BY_NAME.keys()) ], )

    whose test suite then just decorates each method with @multitest:

    @multitest
    def test000IndexEntry(self):
        ....
    

    Note that because there must be setup and teardown for each product, the TestCase class may well have empty setUp and tearDown methods and instead is expected to provide:

    • product_setup(self,**params): a setup method taking keyword arguments for each product
    • product_teardown(self): the corresponding testdown method There are called around each subTest.
  • Class SetupTeardownMixin: A mixin to support a single setupTeardown()` context manager method.

SetupTeardownMixin.setUp(self): Run super().setUp() then the set up step of self.setupTeardown().

SetupTeardownMixin.tearDown(self): Run the tear down step of self.setupTeardown(), then super().tearDown().

Release Log

Release 20250426: Update DISTINFO.

Release 20241122: assertSingleThread: new optional exclude parameter which is a callable to test where a Thread should be ignored.

Release 20240623: New assertSingleThread() function to check that there are no left over Threads.

Release 20230109:

  • @product_test decorator for running test matrices.
  • SetupTeardownMixin providing unittest setUp/tearDown from setupTeardown context manager method.

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

cs_testutils-20250426.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

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

cs_testutils-20250426-py2.py3-none-any.whl (4.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file cs_testutils-20250426.tar.gz.

File metadata

  • Download URL: cs_testutils-20250426.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for cs_testutils-20250426.tar.gz
Algorithm Hash digest
SHA256 b36b3465bac1f0b38121a36521d2fc554eb9d30ea1364085837f56d2922c73cf
MD5 9761abde1b65169956c53fc742dc1beb
BLAKE2b-256 7029c5d0e19ad1f226d80823974ed4c20b64239c66f715f5199af241b4cd5d95

See more details on using hashes here.

File details

Details for the file cs_testutils-20250426-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for cs_testutils-20250426-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0910e6fefae29746f3d0c6dabc6c2479c6c1330e6d0629ff922a08670367e6e7
MD5 ed9afd9ab60a79c4c8debf4438974ae5
BLAKE2b-256 170aa90ae0f1d04c4d689d7fa6502262099d5bd523dc5ec0f2e1b67bbefd93f4

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