aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/property_python_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/property_python_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/property_python_test.py50
1 files changed, 20 insertions, 30 deletions
diff --git a/sources/pyside6/tests/pysidetest/property_python_test.py b/sources/pyside6/tests/pysidetest/property_python_test.py
index 4b55ee311..1209aad4f 100644
--- a/sources/pyside6/tests/pysidetest/property_python_test.py
+++ b/sources/pyside6/tests/pysidetest/property_python_test.py
@@ -1,30 +1,5 @@
-#############################################################################
-##
-## Copyright (C) 2020 The Qt Company Ltd.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is part of the test suite of Qt for Python.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
"""
Test for PySide's Property
@@ -39,6 +14,7 @@ This test is to ensure maximum compatibility.
# Test case for property
# more tests are in test_descr
+import gc
import os
import sys
import unittest
@@ -49,7 +25,6 @@ from init_paths import init_test_paths
init_test_paths(False)
from PySide6.QtCore import Property, QObject
-#from PyQt5.QtCore import pyqtProperty as Property, QObject
# This are the original imports.
import sys
@@ -61,21 +36,26 @@ try:
except ImportError:
pass
+
class PropertyBase(Exception):
pass
+
class PropertyGet(PropertyBase):
pass
+
class PropertySet(PropertyBase):
pass
+
class PropertyDel(PropertyBase):
pass
+
class BaseClass(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
self._spam = 5
@@ -91,6 +71,9 @@ class BaseClass(QObject):
@spam.deleter
def spam(self):
del self._spam
+ # PYSIDE-535: Need to collect garbage in PyPy to trigger deletion
+ gc.collect()
+
class SubClass(BaseClass):
@@ -107,37 +90,44 @@ class SubClass(BaseClass):
def spam(self):
raise PropertyDel(self._spam)
+
class PropertyDocBase(object):
_spam = 1
+
def _get_spam(self):
return self._spam
spam = Property(object, _get_spam, doc="spam spam spam")
+
class PropertyDocSub(PropertyDocBase):
@PropertyDocBase.spam.getter
def spam(self):
"""The decorator does not use this doc string"""
return self._spam
+
class PropertySubNewGetter(BaseClass):
@BaseClass.spam.getter
def spam(self):
"""new docstring"""
return 5
+
class PropertyNewGetter(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
@Property(object)
def spam(self):
"""original docstring"""
return 1
+
@spam.getter
def spam(self):
"""new docstring"""
return 8
+
class PropertyTests(unittest.TestCase):
def test_property_decorator_baseclass(self):
# see #1620