==================
zope.app.testing
==================
.. image:: https://img.shields.io/pypi/v/zope.app.testing.svg
:target: https://pypi.org/project/zope.app.testing/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/zope.app.testing.svg
:target: https://pypi.org/project/zope.app.testing/
:alt: Supported Python versions
.. image:: https://github.com/zopefoundation/zope.app.testing/actions/workflows/tests.yml/badge.svg
:target: https://github.com/zopefoundation/zope.app.testing/actions/workflows/tests.yml
:alt: Build Status
.. image:: https://coveralls.io/repos/github/zopefoundation/zope.app.testing/badge.svg
:target: https://coveralls.io/github/zopefoundation/zope.app.testing
:alt: Code Coverage
This package provides testing support for Zope 3 applications. Besides
providing numerous setup convenience functions, it implements a testing setup
that allows the user to make calls to the publisher allowing to write
functional tests.
.. contents::
===================
FDocTest (How-To)
===================
Steps to get started:
1. Use a clean/missing Data.fs
2. Create a manager with the name "mgr", password "mgrpw", and grant
the zope.Manager role.
3. Install tcpwatch.
4. Create a temporary directory to record tcpwatch output.
5. Run tcpwatch using:
tcpwatch.py -L 8081:8080 -s -r tmpdir
(the ports are the listening port and forwarded-to port; the
second need to match the Zope configuration)
6. In a browser, connect to the listening port and do whatever needs
to be recorded.
7. Shut down tcpwatch.
8. Run the script src/zope/app/testing/dochttp.py:
python2.4 src/zope/app/testing/dochttp.py tmpdir > somefile.txt
9. Edit the generated text file to add explanations and elide
uninteresting portions of the output.
10. In a functional test module (usually ftests.py), import
FunctionalDocFileSuite from zope.app.testing.functional and
instantiate it, passing the name of the text file containing
the test.
==========================
DocTest Functional Tests
==========================
This file documents and tests doctest-based functional tests and basic
Zope web-application functionality.
Request/Response Functional Tests
=================================
You can create Functional tests as doctests. Typically, this is done
by using a script such as src/zope/app/testing/dochttp.py to convert
tcpwatch recorded output to a doctest, which is then edited to provide
explanation and to remove uninteresting details. That is how this
file was created.
Here we'll test some of the most basic types of access.
First, we'll test accessing a protected page without credentials:
>>> print(http(r"""
... GET /@@contents.html HTTP/1.1
... """))
HTTP/1.1 401 Unauthorized
Cache-Control: no-store, no-cache, must-revalidate
Content-Length: ...
Content-Type: text/html;charset=utf-8
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
WWW-Authenticate: basic realm="Zope"
<BLANKLINE>
<!DOCTYPE html PUBLIC ...
Here we see that we got:
- A 401 response,
- A WWW-Authenticate header, and
- An html body with an error message
- Some technical headers to keep squid happy
Note that we used ellipsis to indicate ininteresting details.
Next, we'll access the same page with credentials:
>>> print(http(r"""
... GET /@@contents.html HTTP/1.1
... Authorization: Basic mgr:mgrpw
... """))
HTTP/1.1 200 OK
Content-Length: ...
Content-Type: text/html;charset=utf-8
<BLANKLINE>
<!DOCTYPE html PUBLIC ...
Important note: you must use the user named "mgr" with a password
"mgrpw".
And we get a normal output.
Next we'll try accessing site management. Since we used "/manage",
we got redirected:
>>> print(http(r"""
... GET /++etc++site/@@manage HTTP/1.1
... Authorization: Basic mgr:mgrpw
... Referer: http://localhost:8081/
... """))
HTTP/1.1 303 See Other
Content-Length: 0
Content-Type: text/plain;charset=utf-8
Location: @@contents.html
<BLANKLINE>
Note that, in this case, we got a 303 response. A 303 response is the
prefered response for this sort of redirect with HTTP 1.1. If we used
HTTP 1.0, we'd get a 302 response:
>>> print(http(r"""
... GET /++etc++site/@@manage HTTP/1.0
... Authorization: Basic mgr:mgrpw
... Referer: http://localhost:8081/
... """))
HTTP/1.0 302 Moved Temporarily
Content-Length: 0
Content-Type: text/plain;charset=utf-8
Location: @@contents.html
<BLANKLINE>
Lets visit the page we were redirected to:
>>> print(http(r"""
... GET /++etc++site/@@contents.html HTTP/1.1
... Authorization: Basic mgr:mgrpw
... Referer: http://localhost:8081/
... """))
HTTP/1.1 200 OK
Content-Length: ...
Content-Type: text/html;charset=utf-8
<BLANKLINE>
<!DOCTYPE html PUBLIC ...
Finally, lets access the default page for the site:
>>> print(http(r"""
... GET / HTTP/1.1
... Authorization: Basic mgr:mgrpw
... """))
HTTP/1.1 200 OK
Content-Length: ...
Content-Type: text/html;charset=utf-8
<BLANKLINE>
<!DOCTYPE html PUBLIC ...
Access to the object system
===========================
You can use the `getRootFolder()` function:
>>> root = getRootFolder()
>>> root
<zope.site.folder.Folder object at ...>
You can intermix HTTP requests with regular Python calls. Note,
however, that making an `http()` call implied a transaction commit.
If you want to throw away changes made in Python code, abort the
transaction before the HTTP request.
>>> print(http(r"""
... POST /@@contents.html HTTP/1.1
... Authorization: Basic mgr:mgrpw
... Content-Length: 58
... Content-Type: application/x-www-form-urlencoded
...
... type_name=BrowserAdd__zope.site.folder.Folder&new_value=f1""",
... handle_errors=False))
HTTP/1.1 303 See Other
Content-Length: ...
Content-Type: text/html;charset=utf-8
Location: http://localhost/@@contents.html
<BLANKLINE>
<!DOCTYPE html ...
Now we can see that the new folder was added:
>>> [str(x) for x in root.keys()]
['f1']
=========
CHANGES
=========
5.1 (2024-12-02)
================
- Add support for Python 3.12, 3.13.
- Drop support for Python 3.7.
- Fix tests for ``multipart 1.x``
(`#14 <https://github.com/zopefoundation/zope.app.testing/issues/14>`_).
5.0 (2023-02-10)
================
- Add support for Python 3.8, 3.9, 3.10, 3.11.
- Drop support for Python 2.7, 3.5, 3.6.
4.0.0 (2018-10-24)
==================
- Remove ``zope.app.testing.testbrowser``. It was not compatible with
zope.testbrowser version 5.
- Add basic support for Python 3.5, 3.6 and 3.7.
3.10.0 (2012-01-13)
===================
- Removed test dependency on ``zope.app.authentication``.
zope.testbrowser 4 depends on this change (seriously) if it find
zope.app.testing.
3.9.0 (2011-03-14)
==================
- Move zope.app.testing testbrowser functionality into zope.app.testing. This
requires zope.testbrowser version 4.0.0 or above.
3.8.1 (2011-01-07)
==================
- Include REMOTE_ADDR ('127.0.0.1') in the request environment.
3.8.0 (2010-09-14)
==================
- Remove invalid HTTP_REFERER default. (We both don't want a default to allow
others testing without a referer and 'localhost' is not a reasonable
default anyway.) This improves the situation for #98437
- Made the xmlrpc code compatible with Python 2.7.
- Removed test dependency on ``zope.app.zptpage``.
- Switched test dependency from ``zope.app.securitypolicy`` to
``zope.securitypolicy``.
3.7.7 (2010-09-14)
==================
- Rereleasing 3.7.5 as 3.7.7 to fix brown bag release.
3.7.6 (2010-09-14)
==================
- Brown bag release: It broke the tests of ``zope.testbrowser``.
3.7.5 (2010-04-10)
==================
- Switch doctests to use the stdlib ``doctest`` module, rather than the
deprecated ``zope.testing.doctest`` variant.
3.7.4 (2010-01-08)
==================
- Import hooks functionality from zope.component after it was moved there from
zope.site.
- Import ISite from zope.component after it was moved there from
zope.location. This lifts the dependency on zope.location.
- Fix tests using a newer zope.publisher that requires zope.login.
3.7.3 (2009-08-20)
==================
- Fixed tests for python 2.4 as well as python 2.5 and 2.6; the change in
version 3.7.1 introduced test regressions in python 2.4.
3.7.2 (2009-07-24)
==================
- Adjusted tests after the referenced memory leak problem has been fixed in
``zope.component``.
3.7.1 (2009-07-21)
==================
- Fixed failing tests. The code revealed that the tests expected the wrong
value.
3.7.0 (2009-06-19)
==================
- Depend on new ``zope.processlifetime`` interfaces instead of using
BBB imports from ``zope.app.appsetup``.
- Removed unused dependency on ``zope.app.component``.
3.6.2 (2009-04-26)
==================
- Removed deprecated back35 module and loose the dependency on
``zope.deferredimport``.
- Adapt to ``zope.app.authentication`` refactoring. We depend on
``zope.password`` now instead.
- Adapt to latest ``zope.app.security`` refactoring. We don't need this
package anymore.
3.6.1 (2009-03-12)
==================
- Use ISkinnable.providedBy(request) instead of IBrowserRequest as condition
for calling setDefaultSkin in HTTPCaller. This at the same time removes
dependency to the browser part of zope.publisher.
- Adapt to the move of IDefaultViewName from zope.component.interfaces
to zope.publisher.interfaces.
- Remove the DEPENDENCIES.cfg file for zpkg.
3.6.0 (2009-02-01)
==================
- Fix AttributeError in ``zope.app.testing.setup.setUpTestAsModule``
(when called without name argument).
- Use ``zope.container`` instead of ``zope.app.container``.
- Use ``zope.site`` instead of ``zope.app.folder`` and
``zope.app.component`` for some parts.
3.5.6 (2008-10-13)
==================
- Change argument variable name in provideAdapter to not conflict with
buitin keyword in Python 2.6.
3.5.5 (2008-10-10)
==================
- Re-configured functional test setup to create test-specific instances
of HTTPCaller to ensure that cookies are not shared by doctests
in a test suite.
3.5.4 (2008-08-25)
==================
- Clean up some transaction management in the functional test setup.
3.5.3 (2008-08-22)
==================
- Fix isolation enforcement for product configuration around individual tests.
3.5.2 (2008-08-21)
==================
- Added missing dependency information in setup.py.
- Added missing import.
- Repair memory leak fix released in 3.4.3 to be more sane in the presence of
generations.
3.5.1 (2008-08-20)
==================
- Correct Fred's "I'm a doofus" release.
3.5.0 (2008-08-20)
==================
- Add support for product-configuration as part of functional layers; this
more closely mirrors the configuration order for normal operation.
3.4.3 (2008-07-25)
==================
- Fix memory leak in all functional tests.
see: https://bugs.launchpad.net/zope3/+bug/251273
3.4.2 (2008-02-02)
==================
- Fix of 599 error on conflict error in request
see: http://mail.zope.org/pipermail/zope-dev/2008-January/030844.html
3.4.1 (2007-10-31)
==================
- Fixed deprecation warning for ``ZopeSecurityPolicy``.
3.4.0 (2007-10-27)
==================
- Initial release independent of the main Zope tree.
Raw data
{
"_id": null,
"home_page": "https://github.com/zopefoundation/zope.app.testing",
"name": "zope.app.testing",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "zope3 test testing setup functional",
"author": "Zope Foundation and Contributors",
"author_email": "zope-dev@zope.dev",
"download_url": "https://files.pythonhosted.org/packages/5d/20/22343eb99558019eeee07bd574c44f4b00490c5a4ba971f40e05b868c58f/zope_app_testing-5.1.tar.gz",
"platform": null,
"description": "==================\n zope.app.testing\n==================\n\n.. image:: https://img.shields.io/pypi/v/zope.app.testing.svg\n :target: https://pypi.org/project/zope.app.testing/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.app.testing.svg\n :target: https://pypi.org/project/zope.app.testing/\n :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.app.testing/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/zopefoundation/zope.app.testing/actions/workflows/tests.yml\n :alt: Build Status\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.app.testing/badge.svg\n :target: https://coveralls.io/github/zopefoundation/zope.app.testing\n :alt: Code Coverage\n\nThis package provides testing support for Zope 3 applications. Besides\nproviding numerous setup convenience functions, it implements a testing setup\nthat allows the user to make calls to the publisher allowing to write\nfunctional tests.\n\n\n.. contents::\n\n===================\n FDocTest (How-To)\n===================\n\nSteps to get started:\n\n1. Use a clean/missing Data.fs\n\n2. Create a manager with the name \"mgr\", password \"mgrpw\", and grant\n the zope.Manager role.\n\n3. Install tcpwatch.\n\n4. Create a temporary directory to record tcpwatch output.\n\n5. Run tcpwatch using:\n tcpwatch.py -L 8081:8080 -s -r tmpdir\n (the ports are the listening port and forwarded-to port; the\n second need to match the Zope configuration)\n\n6. In a browser, connect to the listening port and do whatever needs\n to be recorded.\n\n7. Shut down tcpwatch.\n\n8. Run the script src/zope/app/testing/dochttp.py:\n python2.4 src/zope/app/testing/dochttp.py tmpdir > somefile.txt\n\n9. Edit the generated text file to add explanations and elide\n uninteresting portions of the output.\n\n10. In a functional test module (usually ftests.py), import\n FunctionalDocFileSuite from zope.app.testing.functional and\n instantiate it, passing the name of the text file containing\n the test.\n\n\n==========================\n DocTest Functional Tests\n==========================\n\nThis file documents and tests doctest-based functional tests and basic\nZope web-application functionality.\n\nRequest/Response Functional Tests\n=================================\n\nYou can create Functional tests as doctests. Typically, this is done\nby using a script such as src/zope/app/testing/dochttp.py to convert\ntcpwatch recorded output to a doctest, which is then edited to provide\nexplanation and to remove uninteresting details. That is how this\nfile was created.\n\nHere we'll test some of the most basic types of access.\n\nFirst, we'll test accessing a protected page without credentials:\n\n >>> print(http(r\"\"\"\n ... GET /@@contents.html HTTP/1.1\n ... \"\"\"))\n HTTP/1.1 401 Unauthorized\n Cache-Control: no-store, no-cache, must-revalidate\n Content-Length: ...\n Content-Type: text/html;charset=utf-8\n Expires: Mon, 26 Jul 1997 05:00:00 GMT\n Pragma: no-cache\n WWW-Authenticate: basic realm=\"Zope\"\n <BLANKLINE>\n <!DOCTYPE html PUBLIC ...\n\nHere we see that we got:\n\n - A 401 response,\n - A WWW-Authenticate header, and\n - An html body with an error message\n - Some technical headers to keep squid happy\n\nNote that we used ellipsis to indicate ininteresting details.\n\nNext, we'll access the same page with credentials:\n\n >>> print(http(r\"\"\"\n ... GET /@@contents.html HTTP/1.1\n ... Authorization: Basic mgr:mgrpw\n ... \"\"\"))\n HTTP/1.1 200 OK\n Content-Length: ...\n Content-Type: text/html;charset=utf-8\n <BLANKLINE>\n <!DOCTYPE html PUBLIC ...\n\nImportant note: you must use the user named \"mgr\" with a password\n\"mgrpw\".\n\nAnd we get a normal output.\n\nNext we'll try accessing site management. Since we used \"/manage\",\nwe got redirected:\n\n >>> print(http(r\"\"\"\n ... GET /++etc++site/@@manage HTTP/1.1\n ... Authorization: Basic mgr:mgrpw\n ... Referer: http://localhost:8081/\n ... \"\"\"))\n HTTP/1.1 303 See Other\n Content-Length: 0\n Content-Type: text/plain;charset=utf-8\n Location: @@contents.html\n <BLANKLINE>\n\nNote that, in this case, we got a 303 response. A 303 response is the\nprefered response for this sort of redirect with HTTP 1.1. If we used\nHTTP 1.0, we'd get a 302 response:\n\n >>> print(http(r\"\"\"\n ... GET /++etc++site/@@manage HTTP/1.0\n ... Authorization: Basic mgr:mgrpw\n ... Referer: http://localhost:8081/\n ... \"\"\"))\n HTTP/1.0 302 Moved Temporarily\n Content-Length: 0\n Content-Type: text/plain;charset=utf-8\n Location: @@contents.html\n <BLANKLINE>\n\nLets visit the page we were redirected to:\n\n >>> print(http(r\"\"\"\n ... GET /++etc++site/@@contents.html HTTP/1.1\n ... Authorization: Basic mgr:mgrpw\n ... Referer: http://localhost:8081/\n ... \"\"\"))\n HTTP/1.1 200 OK\n Content-Length: ...\n Content-Type: text/html;charset=utf-8\n <BLANKLINE>\n <!DOCTYPE html PUBLIC ...\n\nFinally, lets access the default page for the site:\n\n >>> print(http(r\"\"\"\n ... GET / HTTP/1.1\n ... Authorization: Basic mgr:mgrpw\n ... \"\"\"))\n HTTP/1.1 200 OK\n Content-Length: ...\n Content-Type: text/html;charset=utf-8\n <BLANKLINE>\n <!DOCTYPE html PUBLIC ...\n\nAccess to the object system\n===========================\n\nYou can use the `getRootFolder()` function:\n\n >>> root = getRootFolder()\n >>> root\n <zope.site.folder.Folder object at ...>\n\nYou can intermix HTTP requests with regular Python calls. Note,\nhowever, that making an `http()` call implied a transaction commit.\nIf you want to throw away changes made in Python code, abort the\ntransaction before the HTTP request.\n\n >>> print(http(r\"\"\"\n ... POST /@@contents.html HTTP/1.1\n ... Authorization: Basic mgr:mgrpw\n ... Content-Length: 58\n ... Content-Type: application/x-www-form-urlencoded\n ...\n ... type_name=BrowserAdd__zope.site.folder.Folder&new_value=f1\"\"\",\n ... handle_errors=False))\n HTTP/1.1 303 See Other\n Content-Length: ...\n Content-Type: text/html;charset=utf-8\n Location: http://localhost/@@contents.html\n <BLANKLINE>\n <!DOCTYPE html ...\n\nNow we can see that the new folder was added:\n\n >>> [str(x) for x in root.keys()]\n ['f1']\n\n\n=========\n CHANGES\n=========\n\n5.1 (2024-12-02)\n================\n\n- Add support for Python 3.12, 3.13.\n\n- Drop support for Python 3.7.\n\n- Fix tests for ``multipart 1.x``\n (`#14 <https://github.com/zopefoundation/zope.app.testing/issues/14>`_).\n\n\n5.0 (2023-02-10)\n================\n\n- Add support for Python 3.8, 3.9, 3.10, 3.11.\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n4.0.0 (2018-10-24)\n==================\n\n- Remove ``zope.app.testing.testbrowser``. It was not compatible with\n zope.testbrowser version 5.\n\n- Add basic support for Python 3.5, 3.6 and 3.7.\n\n3.10.0 (2012-01-13)\n===================\n\n- Removed test dependency on ``zope.app.authentication``.\n\n zope.testbrowser 4 depends on this change (seriously) if it find\n zope.app.testing.\n\n3.9.0 (2011-03-14)\n==================\n\n- Move zope.app.testing testbrowser functionality into zope.app.testing. This\n requires zope.testbrowser version 4.0.0 or above.\n\n3.8.1 (2011-01-07)\n==================\n\n- Include REMOTE_ADDR ('127.0.0.1') in the request environment.\n\n\n3.8.0 (2010-09-14)\n==================\n\n- Remove invalid HTTP_REFERER default. (We both don't want a default to allow\n others testing without a referer and 'localhost' is not a reasonable\n default anyway.) This improves the situation for #98437\n\n- Made the xmlrpc code compatible with Python 2.7.\n\n- Removed test dependency on ``zope.app.zptpage``.\n\n- Switched test dependency from ``zope.app.securitypolicy`` to\n ``zope.securitypolicy``.\n\n\n3.7.7 (2010-09-14)\n==================\n\n- Rereleasing 3.7.5 as 3.7.7 to fix brown bag release.\n\n\n3.7.6 (2010-09-14)\n==================\n\n- Brown bag release: It broke the tests of ``zope.testbrowser``.\n\n\n3.7.5 (2010-04-10)\n==================\n\n- Switch doctests to use the stdlib ``doctest`` module, rather than the\n deprecated ``zope.testing.doctest`` variant.\n\n\n3.7.4 (2010-01-08)\n==================\n\n- Import hooks functionality from zope.component after it was moved there from\n zope.site.\n\n- Import ISite from zope.component after it was moved there from\n zope.location. This lifts the dependency on zope.location.\n\n- Fix tests using a newer zope.publisher that requires zope.login.\n\n3.7.3 (2009-08-20)\n==================\n\n- Fixed tests for python 2.4 as well as python 2.5 and 2.6; the change in\n version 3.7.1 introduced test regressions in python 2.4.\n\n3.7.2 (2009-07-24)\n==================\n\n- Adjusted tests after the referenced memory leak problem has been fixed in\n ``zope.component``.\n\n\n3.7.1 (2009-07-21)\n==================\n\n- Fixed failing tests. The code revealed that the tests expected the wrong\n value.\n\n\n3.7.0 (2009-06-19)\n==================\n\n- Depend on new ``zope.processlifetime`` interfaces instead of using\n BBB imports from ``zope.app.appsetup``.\n\n- Removed unused dependency on ``zope.app.component``.\n\n\n3.6.2 (2009-04-26)\n==================\n\n- Removed deprecated back35 module and loose the dependency on\n ``zope.deferredimport``.\n\n- Adapt to ``zope.app.authentication`` refactoring. We depend on\n ``zope.password`` now instead.\n\n- Adapt to latest ``zope.app.security`` refactoring. We don't need this\n package anymore.\n\n3.6.1 (2009-03-12)\n==================\n\n- Use ISkinnable.providedBy(request) instead of IBrowserRequest as condition\n for calling setDefaultSkin in HTTPCaller. This at the same time removes\n dependency to the browser part of zope.publisher.\n\n- Adapt to the move of IDefaultViewName from zope.component.interfaces\n to zope.publisher.interfaces.\n\n- Remove the DEPENDENCIES.cfg file for zpkg.\n\n3.6.0 (2009-02-01)\n==================\n\n- Fix AttributeError in ``zope.app.testing.setup.setUpTestAsModule``\n (when called without name argument).\n\n- Use ``zope.container`` instead of ``zope.app.container``.\n\n- Use ``zope.site`` instead of ``zope.app.folder`` and\n ``zope.app.component`` for some parts.\n\n3.5.6 (2008-10-13)\n==================\n\n- Change argument variable name in provideAdapter to not conflict with\n buitin keyword in Python 2.6.\n\n3.5.5 (2008-10-10)\n==================\n\n- Re-configured functional test setup to create test-specific instances\n of HTTPCaller to ensure that cookies are not shared by doctests\n in a test suite.\n\n3.5.4 (2008-08-25)\n==================\n\n- Clean up some transaction management in the functional test setup.\n\n3.5.3 (2008-08-22)\n==================\n\n- Fix isolation enforcement for product configuration around individual tests.\n\n3.5.2 (2008-08-21)\n==================\n\n- Added missing dependency information in setup.py.\n\n- Added missing import.\n\n- Repair memory leak fix released in 3.4.3 to be more sane in the presence of\n generations.\n\n3.5.1 (2008-08-20)\n==================\n\n- Correct Fred's \"I'm a doofus\" release.\n\n3.5.0 (2008-08-20)\n==================\n\n- Add support for product-configuration as part of functional layers; this\n more closely mirrors the configuration order for normal operation.\n\n3.4.3 (2008-07-25)\n==================\n\n- Fix memory leak in all functional tests.\n see: https://bugs.launchpad.net/zope3/+bug/251273\n\n3.4.2 (2008-02-02)\n==================\n\n- Fix of 599 error on conflict error in request\n see: http://mail.zope.org/pipermail/zope-dev/2008-January/030844.html\n\n3.4.1 (2007-10-31)\n==================\n\n- Fixed deprecation warning for ``ZopeSecurityPolicy``.\n\n3.4.0 (2007-10-27)\n==================\n\n- Initial release independent of the main Zope tree.\n",
"bugtrack_url": null,
"license": "ZPL 2.1",
"summary": "Zope Application Testing Support",
"version": "5.1",
"project_urls": {
"Homepage": "https://github.com/zopefoundation/zope.app.testing",
"Issue Tracker": "https://github.com/zopefoundation/zope.app.testing/issues",
"Sources": "https://github.com/zopefoundation/zope.app.testing"
},
"split_keywords": [
"zope3",
"test",
"testing",
"setup",
"functional"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f03cc7441baaa4c24f07c797bb4028383e2f03fd55f0fc2f91d1778ffe1bb461",
"md5": "ab973f38c9d4f39d909b5c2136bb6989",
"sha256": "25ece2172760932b743899381b678bc8f9e835e011140dfa425fd4acd78b408a"
},
"downloads": -1,
"filename": "zope.app.testing-5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ab973f38c9d4f39d909b5c2136bb6989",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 45075,
"upload_time": "2024-12-02T08:16:12",
"upload_time_iso_8601": "2024-12-02T08:16:12.529069Z",
"url": "https://files.pythonhosted.org/packages/f0/3c/c7441baaa4c24f07c797bb4028383e2f03fd55f0fc2f91d1778ffe1bb461/zope.app.testing-5.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d2022343eb99558019eeee07bd574c44f4b00490c5a4ba971f40e05b868c58f",
"md5": "169d90afccc9951e3f7fe4f118755557",
"sha256": "5df2f31dd1994461b71a2159a464566f6dcaa8301975c74c16413304c6e02cbd"
},
"downloads": -1,
"filename": "zope_app_testing-5.1.tar.gz",
"has_sig": false,
"md5_digest": "169d90afccc9951e3f7fe4f118755557",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 42122,
"upload_time": "2024-12-02T08:16:14",
"upload_time_iso_8601": "2024-12-02T08:16:14.824331Z",
"url": "https://files.pythonhosted.org/packages/5d/20/22343eb99558019eeee07bd574c44f4b00490c5a4ba971f40e05b868c58f/zope_app_testing-5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-02 08:16:14",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "zopefoundation",
"github_project": "zope.app.testing",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "zope.app.testing"
}