Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-zope.testbrowser-6.0-1.8 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python311-zope.testbrowser Distribution: openSUSE Tumbleweed
Version: 6.0 Vendor: openSUSE
Release: 1.8 Build date: Mon Apr 3 11:34:27 2023
Group: Unspecified Build host: reproducible
Size: 577475 Source RPM: python-zope.testbrowser-6.0-1.8.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/zopefoundation/zope.testbrowser
Summary: Programmable browser for functional black-box tests
The zope.testbrowser package provides an programmable web browser
with special focus on testing.  It is used in Zope, but it's not Zope
specific.  It can be used to test or otherwise interact with any web
site.

Provides

Requires

License

ZPL-2.1

Changelog

* Mon Apr 03 2023 pgajdos@suse.com
  - version update to 6.0
    - Drop support for Python 2.7, 3.5, 3.6.
    - Drop support for deprecated ``python setup.py test``.
    - Add support for Python 3.11.
    - Do not break in ``mechRepr`` when using ``<input type="date">``.
  - deleted patches
    - zope.testbrowser-remove-bad-test.patch (upstreamed)
* Fri Sep 16 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - update to 5.6.1
    * Ensure all objects have consistent resolution orders.
  - update to 5.6.0
    * Add support for Python 3.9 and 3.10.
* Wed Oct 13 2021 Matej Cepl <mcepl@suse.com>
  - Make tests verbose
* Tue Oct 05 2021 pgajdos@suse.com
  - %check: use %pyunittest rpm macro
* Tue Jan 21 2020 Marketa Calabkova <mcalabkova@suse.com>
  - update to 5.5.1
    * Stop sending a Referer header when browser.open or browser.post is called directly.
    * Add error checking to the setters for ListControl.displayValue and CheckboxListControl.displayValue:
      in line with the old mechanize-based implementation, these will now raise ItemNotFoundError
      if any of the given values are not found, or ItemCountError on trying to set more than one value
      on a single-valued control.
    * Fix AttributeError in add_file when trying to add to a control which is not a file upload.
    * Fix a bug where browser.goBack() did not invalidate caches, so subsequent queries could use data
      from the wrong response.
    * Support telling the browser not to follow redirects by setting Browser.follow_redirects to False.
* Wed Nov 06 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 5.4.0:
    * Fix a bug where browser.reload() would not follow redirects or raise exceptions for bad HTTP statuses. See issue 75.
    * Add Python 3.8 support. See issue 80.
* Mon Jul 22 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 5.3.3:
    * Fix a bug where clicking the selected radio button would unselect it. See issue 68.
    * Fix another incompatibility with BeautifulSoup4 >= 4.7 that could result in a SyntaxError from browser.getLink(). See issue 61.
* Mon Apr 08 2019 Marketa Calabkova <mcalabkova@suse.com>
  - update to version 5.3.2
    * Fix a bug where you couldn’t set a cookie expiration date when
      your locale was not English.
    * Fix an incompatibility with BeautifulSoup4 >= 4.7 that could
      result in a SyntaxError from browser.getControl().
    * note: BeautifulSoup is not in requirements in setup.py and
      we are successfully building the package without it
    * Fix narrative doctests that started failing on January 1st,
      2019 due to a hardcoded “future” date.
    5.3.1
    * Fix a DeprecationWarning on Python 3.
    5.3.0
    * Add support for Python 3.7.
    * Drop support for Python 3.3 and 3.4.
    * Drop support for pystone as Python 3.7 dropped pystone.
    * Fix mechRepr of CheckboxListControl to always return a
      native str.
    * Add mechRepr to input fields having the type email.
  - Added patch zope.testbrowser-remove-bad-test.patch to disable
    failing test.
    * It seems to me that Google has changed the robot policy again
      and therefore it is not a bug in the software itself (similar
      to upstream issue #12).
* Tue Dec 04 2018 Matej Cepl <mcepl@suse.com>
  - Remove superfluous devel dependency for noarch package
* Mon Aug 06 2018 toddrme2178@gmail.com
  - Update to 5.2.4
    * Fix form submit with GET method if the form action contains a query string
      (https://github.com/zopefoundation/zope.testbrowser/pull/42).
    * Restore ignoring hidden elements when searching by label
      (https://github.com/zopefoundation/zope.testbrowser/pull/41).
  - Update to 5.2.3
    * Fix ``mechRepr`` on controls to always return a native str
      (https://github.com/zopefoundation/zope.testbrowser/issues/38).
  - Update to 5.2.2
    * Restore raising of AttributeError when trying to set value of a
      read only control.
    * Fix selecting radio and select control options by index
      (https://github.com/zopefoundation/zope.testbrowser/issues/31).
  - Update to 5.2.1
    * Exclude version 2.0.27 of `WebTest` from allowed versions as it breaks some
      tests.
    * Adapt tests to version 2.0.28 of `WebTest` but keeping compatibility to older
      versions.
  - Update to 5.2
    * Fixed ``toStr`` to handle lists, for example a list of class names.
      [maurits]
    * Fixed browser to only follow redirects for HTTP statuses
      301, 302, 303, and 307; not other 30x statuses such as 304.
    * Fix passing a real file to ``add_file``.
    * Add ``controls`` property to Form class to list all form controls.
    * Restore the ability to use parts of the actually displayed select box titles.
    * Allow to set a string value instead of a list on ``Browser.displayValue``.
    * Fix setting empty values on a select control.
    * Support Python 3.6, PyPy2.7 an PyPy3.3.
  - Update to 5.1
    * Alias ``.browser.urllib_request.HTTPError`` to ``.browser.HTTPError`` to have
      a better API.
  - Update to 5.0.0
    * Converted most doctests to Sphinx documentation, and published to
      https://zopetestbrowser.readthedocs.io/ .
    * Internal implementation now uses WebTest instead of ``mechanize``.
      The ``mechanize`` dependency is completely dropped.
    * *This is a backwards-incompatible change.**
    * Remove APIs:
      > ``zope.testbrowser.testing.Browser`` (this is a big one).
    * Remove modules:
      > ``zope.testbrowser.connection``
    * Remove internal classes you were not supposed to use anyway:
      > ``zope.testbrowser.testing.PublisherResponse``
      > ``zope.testbrowser.testing.PublisherConnection``
      > ``zope.testbrowser.testing.PublisherHTTPHandler``
      > ``zope.testbrowser.testing.PublisherMechanizeBrowser``
      > ``zope.testbrowser.wsgi.WSGIConnection``
      > ``zope.testbrowser.wsgi.WSGIHTTPHandler``
      > ``zope.testbrowser.wsgi.WSGIMechanizeBrowser``
    * Remove internal attributes you were not supposed to use anyway (this
      list is not necessarily complete):
      > ``Browser._mech_browser``
    * Remove setuptools extras:
      > ``zope.testbrowser[zope-functional-testing]``
    * Changed behavior:
      > The testbrowser no longer follows HTML redirects aka
      ``<meta http-equiv="refresh" ... />``. This was a `mechanize` feature which
      does not seem to be provided by `WebTest`.
    * Add support for Python 3.3, 3.4 and 3.5.
    * Drop support for Python 2.5 and 2.6.
    * Drop the ``WebTest <= 1.3.4`` pin.  We require ``WebTest >= 2.0.8`` now.
    * Remove dependency on deprecated ``zope.app.testing``.
    * Bugfix: ``browser.getLink()`` could fail if your HTML contained ``<a>``
      elements with no href attribute
    (https://github.com/zopefoundation/zope.testbrowser/pull/3).
  - Implement single-spec version

Files

/usr/lib/python3.11/site-packages/zope
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11-nspkg.pth
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/PKG-INFO
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/SOURCES.txt
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/dependency_links.txt
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/namespace_packages.txt
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/not-zip-safe
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/requires.txt
/usr/lib/python3.11/site-packages/zope.testbrowser-6.0-py3.11.egg-info/top_level.txt
/usr/lib/python3.11/site-packages/zope/testbrowser
/usr/lib/python3.11/site-packages/zope/testbrowser/__init__.py
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/browser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/browser.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/cookies.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/cookies.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/interfaces.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/interfaces.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/testing.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/testing.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/wsgi.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/__pycache__/wsgi.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/browser.py
/usr/lib/python3.11/site-packages/zope/testbrowser/cookies.py
/usr/lib/python3.11/site-packages/zope/testbrowser/fixed-bugs.txt
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/__init__.py
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/__pycache__
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/__pycache__/wsgitestapp.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/__pycache__/wsgitestapp.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/controls.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/cookies.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/forms.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/fragment.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/navigate.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/notitle.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/oneform.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/radio.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/simple.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/status_lead.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/textarea.html
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/wsgitestapp.py
/usr/lib/python3.11/site-packages/zope/testbrowser/ftests/zope3logo.gif
/usr/lib/python3.11/site-packages/zope/testbrowser/interfaces.py
/usr/lib/python3.11/site-packages/zope/testbrowser/over_the_wire.txt
/usr/lib/python3.11/site-packages/zope/testbrowser/testing.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__init__.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/helper.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/helper.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_bbb.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_bbb.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_browser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_browser.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_cookies.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_cookies.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_doctests.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_doctests.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_wsgi.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/__pycache__/test_wsgi.cpython-311.pyc
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/helper.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/test_bbb.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/test_browser.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/test_cookies.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/test_doctests.py
/usr/lib/python3.11/site-packages/zope/testbrowser/tests/test_wsgi.py
/usr/lib/python3.11/site-packages/zope/testbrowser/utils.py
/usr/lib/python3.11/site-packages/zope/testbrowser/wsgi.py
/usr/share/doc/packages/python311-zope.testbrowser
/usr/share/doc/packages/python311-zope.testbrowser/CHANGES.rst
/usr/share/doc/packages/python311-zope.testbrowser/README.rst
/usr/share/licenses/python311-zope.testbrowser
/usr/share/licenses/python311-zope.testbrowser/LICENSE.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 1 23:23:10 2024