diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-11 21:35:45 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-11 22:49:39 (GMT) |
commit | fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd (patch) | |
tree | 28c25d69001ef4dd4181ddf465b373491a61932b /tests/auto/declarative/qmlxmlhttprequest/data/open_user.qml | |
parent | 6e0c76a209b87e306e48266962f5668237e63c62 (diff) | |
download | Qt-fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd.zip Qt-fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd.tar.gz Qt-fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd.tar.bz2 |
Adds qml prefix to all declarative autotests
Diffstat (limited to 'tests/auto/declarative/qmlxmlhttprequest/data/open_user.qml')
-rw-r--r-- | tests/auto/declarative/qmlxmlhttprequest/data/open_user.qml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlxmlhttprequest/data/open_user.qml b/tests/auto/declarative/qmlxmlhttprequest/data/open_user.qml new file mode 100644 index 0000000..19e37fa --- /dev/null +++ b/tests/auto/declarative/qmlxmlhttprequest/data/open_user.qml @@ -0,0 +1,53 @@ +import Qt 4.6 + +QtObject { + property string url + + property bool readyState: false + property bool openedState: false + + property bool status: false + property bool statusText: false + property bool responseText: false + property bool responseXML: false + + property bool dataOK: false + + Component.onCompleted: { + var x = new XMLHttpRequest; + + if (x.readyState == XMLHttpRequest.UNSENT) + readyState = true; + + x.open("GET", url, true, "username", "password"); + + if (x.readyState == XMLHttpRequest.OPENED) + openedState = true; + + try { + var a = x.status; + } catch (error) { + if (error.code == DOMException.INVALID_STATE_ERR) + status = true; + } + try { + var a = x.statusText; + } catch (error) { + if (error.code == DOMException.INVALID_STATE_ERR) + statusText = true; + } + responseText = (x.responseText == ""); + responseXML = (x.responseXML == null); + + // Test to the end + x.onreadystatechange = function() { + if (x.readyState == XMLHttpRequest.DONE) { + dataOK = (x.responseText == "QML Rocks!\n"); + } + } + + + x.send() + } +} + |