aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/RegExpValidatorElement.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testapplications/elements/content/RegExpValidatorElement.qml')
-rw-r--r--tests/testapplications/elements/content/RegExpValidatorElement.qml113
1 files changed, 113 insertions, 0 deletions
diff --git a/tests/testapplications/elements/content/RegExpValidatorElement.qml b/tests/testapplications/elements/content/RegExpValidatorElement.qml
new file mode 100644
index 0000000000..4892ca55e7
--- /dev/null
+++ b/tests/testapplications/elements/content/RegExpValidatorElement.qml
@@ -0,0 +1,113 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of QtUiTest.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.0
+
+Item {
+ id: regexpvalidatorelementtest
+ anchors.fill: parent
+ property string testtext: ""
+ property variant regexp: /[a-z]{3}/
+
+ RegExpValidator { id: regexpvalidatorelement; regExp: regexp }
+
+ Rectangle {
+ id: regexpvalidatorelementbackground
+ color: regexpvalidatorelementinput.acceptableInput ? "green" : "red"; height: 50; width: parent.width *.8
+ border.color: "gray"; opacity: 0.7; radius: 5
+ anchors.centerIn: parent
+
+ TextInput {
+ id: regexpvalidatorelementinput
+ font.pointSize: 12; width: parent.width; text: "0"; horizontalAlignment: Text.AlignHCenter; validator: regexpvalidatorelement
+ anchors.centerIn: parent
+ Behavior on font.pointSize { NumberAnimation { duration: 1000 } }
+ Behavior on color { ColorAnimation { duration: 1000 } }
+ }
+ }
+
+ Text{
+ anchors.top: regexpvalidatorelementbackground.bottom; anchors.topMargin: 50; anchors.horizontalCenter: parent.horizontalCenter
+ text: "Regular Expression: " + regexp
+ }
+
+ SystemTestHelp { id: helpbubble; visible: statenum != 0
+ anchors { top: parent.top; horizontalCenter: parent.horizontalCenter; topMargin: 50 }
+ }
+ BugPanel { id: bugpanel }
+
+ states: [
+ State { name: "start"; when: statenum == 1
+ PropertyChanges { target: regexpvalidatorelementinput; text: "abc" }
+ PropertyChanges { target: regexpvalidatorelementtest
+ testtext: "This is a TextInput element using an RegExpValidator for input masking. At present it should be indicating abc.\n"+
+ "The regExp value will only match to a value that has three alpha characters\n"+
+ "Next, let's attempt to enter text that does not match the regular expression: 123" }
+ },
+ State { name: "notmatch"; when: statenum == 2
+ PropertyChanges { target: regexpvalidatorelementinput; text: "123" }
+ PropertyChanges { target: regexpvalidatorelementtest
+ testtext: "The TextInput background should be showing red - input is not acceptable.\n"+
+ "Next, let's enter a word with not enough characters to match: aa." }
+ },
+ State { name: "notenough"; when: statenum == 3
+ PropertyChanges { target: regexpvalidatorelementinput; text: "aa" }
+ PropertyChanges { target: regexpvalidatorelementtest
+ testtext: "The TextInput background should be showing red - input is not acceptable.\n"+
+ "Next, let's attempt to enter a word with too many characters to match: abcd" }
+ },
+ State { name: "toomany"; when: statenum == 4
+ PropertyChanges { target: regexpvalidatorelementinput; text: "abcd" }
+ PropertyChanges { target: regexpvalidatorelementtest
+ testtext: "The TextInput background should still be showing red - input is not acceptable.\n"+
+ "Next, let's change the regex to accept the new value." }
+ },
+ State { name: "changedregex"; when: statenum == 5
+ PropertyChanges { target: regexpvalidatorelementinput; text: "abcd" }
+ PropertyChanges { target: regexpvalidatorelementtest; regexp: /[a-z]{4}/
+ testtext: "The regular expression should have changed to match four characters, "+
+ "thus making the text valid and turning the input background green.\n"+
+ "Press advance to restart the test." }
+ PropertyChanges { target: bugpanel; bugnumber: "19956" }
+ }
+ ]
+
+} \ No newline at end of file