forked from pool/python-WebTest
Accepting request 1112593 from home:mcalabkova:branches:devel:languages:python:312
- Add py312.patch to fix build with Python 3.12 OBS-URL: https://build.opensuse.org/request/show/1112593 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-WebTest?expand=0&rev=59
This commit is contained in:
127
py312.patch
Normal file
127
py312.patch
Normal file
@@ -0,0 +1,127 @@
|
||||
From d82ec5bd2cf3c7109a1d49ad9fa802ae1eae1763 Mon Sep 17 00:00:00 2001
|
||||
From: Sam James <sam@gentoo.org>
|
||||
Date: Mon, 29 May 2023 15:54:28 +0100
|
||||
Subject: [PATCH] Replace deprecated unittest aliases for Python 3.12
|
||||
|
||||
See https://docs.python.org/3.12/whatsnew/3.12.html#removed.
|
||||
---
|
||||
tests/test_app.py | 4 ++--
|
||||
tests/test_authorisation.py | 6 +++---
|
||||
tests/test_forms.py | 2 +-
|
||||
tests/test_lint.py | 12 ++++++------
|
||||
4 files changed, 12 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/tests/test_app.py b/tests/test_app.py
|
||||
index 4bc8298..9636b75 100644
|
||||
--- a/tests/test_app.py
|
||||
+++ b/tests/test_app.py
|
||||
@@ -221,7 +221,7 @@ def cookie_app(environ, start_response):
|
||||
('Set-Cookie', 'foo=bar;baz'),
|
||||
])
|
||||
else:
|
||||
- self.assertEquals(dict(req.cookies),
|
||||
+ self.assertEqual(dict(req.cookies),
|
||||
{'spam': 'eggs', 'foo': 'bar'})
|
||||
self.assertIn('foo=bar', environ['HTTP_COOKIE'])
|
||||
self.assertIn('spam=eggs', environ['HTTP_COOKIE'])
|
||||
@@ -258,7 +258,7 @@ def cookie_app(environ, start_response):
|
||||
('Set-Cookie', 'foo=bar;baz; secure'),
|
||||
])
|
||||
else:
|
||||
- self.assertEquals(dict(req.cookies),
|
||||
+ self.assertEqual(dict(req.cookies),
|
||||
{'spam': 'eggs', 'foo': 'bar'})
|
||||
self.assertIn('foo=bar', environ['HTTP_COOKIE'])
|
||||
self.assertIn('spam=eggs', environ['HTTP_COOKIE'])
|
||||
diff --git a/tests/test_authorisation.py b/tests/test_authorisation.py
|
||||
index 861b6e6..94213d0 100644
|
||||
--- a/tests/test_authorisation.py
|
||||
+++ b/tests/test_authorisation.py
|
||||
@@ -17,7 +17,7 @@ def test_basic_authorization(self):
|
||||
app.authorization = authorization
|
||||
|
||||
self.assertIn('HTTP_AUTHORIZATION', app.extra_environ)
|
||||
- self.assertEquals(app.authorization, authorization)
|
||||
+ self.assertEqual(app.authorization, authorization)
|
||||
|
||||
resp = app.get('/')
|
||||
resp.mustcontain('HTTP_AUTHORIZATION: Basic Z2F3ZWw6cGFzc3dk')
|
||||
@@ -26,7 +26,7 @@ def test_basic_authorization(self):
|
||||
authtype, value = header.split(' ')
|
||||
auth = (authtype,
|
||||
b64decode(to_bytes(value)).decode('latin1').split(':'))
|
||||
- self.assertEquals(authorization, auth)
|
||||
+ self.assertEqual(authorization, auth)
|
||||
|
||||
app.authorization = None
|
||||
self.assertNotIn('HTTP_AUTHORIZATION', app.extra_environ)
|
||||
@@ -37,7 +37,7 @@ def test_bearer_authorization(self):
|
||||
app.authorization = authorization
|
||||
|
||||
self.assertIn('HTTP_AUTHORIZATION', app.extra_environ)
|
||||
- self.assertEquals(app.authorization, authorization)
|
||||
+ self.assertEqual(app.authorization, authorization)
|
||||
|
||||
resp = app.get('/')
|
||||
resp.mustcontain('HTTP_AUTHORIZATION: Bearer 2588409761fcfa3e378bff4fb766e2e2')
|
||||
diff --git a/tests/test_forms.py b/tests/test_forms.py
|
||||
index f8bd39d..0348d0e 100644
|
||||
--- a/tests/test_forms.py
|
||||
+++ b/tests/test_forms.py
|
||||
@@ -1031,7 +1031,7 @@ def test_upload_invalid_content(self):
|
||||
single_form.submit("button")
|
||||
except ValueError:
|
||||
e = sys.exc_info()[1]
|
||||
- self.assertEquals(
|
||||
+ self.assertEqual(
|
||||
str(e),
|
||||
u('File content must be %s not %s' % (bytes, int))
|
||||
)
|
||||
diff --git a/tests/test_lint.py b/tests/test_lint.py
|
||||
index ae6b8ae..0a2153d 100644
|
||||
--- a/tests/test_lint.py
|
||||
+++ b/tests/test_lint.py
|
||||
@@ -62,15 +62,15 @@ class TestMiddleware(unittest.TestCase):
|
||||
@unittest.skipIf(sys.flags.optimize > 0, "skip assert tests if optimize is enabled")
|
||||
def test_lint_too_few_args(self):
|
||||
linter = middleware(application)
|
||||
- with self.assertRaisesRegexp(AssertionError, "Two arguments required"):
|
||||
+ with self.assertRaisesRegex(AssertionError, "Two arguments required"):
|
||||
linter()
|
||||
- with self.assertRaisesRegexp(AssertionError, "Two arguments required"):
|
||||
+ with self.assertRaisesRegex(AssertionError, "Two arguments required"):
|
||||
linter({})
|
||||
|
||||
@unittest.skipIf(sys.flags.optimize > 0, "skip assert tests if optimize is enabled")
|
||||
def test_lint_no_keyword_args(self):
|
||||
linter = middleware(application)
|
||||
- with self.assertRaisesRegexp(AssertionError, "No keyword arguments "
|
||||
+ with self.assertRaisesRegex(AssertionError, "No keyword arguments "
|
||||
"allowed"):
|
||||
linter({}, 'foo', baz='baz')
|
||||
|
||||
@@ -82,7 +82,7 @@ def test_lint_no_keyword_args(self):
|
||||
def test_lint_iterator_returned(self):
|
||||
linter = middleware(lambda x, y: None) # None is not an iterator
|
||||
msg = "The application must return an iterator, if only an empty list"
|
||||
- with self.assertRaisesRegexp(AssertionError, msg):
|
||||
+ with self.assertRaisesRegex(AssertionError, msg):
|
||||
linter({'wsgi.input': 'foo', 'wsgi.errors': 'foo'}, 'foo')
|
||||
|
||||
|
||||
@@ -109,13 +109,13 @@ def test_close(self):
|
||||
def test_iter(self):
|
||||
data = to_bytes("A line\nAnother line\nA final line\n")
|
||||
input_wrapper = InputWrapper(BytesIO(data))
|
||||
- self.assertEquals(to_bytes("").join(input_wrapper), data, '')
|
||||
+ self.assertEqual(to_bytes("").join(input_wrapper), data, '')
|
||||
|
||||
def test_seek(self):
|
||||
data = to_bytes("A line\nAnother line\nA final line\n")
|
||||
input_wrapper = InputWrapper(BytesIO(data))
|
||||
input_wrapper.seek(0)
|
||||
- self.assertEquals(to_bytes("").join(input_wrapper), data, '')
|
||||
+ self.assertEqual(to_bytes("").join(input_wrapper), data, '')
|
||||
|
||||
|
||||
class TestMiddleware2(unittest.TestCase):
|
||||
@@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 20 14:48:54 UTC 2023 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Add py312.patch to fix build with Python 3.12
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 26 07:25:22 UTC 2023 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||
|
||||
|
||||
@@ -26,6 +26,8 @@ Group: Development/Languages/Python
|
||||
URL: https://docs.pylonsproject.org/projects/webtest/
|
||||
Source: https://files.pythonhosted.org/packages/source/W/WebTest/WebTest-%{version}.tar.gz
|
||||
Patch0: sphinx-7-fix.patch
|
||||
# PATCH-FIX-UPSTREAM https://github.com/Pylons/webtest/commit/d82ec5bd2cf3c7109a1d49ad9fa802ae1eae1763 Replace deprecated unittest aliases for Python 3.12
|
||||
Patch1: py312.patch
|
||||
BuildRequires: %{python_module PasteDeploy}
|
||||
BuildRequires: %{python_module WSGIProxy2}
|
||||
BuildRequires: %{python_module WebOb >= 1.2}
|
||||
@@ -62,8 +64,7 @@ Provides: %{python_module WebTest-doc = %{version}}
|
||||
This package contains documentation files for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n WebTest-%{version}
|
||||
%patch0 -p1
|
||||
%autosetup -p1 -n WebTest-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
Reference in New Issue
Block a user