fixtures


Namefixtures JSON
Version 4.1.0 PyPI version JSON
download
home_pagehttps://github.com/testing-cabal/fixtures
SummaryFixtures, reusable state for writing clean tests and more.
upload_time2023-05-26 13:28:38
maintainer
docs_urlNone
authorRobert Collins
requires_python>=3.7
license
keywords
VCS
bugtrack_url
requirements pbr
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ************************************************************
fixtures: Fixtures with cleanups for testing and convenience
************************************************************

*fixtures* defines a Python contract for reusable state / support logic,
primarily for unit testing. Helper and adaption logic is included to make it
easy to write your own fixtures using the fixtures contract. Glue code is
provided that makes using fixtures that meet the ``Fixtures`` contract in
``unittest`` compatible test cases easy and straight forward.

Dependencies
============

* Python 3.7+
  This is the base language fixtures is written in and for.

* ``pbr``
  Used for version and release management of fixtures.

The ``fixtures[streams]`` extra adds:

* ``testtools`` <https://launchpad.net/testtools>

  ``testtools`` provides helpful glue functions for the details API used to report
  information about a fixture (whether its used in a testing or production
  environment).

For use in a unit test suite using the included glue, you will need a test
environment that supports ``TestCase.addCleanup``. Writing your own glue code
is easy. Alternatively, you can simply use Fixtures directly without any
support code.

To run the test suite for fixtures, ``testtools`` is needed.

Why Fixtures
============

Standard Python ``unittest`` provides no obvious method for making and reusing
state needed in a test case other than by adding a method on the test class.
This scales poorly - complex helper functions propagating up a test class
hierarchy is a regular pattern when this is done. Mocking, while a great tool,
doesn't itself prevent this (and helpers to mock complex things can accumulate
in the same way if placed on the test class).

By defining a uniform contract where helpers have no dependency on the test
class we permit all the regular code hygiene activities to take place without
the distorting influence of being in a class hierarchy that is modelling an
entirely different thing - which is what helpers on a ``TestCase`` suffer from.

About Fixtures
==============

A fixture represents some state. Each fixture has attributes on it that are
specific to the fixture. For instance, a fixture representing a directory that
can be used for temporary files might have a attribute ``path``.

Most fixtures have complete ``pydoc`` documentation, so be sure to check
``pydoc fixtures`` for usage information.

Creating Fixtures
=================

Minimally, subclass ``Fixture``, define ``_setUp`` to initialize your state,
schedule a cleanup for when ``cleanUp`` is called, and you're done::

  >>> import unittest
  >>> import fixtures
  >>> class NoddyFixture(fixtures.Fixture):
  ...     def _setUp(self):
  ...         self.frobnozzle = 42
  ...         self.addCleanup(delattr, self, 'frobnozzle')

This will initialize ``frobnozzle`` when ``setUp`` is called, and when
``cleanUp`` is called get rid of the ``frobnozzle`` attribute. Prior to version
1.3.0 *fixtures* recommended overriding ``setUp``. This is still supported, but
since it is harder to write leak-free fixtures in this fashion, it is not
recommended.

If your fixture has diagnostic data - for instance the log file of an
application server, or log messages - it can expose that by creating a content
object (``testtools.content.Content``) and calling ``addDetail``::

  >>> from testtools.content import text_content
  >>> class WithLog(fixtures.Fixture):
  ...     def _setUp(self):
  ...         self.addDetail('message', text_content('foo bar baz'))

The method ``useFixture`` will use another fixture, call ``setUp`` on it, call
``self.addCleanup(thefixture.cleanUp)``, attach any details from it and return
the fixture. This allows simple composition of different fixtures::

  >>> class ReusingFixture(fixtures.Fixture):
  ...     def _setUp(self):
  ...         self.noddy = self.useFixture(NoddyFixture())

There is a helper for adapting a function or function pair into Fixtures. It
puts the result of the function in ``fn_result``::

  >>> import os.path
  >>> import shutil
  >>> import tempfile
  >>> def setup_function():
  ...     return tempfile.mkdtemp()
  >>> def teardown_function(fixture):
  ...     shutil.rmtree(fixture)
  >>> fixture = fixtures.FunctionFixture(setup_function, teardown_function)
  >>> fixture.setUp()
  >>> print (os.path.isdir(fixture.fn_result))
  True
  >>> fixture.cleanUp()

This can be expressed even more pithily::

  >>> fixture = fixtures.FunctionFixture(tempfile.mkdtemp, shutil.rmtree)
  >>> fixture.setUp()
  >>> print (os.path.isdir(fixture.fn_result))
  True
  >>> fixture.cleanUp()

Another variation is ``MethodFixture`` which is useful for adapting alternate
fixture implementations to Fixture::

  >>> class MyServer:
  ...    def start(self):
  ...        pass
  ...    def stop(self):
  ...        pass
  >>> server = MyServer()
  >>> fixture = fixtures.MethodFixture(server, server.start, server.stop)

You can also combine existing fixtures using ``CompoundFixture``::

  >>> noddy_with_log = fixtures.CompoundFixture([NoddyFixture(),
  ...                                            WithLog()])
  >>> with noddy_with_log as x:
  ...     print (x.fixtures[0].frobnozzle)
  42

The Fixture API
===============

The example above introduces some of the ``Fixture`` API. In order to be able
to clean up after a fixture has been used, all fixtures define a ``cleanUp``
method which should be called when a fixture is finished with.

Because it's nice to be able to build a particular set of related fixtures in
advance of using them, fixtures also have a ``setUp`` method which should be
called before trying to use them.

One common desire with fixtures that are expensive to create is to reuse them
in many test cases; to support this the base ``Fixture`` also defines a
``reset`` which calls ``self.cleanUp(); self.setUp()``. Fixtures that can more
efficiently make themselves reusable should override this method. This can then
be used with multiple test state via things like ``testresources``,
``setUpClass``, or ``setUpModule``.

When using a fixture with a test you can manually call the ``setUp`` and
``cleanUp`` methods. More convenient though is to use the included glue from
``fixtures.TestWithFixtures`` which provides a mixin defining ``useFixture``
(camel case because ``unittest`` is camel case throughout) method. It will call
``setUp`` on the fixture, call ``self.addCleanup(fixture)`` to schedule a
cleanup, and return the fixture. This lets one write::

  >>> import testtools
  >>> import unittest

Note that we use ``testtools.TestCase``. ``testtools`` has it's own
implementation of ``useFixture`` so there is no need to use
``fixtures.TestWithFixtures`` with ``testtools.TestCase``::

  >>> class NoddyTest(testtools.TestCase, fixtures.TestWithFixtures):
  ...     def test_example(self):
  ...         fixture = self.useFixture(NoddyFixture())
  ...         self.assertEqual(42, fixture.frobnozzle)
  >>> result = unittest.TestResult()
  >>> _ = NoddyTest('test_example').run(result)
  >>> print (result.wasSuccessful())
  True

Fixtures implement the context protocol, so you can also use a fixture as a
context manager::

  >>> with fixtures.FunctionFixture(setup_function, teardown_function) as fixture:
  ...    print (os.path.isdir(fixture.fn_result))
  True

When multiple cleanups error, ``fixture.cleanUp()`` will raise a wrapper
exception rather than choosing an arbitrary single exception to raise::

  >>> import sys
  >>> from fixtures.fixture import MultipleExceptions
  >>> class BrokenFixture(fixtures.Fixture):
  ...     def _setUp(self):
  ...         self.addCleanup(lambda:1/0)
  ...         self.addCleanup(lambda:1/0)
  >>> fixture = BrokenFixture()
  >>> fixture.setUp()
  >>> try:
  ...    fixture.cleanUp()
  ... except MultipleExceptions:
  ...    exc_info = sys.exc_info()
  >>> print (exc_info[1].args[0][0].__name__)
  ZeroDivisionError

Fixtures often expose diagnostic details that can be useful for tracking down
issues. The ``getDetails`` method will return a dict of all the attached
details but can only be called before ``cleanUp`` is called. Each detail
object is an instance of ``testtools.content.Content``::

  >>> with WithLog() as l:
  ...     print(l.getDetails()['message'].as_text())
  foo bar baz

Errors in setUp
+++++++++++++++

The examples above used ``_setUp`` rather than ``setUp`` because the base
class implementation of ``setUp`` acts to reduce the chance of leaking
external resources if an error is raised from ``_setUp``. Specifically,
``setUp`` contains a try/except block which catches all exceptions, captures
any registered detail objects, and calls ``self.cleanUp`` before propagating
the error. As long as you take care to register any cleanups before calling
the code that may fail, this will cause them to be cleaned up. The captured
detail objects are provided to the args of the raised exception.

If the error that occurred was a subclass of ``Exception`` then ``setUp`` will
raise ``MultipleExceptions`` with the last element being a ``SetupError`` that
contains the detail objects. Otherwise, to prevent causing normally
uncatchable errors like ``KeyboardInterrupt`` being caught inappropriately in
the calling layer, the original exception will be raised as-is and no
diagnostic data other than that from the original exception will be available.

Shared Dependencies
+++++++++++++++++++

A common use case within complex environments is having some fixtures shared by
other ones.

Consider the case of testing using a ``TempDir`` with two fixtures built on top
of it; say a small database and a web server. Writing either one is nearly
trivial. However handling ``reset()`` correctly is hard: both the database and
web server would reasonably expect to be able to discard operating system
resources they may have open within the temporary directory before its removed.
A recursive ``reset()`` implementation would work for one, but not both.
Calling ``reset()`` on the ``TempDir`` instance between each test is probably
desirable but we don't want to have to do a complete ``cleanUp`` of the higher
layer fixtures (which would make the ``TempDir`` be unused and trivially
resettable. We have a few options available to us.

Imagine that the webserver does not depend on the DB fixture in any way - we
just want the webserver and DB fixture to coexist in the same tempdir.

A simple option is to just provide an explicit dependency fixture for the
higher layer fixtures to use.  This pushes complexity out of the core and onto
users of fixtures::

  >>> class WithDep(fixtures.Fixture):
  ...     def __init__(self, tempdir, dependency_fixture):
  ...         super(WithDep, self).__init__()
  ...         self.tempdir = tempdir
  ...         self.dependency_fixture = dependency_fixture
  ...     def setUp(self):
  ...         super(WithDep, self).setUp()
  ...         self.addCleanup(self.dependency_fixture.cleanUp)
  ...         self.dependency_fixture.setUp()
  ...         # we assume that at this point self.tempdir is usable.
  >>> DB = WithDep
  >>> WebServer = WithDep
  >>> tempdir = fixtures.TempDir()
  >>> db = DB(tempdir, tempdir)
  >>> server = WebServer(tempdir, db)
  >>> server.setUp()
  >>> server.cleanUp()

Another option is to write the fixtures to gracefully handle a dependency
being reset underneath them. This is insufficient if the fixtures would
block the dependency resetting (for instance by holding file locks open
in a tempdir - on Windows this will prevent the directory being deleted).

Another approach which ``fixtures`` neither helps nor hinders is to raise
a signal of some sort for each user of a fixture before it is reset. In the
example here, ``TempDir`` might offer a subscribers attribute that both the
DB and web server would be registered in. Calling ``reset`` or ``cleanUp``
on the tempdir would trigger a callback to all the subscribers; the DB and
web server reset methods would look something like::

  >>> def reset(self):
  ...     if not self._cleaned:
  ...         self._clean()

(Their action on the callback from the tempdir would be to do whatever work
was needed and set ``self._cleaned``.) This approach has the (perhaps)
surprising effect that resetting the webserver may reset the DB - if the
webserver were to be depending on ``tempdir.reset`` as a way to reset the
webserver's state.

Another approach which is not currently implemented is to provide an object
graph of dependencies and a reset mechanism that can traverse that, along with
a separation between 'reset starting' and 'reset finishing' - the DB and
webserver would both have their ``reset_starting`` methods called, then the
tempdir would be reset, and finally the DB and webserver would have
``reset_finishing`` called.

Stock Fixtures
==============

In addition to the ``Fixture``, ``FunctionFixture`` and ``MethodFixture``
classes, fixtures includes a number of pre-canned fixtures. The API docs for
fixtures will list the complete set of these, should the docs be out of date or
not to hand. For the complete feature set of each fixture please see the API
docs.

``ByteStream``
++++++++++++++

Trivial adapter to make a ``BytesIO`` (though it may in future auto-spill to
disk for large content) and expose that as a detail object, for automatic
inclusion in test failure descriptions. Very useful in combination with
``MonkeyPatch``::

  >>> fixture = fixtures.StringStream('my-content')
  >>> fixture.setUp()
  >>> with fixtures.MonkeyPatch('sys.something', fixture.stream):
  ...     pass
  >>> fixture.cleanUp()

This requires the ``fixtures[streams]`` extra.

``EnvironmentVariable``
+++++++++++++++++++++++

Isolate your code from environmental variables, delete them or set them to a
new value::

  >>> fixture = fixtures.EnvironmentVariable('HOME')

``FakeLogger``
++++++++++++++

Isolate your code from an external logging configuration - so that your test
gets the output from logged messages, but they don't go to e.g. the console::

  >>> fixture = fixtures.FakeLogger()

``FakePopen``
+++++++++++++

Pretend to run an external command rather than needing it to be present to run
tests::

  >>> from io import BytesIO
  >>> fixture = fixtures.FakePopen(lambda _:{'stdout': BytesIO('foobar')})

``LogHandler``
++++++++++++++

Replace or extend a logger's handlers. The behavior of this fixture depends on
the value of the ``nuke_handlers`` parameter: if ``true``, the logger's
existing handlers are removed and replaced by the provided handler, while if
``false`` the logger's set of handlers is extended by the provided handler::

  >>> from logging import StreamHandler
  >>> fixture = fixtures.LogHandler(StreamHandler())

``MockPatchObject``
+++++++++++++++++++

Adapts ``mock.patch.object`` to be used as a fixture::

  >>> class Fred:
  ...     value = 1
  >>> fixture = fixtures.MockPatchObject(Fred, 'value', 2)
  >>> with fixture:
  ...     Fred().value
  2
  >>> Fred().value
  1

``MockPatch``
+++++++++++++

Adapts ``mock.patch`` to be used as a fixture::

  >>> fixture = fixtures.MockPatch('subprocess.Popen.returncode', 3)

``MockPatchMultiple``
+++++++++++++++++++++

Adapts ``mock.patch.multiple`` to be used as a ``fixture``::

  >>> fixture = fixtures.MockPatchMultiple('subprocess.Popen', returncode=3)

``MonkeyPatch``
+++++++++++++++

Control the value of a named Python attribute::

  >>> def fake_open(path, mode):
  ...     pass
  >>> fixture = fixtures.MonkeyPatch('__builtin__.open', fake_open)

Note that there are some complexities when patching methods - please see the
API documentation for details.

``NestedTempfile``
++++++++++++++++++

Change the default directory that the ``tempfile`` module places temporary
files and directories in. This can be useful for containing the noise created
by code which doesn't clean up its temporary files. This does not affect
temporary file creation where an explicit containing directory was provided::

  >>> fixture = fixtures.NestedTempfile()

``PackagePathEntry``
++++++++++++++++++++

Adds a single directory to the path for an existing Python package. This adds
to the ``package.__path__`` list. If the directory is already in the path,
nothing happens, if it isn't then it is added on ``setUp`` and removed on
``cleanUp``::

  >>> fixture = fixtures.PackagePathEntry('package/name', '/foo/bar')

``PythonPackage``
+++++++++++++++++

Creates a python package directory. Particularly useful for testing code that
dynamically loads packages/modules, or for mocking out the command line entry
points to Python programs::

  >>> fixture = fixtures.PythonPackage('foo.bar', [('quux.py', '')])

``PythonPathEntry``
+++++++++++++++++++

Adds a single directory to ``sys.path``. If the directory is already in the
path, nothing happens, if it isn't then it is added on ``setUp`` and removed on
``cleanUp``::

  >>> fixture = fixtures.PythonPathEntry('/foo/bar')

``Stream``
++++++++++

Trivial adapter to expose a file-like object as a detail object, for automatic
inclusion in test failure descriptions. ``StringStream`` and ``BytesStream``
provided concrete users of this fixture.

This requires the ``fixtures[streams]`` extra.

``StringStream``
++++++++++++++++

Trivial adapter to make a ``StringIO`` (though it may in future auto-spill to
disk for large content) and expose that as a detail object, for automatic
inclusion in test failure descriptions. Very useful in combination with
``MonkeyPatch``::

  >>> fixture = fixtures.StringStream('stdout')
  >>> fixture.setUp()
  >>> with fixtures.MonkeyPatch('sys.stdout', fixture.stream):
  ...     pass
  >>> fixture.cleanUp()

This requires the ``fixtures[streams]`` extra.

``TempDir``
+++++++++++

Create a temporary directory and clean it up later::

  >>> fixture = fixtures.TempDir()

The created directory is stored in the ``path`` attribute of the fixture after
``setUp``.

``TempHomeDir``
+++++++++++++++

Create a temporary directory and set it as ``$HOME`` in the environment::

  >>> fixture = fixtures.TempHomeDir()

The created directory is stored in the ``path`` attribute of the fixture after
``setUp``.

The environment will now have ``$HOME`` set to the same path, and the value
will be returned to its previous value after ``tearDown``.

``Timeout``
+++++++++++

Aborts if the covered code takes more than a specified number of whole wall-clock
seconds.

There are two possibilities, controlled by the ``gentle`` argument: when gentle,
an exception will be raised and the test (or other covered code) will fail.
When not gentle, the entire process will be terminated, which is less clean,
but more likely to break hangs where no Python code is running.

.. caution::

   Only one timeout can be active at any time across all threads in a single
   process.  Using more than one has undefined results.  (This could be improved
   by chaining alarms.)

.. note::

   Currently supported only on Unix because it relies on the ``alarm`` system
   call.

``WarningsCapture``
+++++++++++++++++++

Capture warnings for later analysis::

  >>> fixture = fixtures.WarningsCapture()

The captured warnings are stored in the ``captures`` attribute of the fixture
after ``setUp``.

``WarningsFilter``
++++++++++++++++++

Configure warnings filters during test runs::

  >>> fixture = fixtures.WarningsFilter(
  ...     [
  ...         {
  ...             'action': 'ignore',
  ...             'message': 'foo',
  ...             'category': DeprecationWarning,
  ...         },
  ...     ]
  ... )

Order is important: entries closer to the front of the list override entries
later in the list, if both match a particular warning.

Contributing
============

Fixtures has its project homepage on GitHub
<https://github.com/testing-cabal/fixtures>.

License
=======

  Copyright (c) 2010, Robert Collins <robertc@robertcollins.net>

  Licensed under either the Apache License, Version 2.0 or the BSD 3-clause
  license at the users choice. A copy of both licenses are available in the
  project source as Apache-2.0 and BSD. You may not use this file except in
  compliance with one of these two licences.

  Unless required by applicable law or agreed to in writing, software
  distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
  license you chose for the specific language governing permissions and
  limitations under that license.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/testing-cabal/fixtures",
    "name": "fixtures",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Robert Collins",
    "author_email": "robertc@robertcollins.net",
    "download_url": "https://files.pythonhosted.org/packages/5e/4c/3c3faee9f554d753ee428bef3a5e8176995cffbf0b5ad3f1d6c272ab2148/fixtures-4.1.0.tar.gz",
    "platform": null,
    "description": "************************************************************\nfixtures: Fixtures with cleanups for testing and convenience\n************************************************************\n\n*fixtures* defines a Python contract for reusable state / support logic,\nprimarily for unit testing. Helper and adaption logic is included to make it\neasy to write your own fixtures using the fixtures contract. Glue code is\nprovided that makes using fixtures that meet the ``Fixtures`` contract in\n``unittest`` compatible test cases easy and straight forward.\n\nDependencies\n============\n\n* Python 3.7+\n  This is the base language fixtures is written in and for.\n\n* ``pbr``\n  Used for version and release management of fixtures.\n\nThe ``fixtures[streams]`` extra adds:\n\n* ``testtools`` <https://launchpad.net/testtools>\n\n  ``testtools`` provides helpful glue functions for the details API used to report\n  information about a fixture (whether its used in a testing or production\n  environment).\n\nFor use in a unit test suite using the included glue, you will need a test\nenvironment that supports ``TestCase.addCleanup``. Writing your own glue code\nis easy. Alternatively, you can simply use Fixtures directly without any\nsupport code.\n\nTo run the test suite for fixtures, ``testtools`` is needed.\n\nWhy Fixtures\n============\n\nStandard Python ``unittest`` provides no obvious method for making and reusing\nstate needed in a test case other than by adding a method on the test class.\nThis scales poorly - complex helper functions propagating up a test class\nhierarchy is a regular pattern when this is done. Mocking, while a great tool,\ndoesn't itself prevent this (and helpers to mock complex things can accumulate\nin the same way if placed on the test class).\n\nBy defining a uniform contract where helpers have no dependency on the test\nclass we permit all the regular code hygiene activities to take place without\nthe distorting influence of being in a class hierarchy that is modelling an\nentirely different thing - which is what helpers on a ``TestCase`` suffer from.\n\nAbout Fixtures\n==============\n\nA fixture represents some state. Each fixture has attributes on it that are\nspecific to the fixture. For instance, a fixture representing a directory that\ncan be used for temporary files might have a attribute ``path``.\n\nMost fixtures have complete ``pydoc`` documentation, so be sure to check\n``pydoc fixtures`` for usage information.\n\nCreating Fixtures\n=================\n\nMinimally, subclass ``Fixture``, define ``_setUp`` to initialize your state,\nschedule a cleanup for when ``cleanUp`` is called, and you're done::\n\n  >>> import unittest\n  >>> import fixtures\n  >>> class NoddyFixture(fixtures.Fixture):\n  ...     def _setUp(self):\n  ...         self.frobnozzle = 42\n  ...         self.addCleanup(delattr, self, 'frobnozzle')\n\nThis will initialize ``frobnozzle`` when ``setUp`` is called, and when\n``cleanUp`` is called get rid of the ``frobnozzle`` attribute. Prior to version\n1.3.0 *fixtures* recommended overriding ``setUp``. This is still supported, but\nsince it is harder to write leak-free fixtures in this fashion, it is not\nrecommended.\n\nIf your fixture has diagnostic data - for instance the log file of an\napplication server, or log messages - it can expose that by creating a content\nobject (``testtools.content.Content``) and calling ``addDetail``::\n\n  >>> from testtools.content import text_content\n  >>> class WithLog(fixtures.Fixture):\n  ...     def _setUp(self):\n  ...         self.addDetail('message', text_content('foo bar baz'))\n\nThe method ``useFixture`` will use another fixture, call ``setUp`` on it, call\n``self.addCleanup(thefixture.cleanUp)``, attach any details from it and return\nthe fixture. This allows simple composition of different fixtures::\n\n  >>> class ReusingFixture(fixtures.Fixture):\n  ...     def _setUp(self):\n  ...         self.noddy = self.useFixture(NoddyFixture())\n\nThere is a helper for adapting a function or function pair into Fixtures. It\nputs the result of the function in ``fn_result``::\n\n  >>> import os.path\n  >>> import shutil\n  >>> import tempfile\n  >>> def setup_function():\n  ...     return tempfile.mkdtemp()\n  >>> def teardown_function(fixture):\n  ...     shutil.rmtree(fixture)\n  >>> fixture = fixtures.FunctionFixture(setup_function, teardown_function)\n  >>> fixture.setUp()\n  >>> print (os.path.isdir(fixture.fn_result))\n  True\n  >>> fixture.cleanUp()\n\nThis can be expressed even more pithily::\n\n  >>> fixture = fixtures.FunctionFixture(tempfile.mkdtemp, shutil.rmtree)\n  >>> fixture.setUp()\n  >>> print (os.path.isdir(fixture.fn_result))\n  True\n  >>> fixture.cleanUp()\n\nAnother variation is ``MethodFixture`` which is useful for adapting alternate\nfixture implementations to Fixture::\n\n  >>> class MyServer:\n  ...    def start(self):\n  ...        pass\n  ...    def stop(self):\n  ...        pass\n  >>> server = MyServer()\n  >>> fixture = fixtures.MethodFixture(server, server.start, server.stop)\n\nYou can also combine existing fixtures using ``CompoundFixture``::\n\n  >>> noddy_with_log = fixtures.CompoundFixture([NoddyFixture(),\n  ...                                            WithLog()])\n  >>> with noddy_with_log as x:\n  ...     print (x.fixtures[0].frobnozzle)\n  42\n\nThe Fixture API\n===============\n\nThe example above introduces some of the ``Fixture`` API. In order to be able\nto clean up after a fixture has been used, all fixtures define a ``cleanUp``\nmethod which should be called when a fixture is finished with.\n\nBecause it's nice to be able to build a particular set of related fixtures in\nadvance of using them, fixtures also have a ``setUp`` method which should be\ncalled before trying to use them.\n\nOne common desire with fixtures that are expensive to create is to reuse them\nin many test cases; to support this the base ``Fixture`` also defines a\n``reset`` which calls ``self.cleanUp(); self.setUp()``. Fixtures that can more\nefficiently make themselves reusable should override this method. This can then\nbe used with multiple test state via things like ``testresources``,\n``setUpClass``, or ``setUpModule``.\n\nWhen using a fixture with a test you can manually call the ``setUp`` and\n``cleanUp`` methods. More convenient though is to use the included glue from\n``fixtures.TestWithFixtures`` which provides a mixin defining ``useFixture``\n(camel case because ``unittest`` is camel case throughout) method. It will call\n``setUp`` on the fixture, call ``self.addCleanup(fixture)`` to schedule a\ncleanup, and return the fixture. This lets one write::\n\n  >>> import testtools\n  >>> import unittest\n\nNote that we use ``testtools.TestCase``. ``testtools`` has it's own\nimplementation of ``useFixture`` so there is no need to use\n``fixtures.TestWithFixtures`` with ``testtools.TestCase``::\n\n  >>> class NoddyTest(testtools.TestCase, fixtures.TestWithFixtures):\n  ...     def test_example(self):\n  ...         fixture = self.useFixture(NoddyFixture())\n  ...         self.assertEqual(42, fixture.frobnozzle)\n  >>> result = unittest.TestResult()\n  >>> _ = NoddyTest('test_example').run(result)\n  >>> print (result.wasSuccessful())\n  True\n\nFixtures implement the context protocol, so you can also use a fixture as a\ncontext manager::\n\n  >>> with fixtures.FunctionFixture(setup_function, teardown_function) as fixture:\n  ...    print (os.path.isdir(fixture.fn_result))\n  True\n\nWhen multiple cleanups error, ``fixture.cleanUp()`` will raise a wrapper\nexception rather than choosing an arbitrary single exception to raise::\n\n  >>> import sys\n  >>> from fixtures.fixture import MultipleExceptions\n  >>> class BrokenFixture(fixtures.Fixture):\n  ...     def _setUp(self):\n  ...         self.addCleanup(lambda:1/0)\n  ...         self.addCleanup(lambda:1/0)\n  >>> fixture = BrokenFixture()\n  >>> fixture.setUp()\n  >>> try:\n  ...    fixture.cleanUp()\n  ... except MultipleExceptions:\n  ...    exc_info = sys.exc_info()\n  >>> print (exc_info[1].args[0][0].__name__)\n  ZeroDivisionError\n\nFixtures often expose diagnostic details that can be useful for tracking down\nissues. The ``getDetails`` method will return a dict of all the attached\ndetails but can only be called before ``cleanUp`` is called. Each detail\nobject is an instance of ``testtools.content.Content``::\n\n  >>> with WithLog() as l:\n  ...     print(l.getDetails()['message'].as_text())\n  foo bar baz\n\nErrors in setUp\n+++++++++++++++\n\nThe examples above used ``_setUp`` rather than ``setUp`` because the base\nclass implementation of ``setUp`` acts to reduce the chance of leaking\nexternal resources if an error is raised from ``_setUp``. Specifically,\n``setUp`` contains a try/except block which catches all exceptions, captures\nany registered detail objects, and calls ``self.cleanUp`` before propagating\nthe error. As long as you take care to register any cleanups before calling\nthe code that may fail, this will cause them to be cleaned up. The captured\ndetail objects are provided to the args of the raised exception.\n\nIf the error that occurred was a subclass of ``Exception`` then ``setUp`` will\nraise ``MultipleExceptions`` with the last element being a ``SetupError`` that\ncontains the detail objects. Otherwise, to prevent causing normally\nuncatchable errors like ``KeyboardInterrupt`` being caught inappropriately in\nthe calling layer, the original exception will be raised as-is and no\ndiagnostic data other than that from the original exception will be available.\n\nShared Dependencies\n+++++++++++++++++++\n\nA common use case within complex environments is having some fixtures shared by\nother ones.\n\nConsider the case of testing using a ``TempDir`` with two fixtures built on top\nof it; say a small database and a web server. Writing either one is nearly\ntrivial. However handling ``reset()`` correctly is hard: both the database and\nweb server would reasonably expect to be able to discard operating system\nresources they may have open within the temporary directory before its removed.\nA recursive ``reset()`` implementation would work for one, but not both.\nCalling ``reset()`` on the ``TempDir`` instance between each test is probably\ndesirable but we don't want to have to do a complete ``cleanUp`` of the higher\nlayer fixtures (which would make the ``TempDir`` be unused and trivially\nresettable. We have a few options available to us.\n\nImagine that the webserver does not depend on the DB fixture in any way - we\njust want the webserver and DB fixture to coexist in the same tempdir.\n\nA simple option is to just provide an explicit dependency fixture for the\nhigher layer fixtures to use.  This pushes complexity out of the core and onto\nusers of fixtures::\n\n  >>> class WithDep(fixtures.Fixture):\n  ...     def __init__(self, tempdir, dependency_fixture):\n  ...         super(WithDep, self).__init__()\n  ...         self.tempdir = tempdir\n  ...         self.dependency_fixture = dependency_fixture\n  ...     def setUp(self):\n  ...         super(WithDep, self).setUp()\n  ...         self.addCleanup(self.dependency_fixture.cleanUp)\n  ...         self.dependency_fixture.setUp()\n  ...         # we assume that at this point self.tempdir is usable.\n  >>> DB = WithDep\n  >>> WebServer = WithDep\n  >>> tempdir = fixtures.TempDir()\n  >>> db = DB(tempdir, tempdir)\n  >>> server = WebServer(tempdir, db)\n  >>> server.setUp()\n  >>> server.cleanUp()\n\nAnother option is to write the fixtures to gracefully handle a dependency\nbeing reset underneath them. This is insufficient if the fixtures would\nblock the dependency resetting (for instance by holding file locks open\nin a tempdir - on Windows this will prevent the directory being deleted).\n\nAnother approach which ``fixtures`` neither helps nor hinders is to raise\na signal of some sort for each user of a fixture before it is reset. In the\nexample here, ``TempDir`` might offer a subscribers attribute that both the\nDB and web server would be registered in. Calling ``reset`` or ``cleanUp``\non the tempdir would trigger a callback to all the subscribers; the DB and\nweb server reset methods would look something like::\n\n  >>> def reset(self):\n  ...     if not self._cleaned:\n  ...         self._clean()\n\n(Their action on the callback from the tempdir would be to do whatever work\nwas needed and set ``self._cleaned``.) This approach has the (perhaps)\nsurprising effect that resetting the webserver may reset the DB - if the\nwebserver were to be depending on ``tempdir.reset`` as a way to reset the\nwebserver's state.\n\nAnother approach which is not currently implemented is to provide an object\ngraph of dependencies and a reset mechanism that can traverse that, along with\na separation between 'reset starting' and 'reset finishing' - the DB and\nwebserver would both have their ``reset_starting`` methods called, then the\ntempdir would be reset, and finally the DB and webserver would have\n``reset_finishing`` called.\n\nStock Fixtures\n==============\n\nIn addition to the ``Fixture``, ``FunctionFixture`` and ``MethodFixture``\nclasses, fixtures includes a number of pre-canned fixtures. The API docs for\nfixtures will list the complete set of these, should the docs be out of date or\nnot to hand. For the complete feature set of each fixture please see the API\ndocs.\n\n``ByteStream``\n++++++++++++++\n\nTrivial adapter to make a ``BytesIO`` (though it may in future auto-spill to\ndisk for large content) and expose that as a detail object, for automatic\ninclusion in test failure descriptions. Very useful in combination with\n``MonkeyPatch``::\n\n  >>> fixture = fixtures.StringStream('my-content')\n  >>> fixture.setUp()\n  >>> with fixtures.MonkeyPatch('sys.something', fixture.stream):\n  ...     pass\n  >>> fixture.cleanUp()\n\nThis requires the ``fixtures[streams]`` extra.\n\n``EnvironmentVariable``\n+++++++++++++++++++++++\n\nIsolate your code from environmental variables, delete them or set them to a\nnew value::\n\n  >>> fixture = fixtures.EnvironmentVariable('HOME')\n\n``FakeLogger``\n++++++++++++++\n\nIsolate your code from an external logging configuration - so that your test\ngets the output from logged messages, but they don't go to e.g. the console::\n\n  >>> fixture = fixtures.FakeLogger()\n\n``FakePopen``\n+++++++++++++\n\nPretend to run an external command rather than needing it to be present to run\ntests::\n\n  >>> from io import BytesIO\n  >>> fixture = fixtures.FakePopen(lambda _:{'stdout': BytesIO('foobar')})\n\n``LogHandler``\n++++++++++++++\n\nReplace or extend a logger's handlers. The behavior of this fixture depends on\nthe value of the ``nuke_handlers`` parameter: if ``true``, the logger's\nexisting handlers are removed and replaced by the provided handler, while if\n``false`` the logger's set of handlers is extended by the provided handler::\n\n  >>> from logging import StreamHandler\n  >>> fixture = fixtures.LogHandler(StreamHandler())\n\n``MockPatchObject``\n+++++++++++++++++++\n\nAdapts ``mock.patch.object`` to be used as a fixture::\n\n  >>> class Fred:\n  ...     value = 1\n  >>> fixture = fixtures.MockPatchObject(Fred, 'value', 2)\n  >>> with fixture:\n  ...     Fred().value\n  2\n  >>> Fred().value\n  1\n\n``MockPatch``\n+++++++++++++\n\nAdapts ``mock.patch`` to be used as a fixture::\n\n  >>> fixture = fixtures.MockPatch('subprocess.Popen.returncode', 3)\n\n``MockPatchMultiple``\n+++++++++++++++++++++\n\nAdapts ``mock.patch.multiple`` to be used as a ``fixture``::\n\n  >>> fixture = fixtures.MockPatchMultiple('subprocess.Popen', returncode=3)\n\n``MonkeyPatch``\n+++++++++++++++\n\nControl the value of a named Python attribute::\n\n  >>> def fake_open(path, mode):\n  ...     pass\n  >>> fixture = fixtures.MonkeyPatch('__builtin__.open', fake_open)\n\nNote that there are some complexities when patching methods - please see the\nAPI documentation for details.\n\n``NestedTempfile``\n++++++++++++++++++\n\nChange the default directory that the ``tempfile`` module places temporary\nfiles and directories in. This can be useful for containing the noise created\nby code which doesn't clean up its temporary files. This does not affect\ntemporary file creation where an explicit containing directory was provided::\n\n  >>> fixture = fixtures.NestedTempfile()\n\n``PackagePathEntry``\n++++++++++++++++++++\n\nAdds a single directory to the path for an existing Python package. This adds\nto the ``package.__path__`` list. If the directory is already in the path,\nnothing happens, if it isn't then it is added on ``setUp`` and removed on\n``cleanUp``::\n\n  >>> fixture = fixtures.PackagePathEntry('package/name', '/foo/bar')\n\n``PythonPackage``\n+++++++++++++++++\n\nCreates a python package directory. Particularly useful for testing code that\ndynamically loads packages/modules, or for mocking out the command line entry\npoints to Python programs::\n\n  >>> fixture = fixtures.PythonPackage('foo.bar', [('quux.py', '')])\n\n``PythonPathEntry``\n+++++++++++++++++++\n\nAdds a single directory to ``sys.path``. If the directory is already in the\npath, nothing happens, if it isn't then it is added on ``setUp`` and removed on\n``cleanUp``::\n\n  >>> fixture = fixtures.PythonPathEntry('/foo/bar')\n\n``Stream``\n++++++++++\n\nTrivial adapter to expose a file-like object as a detail object, for automatic\ninclusion in test failure descriptions. ``StringStream`` and ``BytesStream``\nprovided concrete users of this fixture.\n\nThis requires the ``fixtures[streams]`` extra.\n\n``StringStream``\n++++++++++++++++\n\nTrivial adapter to make a ``StringIO`` (though it may in future auto-spill to\ndisk for large content) and expose that as a detail object, for automatic\ninclusion in test failure descriptions. Very useful in combination with\n``MonkeyPatch``::\n\n  >>> fixture = fixtures.StringStream('stdout')\n  >>> fixture.setUp()\n  >>> with fixtures.MonkeyPatch('sys.stdout', fixture.stream):\n  ...     pass\n  >>> fixture.cleanUp()\n\nThis requires the ``fixtures[streams]`` extra.\n\n``TempDir``\n+++++++++++\n\nCreate a temporary directory and clean it up later::\n\n  >>> fixture = fixtures.TempDir()\n\nThe created directory is stored in the ``path`` attribute of the fixture after\n``setUp``.\n\n``TempHomeDir``\n+++++++++++++++\n\nCreate a temporary directory and set it as ``$HOME`` in the environment::\n\n  >>> fixture = fixtures.TempHomeDir()\n\nThe created directory is stored in the ``path`` attribute of the fixture after\n``setUp``.\n\nThe environment will now have ``$HOME`` set to the same path, and the value\nwill be returned to its previous value after ``tearDown``.\n\n``Timeout``\n+++++++++++\n\nAborts if the covered code takes more than a specified number of whole wall-clock\nseconds.\n\nThere are two possibilities, controlled by the ``gentle`` argument: when gentle,\nan exception will be raised and the test (or other covered code) will fail.\nWhen not gentle, the entire process will be terminated, which is less clean,\nbut more likely to break hangs where no Python code is running.\n\n.. caution::\n\n   Only one timeout can be active at any time across all threads in a single\n   process.  Using more than one has undefined results.  (This could be improved\n   by chaining alarms.)\n\n.. note::\n\n   Currently supported only on Unix because it relies on the ``alarm`` system\n   call.\n\n``WarningsCapture``\n+++++++++++++++++++\n\nCapture warnings for later analysis::\n\n  >>> fixture = fixtures.WarningsCapture()\n\nThe captured warnings are stored in the ``captures`` attribute of the fixture\nafter ``setUp``.\n\n``WarningsFilter``\n++++++++++++++++++\n\nConfigure warnings filters during test runs::\n\n  >>> fixture = fixtures.WarningsFilter(\n  ...     [\n  ...         {\n  ...             'action': 'ignore',\n  ...             'message': 'foo',\n  ...             'category': DeprecationWarning,\n  ...         },\n  ...     ]\n  ... )\n\nOrder is important: entries closer to the front of the list override entries\nlater in the list, if both match a particular warning.\n\nContributing\n============\n\nFixtures has its project homepage on GitHub\n<https://github.com/testing-cabal/fixtures>.\n\nLicense\n=======\n\n  Copyright (c) 2010, Robert Collins <robertc@robertcollins.net>\n\n  Licensed under either the Apache License, Version 2.0 or the BSD 3-clause\n  license at the users choice. A copy of both licenses are available in the\n  project source as Apache-2.0 and BSD. You may not use this file except in\n  compliance with one of these two licences.\n\n  Unless required by applicable law or agreed to in writing, software\n  distributed under these licenses is distributed on an \"AS IS\" BASIS, WITHOUT\n  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the\n  license you chose for the specific language governing permissions and\n  limitations under that license.\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Fixtures, reusable state for writing clean tests and more.",
    "version": "4.1.0",
    "project_urls": {
        "Homepage": "https://github.com/testing-cabal/fixtures"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbab3259874efafdbaa9d25dd8fa99c999621c6539eacd03c95b64a34bd5acd1",
                "md5": "0c772ae4fde7d56115478033e50d0ed5",
                "sha256": "a43a55da406c37651aa86dd1ba6c3983a09d36d60fe5f72242872c8a4eeeb710"
            },
            "downloads": -1,
            "filename": "fixtures-4.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0c772ae4fde7d56115478033e50d0ed5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 64532,
            "upload_time": "2023-05-26T13:28:36",
            "upload_time_iso_8601": "2023-05-26T13:28:36.161954Z",
            "url": "https://files.pythonhosted.org/packages/db/ab/3259874efafdbaa9d25dd8fa99c999621c6539eacd03c95b64a34bd5acd1/fixtures-4.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e4c3c3faee9f554d753ee428bef3a5e8176995cffbf0b5ad3f1d6c272ab2148",
                "md5": "de0efb51ea247297002c8c7687b187c3",
                "sha256": "82b1c5e69f615526ef6c067188a1e6c6067df7f88332509c99f8b8fdbb9776f3"
            },
            "downloads": -1,
            "filename": "fixtures-4.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "de0efb51ea247297002c8c7687b187c3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 58561,
            "upload_time": "2023-05-26T13:28:38",
            "upload_time_iso_8601": "2023-05-26T13:28:38.178285Z",
            "url": "https://files.pythonhosted.org/packages/5e/4c/3c3faee9f554d753ee428bef3a5e8176995cffbf0b5ad3f1d6c272ab2148/fixtures-4.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-26 13:28:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "testing-cabal",
    "github_project": "fixtures",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "pbr",
            "specs": [
                [
                    ">=",
                    "5.7.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "fixtures"
}
        
Elapsed time: 0.06898s