aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qmlformat/data/nestedIf.formatted.qml29
-rw-r--r--tests/auto/qml/qmlformat/data/nestedIf.qml30
-rw-r--r--tests/auto/qml/qmlformat/tst_qmlformat.cpp8
3 files changed, 67 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/nestedIf.formatted.qml b/tests/auto/qml/qmlformat/data/nestedIf.formatted.qml
new file mode 100644
index 0000000000..6c17f18a9c
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/nestedIf.formatted.qml
@@ -0,0 +1,29 @@
+Item {
+ Component.onCompleted: {
+ // Make sure that nested if statements get properly braced
+ if (a) {
+ if (b)
+ foo();
+ else
+ bar();
+ } else if (x == 3) {
+ stuff();
+ } else {
+ foo_bar();
+ }
+ // Same for "for"
+ if (a) {
+ for (x in y) {
+ bar();
+ y();
+ }
+ }
+ // ...and while
+ if (b) {
+ while (y in x) {
+ foo();
+ x();
+ }
+ }
+ }
+}
diff --git a/tests/auto/qml/qmlformat/data/nestedIf.qml b/tests/auto/qml/qmlformat/data/nestedIf.qml
new file mode 100644
index 0000000000..9388dd42f6
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/nestedIf.qml
@@ -0,0 +1,30 @@
+Item {
+Component.onCompleted: {
+ // Make sure that nested if statements get properly braced
+ if (a) {
+ if (b)
+ foo();
+ else
+ bar();
+ } else if (x == 3)
+ stuff();
+ else
+ foo_bar();
+
+ // Same for "for"
+ if (a) {
+ for (x in y) {
+ bar();
+ y();
+ }
+ }
+
+ // ...and while
+ if (b) {
+ while (y in x) {
+ foo();
+ x();
+ }
+ }
+}
+} \ No newline at end of file
diff --git a/tests/auto/qml/qmlformat/tst_qmlformat.cpp b/tests/auto/qml/qmlformat/tst_qmlformat.cpp
index ecb53b295f..a1bcada5b4 100644
--- a/tests/auto/qml/qmlformat/tst_qmlformat.cpp
+++ b/tests/auto/qml/qmlformat/tst_qmlformat.cpp
@@ -57,6 +57,8 @@ private Q_SLOTS:
void testQtbug85003();
+ void testNestedIf();
+
#if !defined(QTEST_CROSS_COMPILED) // sources not available when cross compiled
void testExample();
void testExample_data();
@@ -240,6 +242,12 @@ void TestQmlformat::testLargeBindings()
readTestFile("largeBindings.formatted.qml"));
}
+void TestQmlformat::testNestedIf()
+{
+ QCOMPARE(runQmlformat(testFile("nestedIf.qml"), false, true),
+ readTestFile("nestedIf.formatted.qml"));
+}
+
void TestQmlformat::testLineEndings()
{
// macos