aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-30 18:39:25 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-12-07 12:31:15 +0000
commited87e710dd14bc9612dcfdba2e09143201768556 (patch)
tree0c7dd4b49e4a891c57d514fca39642abfaad91f6 /sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp
parenteb16797b9a54970dbc0c461ebeddda57b060af22 (diff)
shiboken6: Add support for a snake case typesystem attribute
Add a snake case attribute to type system, complex type entry, function type entry as well as to function and field modifications. Add a function definitionNames() to AbstractMetaFunction/Field returning the names under which the function/field will be registered. Change the code writing the registration accordingly. Fixes: PYSIDE-1441 Change-Id: I178390bb80fa25aad9f8a56e99e4cc70064178eb Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp b/sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp
index 7c7bb6115..906b8a4b4 100644
--- a/sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp
+++ b/sources/shiboken6/ApiExtractor/tests/testmodifyfunction.cpp
@@ -29,6 +29,7 @@
#include "testmodifyfunction.h"
#include <QtTest/QTest>
#include "testutil.h"
+#include <abstractmetabuilder_p.h>
#include <abstractmetafunction.h>
#include <abstractmetalang.h>
#include <modifications.h>
@@ -469,4 +470,25 @@ void TestModifyFunction::testScopedModifications()
QCOMPARE(f->generateExceptionHandling(), expectedGenerateThrowing);
}
+void TestModifyFunction::testSnakeCaseRenaming_data()
+{
+ QTest::addColumn<QString>("name");
+ QTest::addColumn<QString>("expected");
+ QTest::newRow("s1")
+ << QStringLiteral("snakeCaseFunc") << QStringLiteral("snake_case_func");
+ QTest::newRow("s2")
+ << QStringLiteral("SnakeCaseFunc") << QStringLiteral("snake_case_func");
+ QTest::newRow("consecutive-uppercase")
+ << QStringLiteral("snakeCAseFunc") << QStringLiteral("snakeCAseFunc");
+}
+
+void TestModifyFunction::testSnakeCaseRenaming()
+{
+ QFETCH(QString, name);
+ QFETCH(QString, expected);
+
+ const QString actual = AbstractMetaBuilder::getSnakeCaseName(name);
+ QCOMPARE(actual, expected);
+}
+
QTEST_APPLESS_MAIN(TestModifyFunction)