Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add more element qmltestrunner cases
Added remote testing to Image, BorderImage
Added several basic element tests

Change-Id: I1a25f31bc66be6b096a6d3c217196d5625e8a2ed
Reviewed-by: Yunqiao Yin <charles.yin@nokia.com>
  • Loading branch information
Damian Jansen authored and Qt by Nokia committed Mar 21, 2012
1 parent 1343820 commit 122e8df
Show file tree
Hide file tree
Showing 16 changed files with 1,727 additions and 15 deletions.
Binary file added tests/auto/qmltest/animatedimage/stickman.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
220 changes: 220 additions & 0 deletions tests/auto/qmltest/animatedimage/tst_animatedimage.qml
@@ -0,0 +1,220 @@
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
** the names of its contributors may be used to endorse or promote
** products derived from this software without specific prior written
** permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 2.0
import QtTest 1.0

Item {
id: top
property string srcImage: "stickman.gif"
property bool canconnect
property bool checkfinished: false

Component.onCompleted: {
var check = new XMLHttpRequest;
check.open("GET", "http://127.0.0.1:14445/stickman.gif");
check.onreadystatechange = function() {

console.log("Status: ", check.status)
console.log("Readystate", check.readyState)
if (check.readyState == XMLHttpRequest.DONE) {
if (check.status == 404) {
top.canconnect = false;
}else{
top.canconnect = true;
}
top.checkfinished = true;
}
}
check.send();
}

AnimatedImage {
id: noSource
source: ""
}

AnimatedImage {
id: clearSource
source: srcImage
}

AnimatedImage {
id: resized
source: srcImage
width: 300
height: 300
}

AnimatedImage {
id: smooth
source: srcImage
smooth: true
width: 300
height: 300
}

AnimatedImage {
id: tileModes1
source: srcImage
width: 100
height: 300
fillMode: AnimatedImage.Tile
}

AnimatedImage {
id: tileModes2
source: srcImage
width: 300
height: 150
fillMode: AnimatedImage.TileVertically
}
AnimatedImage {
id: tileModes3
source: srcImage
width: 300
height: 150
fillMode: AnimatedImage.TileHorizontally
}

TestCase {
name: "AnimatedImage"

function test_noSource() {
compare(noSource.source, "")
compare(noSource.width, 0)
compare(noSource.height, 0)
compare(noSource.fillMode, AnimatedImage.Stretch)
}

function test_imageSource_data() {
return [
{
tag: "local",
source: "stickman.gif",
remote: false,
error: ""
},
{
tag: "local not found",
source: "no-such-file.png",
remote: false,
error: "SUBinline:1:21: QML AnimatedImage: Error Reading Animated Image File SUBno-such-file.png"
},
{
tag: "remote",
source: "http://127.0.0.1:14445/stickman.gif",
remote: true,
error: ""
}
]
}

function test_imageSource(row) {
var expectError = (row.error.length != 0)
var canconnect = false;

if (expectError) {
var parentUrl = Qt.resolvedUrl(".")
ignoreWarning(row.error.replace(/SUB/g, parentUrl))
}

var img = Qt.createQmlObject('import QtQuick 2.0; AnimatedImage { source: "'+row.source+'" }', top)

if (row.remote) {
skip("Remote solution not yet complete")
tryCompare(img, "status", AnimatedImage.Loading)
tryCompare(top, "checkfinished", true, 10000)
if (top.canconnect == false)
skip("Cannot access remote")
}

if (!expectError) {
tryCompare(img, "status", AnimatedImage.Ready, 10000)
compare(img.width, 160)
compare(img.height, 120)
compare(img.fillMode, AnimatedImage.Stretch)
} else {
tryCompare(img, "status", AnimatedImage.Error)
}

img.destroy()
}

function test_clearSource() {
compare(clearSource.source, Qt.resolvedUrl(srcImage))
compare(clearSource.width, 160)
compare(clearSource.height, 120)

srcImage = ""
compare(clearSource.source, "")
compare(clearSource.width, 0)
compare(clearSource.height, 0)
}

function test_resized() {
compare(resized.width, 300)
compare(resized.height, 300)
compare(resized.fillMode, AnimatedImage.Stretch)
}

function test_smooth() {
compare(smooth.smooth, true)
compare(smooth.width, 300)
compare(smooth.height, 300)
compare(smooth.fillMode, AnimatedImage.Stretch)
}

function test_tileModes() {
compare(tileModes1.width, 100)
compare(tileModes1.height, 300)
compare(tileModes1.fillMode, AnimatedImage.Tile)

compare(tileModes2.width, 300)
compare(tileModes2.height, 150)
compare(tileModes2.fillMode, AnimatedImage.TileVertically)

compare(tileModes3.width, 300)
compare(tileModes3.height, 150)
compare(tileModes3.fillMode, AnimatedImage.TileHorizontally)
}

}
}
7 changes: 7 additions & 0 deletions tests/auto/qmltest/borderimage/remote.sci
@@ -0,0 +1,7 @@
border.left:10
border.top:20
border.right:30
border.bottom:40
horizontalTileRule:Round
verticalTileRule:Repeat
source:http://127.0.0.1:14445/colors.png
68 changes: 53 additions & 15 deletions tests/auto/qmltest/borderimage/tst_borderimage.qml
Expand Up @@ -44,6 +44,24 @@ import QtTest 1.0

Item {
id: top
property bool canconnect
property bool checkfinished: false

Component.onCompleted: {
var check = new XMLHttpRequest;
check.open("GET", "http://127.0.0.1:14445/colors.png");
check.onreadystatechange = function() {
if (check.readyState == XMLHttpRequest.DONE) {
if (check.status == 404) {
top.canconnect = false;
}else{
top.canconnect = true;
}
top.checkfinished = true;
}
}
check.send();
}

BorderImage {
id: noSource
Expand All @@ -59,22 +77,22 @@ Item {

BorderImage {
id: resized
source: "colors.png"
source: srcImage
width: 300
height: 300
}

BorderImage {
id: smooth
source: "colors.png"
source: srcImage
smooth: true
width: 300
height: 300
}

BorderImage {
id: tileModes1
source: "colors.png"
source: srcImage
width: 100
height: 300
horizontalTileMode: BorderImage.Repeat
Expand All @@ -83,7 +101,7 @@ Item {

BorderImage {
id: tileModes2
source: "colors.png"
source: srcImage
width: 300
height: 150
horizontalTileMode: BorderImage.Round
Expand Down Expand Up @@ -114,8 +132,13 @@ Item {
source: "no-such-file.png",
remote: false,
error: "SUBinline:1:21: QML BorderImage: Cannot open: SUBno-such-file.png"
},
{
tag: "remote",
source: "http://127.0.0.1:14445/colors.png",
remote: true,
error: ""
}
// TODO: remote tests that need to use http
]
}

Expand All @@ -130,11 +153,16 @@ Item {
('import QtQuick 2.0; BorderImage { source: "' +
row.source + '" }', top)

if (row.remote)
if (row.remote) {
skip("Remote solution not yet complete")
tryCompare(img, "status", BorderImage.Loading)
tryCompare(top, "checkfinished", true, 10000)
if (top.canconnect == false)
skip("Cannot access remote")
}

if (!expectError) {
tryCompare(img, "status", BorderImage.Ready)
tryCompare(img, "status", BorderImage.Ready, 10000)
compare(img.width, 120)
compare(img.height, 120)
compare(img.horizontalTileMode, BorderImage.Stretch)
Expand Down Expand Up @@ -197,25 +225,35 @@ Item {
source: "no-such-file.sci",
remote: false,
valid: false
},
{
tag: "remote",
source: "remote.sci",
remote: true,
valid: true
}
// TODO: remote tests that need to use http
]
}

function test_sciSource(row) {
var img = Qt.createQmlObject
('import QtQuick 2.0; BorderImage { source: "' +
row.source + '"; width: 300; height: 300 }', top)

if (row.remote)
tryCompare(img, "status", BorderImage.Loading)
var img = Qt.createQmlObject('import QtQuick 2.0; BorderImage { height: 300; width: 300 }', top)

if (row.remote) {
skip("Remote solution not yet complete")
img.source = row.source;
tryCompare(top, "checkfinished", true, 10000)
if (top.canconnect == false)
skip("Cannot access remote")
}else{
img.source = row.source;
}

compare(img.source, Qt.resolvedUrl(row.source))
compare(img.width, 300)
compare(img.height, 300)

if (row.valid) {
tryCompare(img, "status", BorderImage.Ready)
tryCompare(img, "status", BorderImage.Ready, 10000)
compare(img.border.left, 10)
compare(img.border.top, 20)
compare(img.border.right, 30)
Expand Down
Empty file.
Binary file not shown.

0 comments on commit 122e8df

Please sign in to comment.