aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/samplebinding
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/samplebinding')
-rw-r--r--sources/shiboken6/tests/samplebinding/CMakeLists.txt2
-rw-r--r--sources/shiboken6/tests/samplebinding/global.h1
-rw-r--r--sources/shiboken6/tests/samplebinding/snakecase_test.py86
-rw-r--r--sources/shiboken6/tests/samplebinding/typesystem_sample.xml8
4 files changed, 97 insertions, 0 deletions
diff --git a/sources/shiboken6/tests/samplebinding/CMakeLists.txt b/sources/shiboken6/tests/samplebinding/CMakeLists.txt
index 418e47c0d..2630b9c79 100644
--- a/sources/shiboken6/tests/samplebinding/CMakeLists.txt
+++ b/sources/shiboken6/tests/samplebinding/CMakeLists.txt
@@ -111,6 +111,8 @@ ${CMAKE_CURRENT_BINARY_DIR}/sample/samplenamespace_derivedfromnamespace_wrapper.
${CMAKE_CURRENT_BINARY_DIR}/sample/simplefile_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/sample/size_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/sample/sizef_wrapper.cpp
+${CMAKE_CURRENT_BINARY_DIR}/sample/snakecasetest_wrapper.cpp
+${CMAKE_CURRENT_BINARY_DIR}/sample/snakecasederivedtest_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/sample/sonofmderived1_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/sample/str_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/sample/strlist_wrapper.cpp
diff --git a/sources/shiboken6/tests/samplebinding/global.h b/sources/shiboken6/tests/samplebinding/global.h
index 0a168099b..f647eb795 100644
--- a/sources/shiboken6/tests/samplebinding/global.h
+++ b/sources/shiboken6/tests/samplebinding/global.h
@@ -81,6 +81,7 @@
#include "samplenamespace.h"
#include "simplefile.h"
#include "size.h"
+#include "snakecasetest.h"
#include "str.h"
#include "strlist.h"
#include "sometime.h"
diff --git a/sources/shiboken6/tests/samplebinding/snakecase_test.py b/sources/shiboken6/tests/samplebinding/snakecase_test.py
new file mode 100644
index 000000000..893b9809e
--- /dev/null
+++ b/sources/shiboken6/tests/samplebinding/snakecase_test.py
@@ -0,0 +1,86 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#############################################################################
+##
+## 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$
+##
+#############################################################################
+
+'''Test cases for snake case generation'''
+
+import os
+import sys
+import unittest
+
+sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+from shiboken_paths import init_paths
+init_paths()
+
+from sample import (SnakeCaseTest, SnakeCaseDerivedTest,
+ snake_case_global_function)
+
+
+class OverrideTest(SnakeCaseDerivedTest):
+ def virtual_func(self):
+ return 4711
+
+
+class SnakeCaseTestCase(unittest.TestCase):
+ '''Test for SnakeCaseTest'''
+ def testMemberFunctions(self):
+ s = SnakeCaseTest()
+ self.assertEqual(s.test_function1(), 42)
+
+ self.assertEqual(s.testFunctionDisabled(), 42)
+
+ self.assertEqual(s.testFunctionBoth(), 42)
+ self.assertEqual(s.test_function_both(), 42)
+
+ def virtualFunctions(self):
+ s = OverrideTest()
+ self.assertEqual(s.call_virtual_func(), 4711)
+
+ def testMemberFields(self):
+ s = SnakeCaseTest()
+ old_value = s.test_field
+ s.test_field = old_value + 1
+ self.assertEqual(s.test_field, old_value + 1)
+
+ old_value = s.testFieldDisabled
+ s.testFieldDisabled = old_value + 1
+ self.assertEqual(s.testFieldDisabled, old_value + 1)
+
+ old_value = s.test_field_both
+ s.test_field_both = old_value + 1
+ self.assertEqual(s.test_field_both, old_value + 1)
+ self.assertEqual(s.testFieldBoth, old_value + 1)
+
+ def testGlobalFunction(self):
+ self.assertEqual(snake_case_global_function(), 42)
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/sources/shiboken6/tests/samplebinding/typesystem_sample.xml b/sources/shiboken6/tests/samplebinding/typesystem_sample.xml
index 6d9c842ac..d5a3edb34 100644
--- a/sources/shiboken6/tests/samplebinding/typesystem_sample.xml
+++ b/sources/shiboken6/tests/samplebinding/typesystem_sample.xml
@@ -1967,6 +1967,14 @@
</add-function>
</value-type>
<value-type name="SizeF"/>
+ <function signature="SnakeCaseGlobalFunction()" snake-case="yes"/>
+ <object-type name="SnakeCaseTest" snake-case="yes">
+ <modify-function signature="testFunctionDisabled()const" snake-case="no"/>
+ <modify-function signature="testFunctionBoth()const" snake-case="both"/>
+ <modify-field name="testFieldDisabled" snake-case="no"/>
+ <modify-field name="testFieldBoth" snake-case="both"/>
+ </object-type>
+ <object-type name="SnakeCaseDerivedTest" snake-case="yes"/>
<value-type name="MapUser"/>
<value-type name="PairUser"/>
<value-type name="ListUser">