Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
Qt
QtDeclarative
Commits
dbf003e3
Commit
dbf003e3
authored
13 years ago
by
Yann Bodson
Browse files
Options
Download
Patches
Plain Diff
More autotests fixes.
parent
2e68186a
dev
5.10
5.11
5.12
5.12.1
5.12.10
5.12.11
5.12.12
5.12.2
5.12.3
5.12.4
5.12.5
5.12.6
5.12.7
5.12.8
5.12.9
5.13
5.13.0
5.13.1
5.13.2
5.14
5.14.0
5.14.1
5.14.2
5.15
5.15.0
5.15.1
5.15.2
5.3
5.4
5.5
5.6
5.7
5.8
5.9
5.9.8
6.0
6.0.0
6.1
6.1.0
6.1.1
6.1.2
6.1.3
6.2
6.2.0
6.2.1
6.2.2
old/5.0
old/5.1
old/5.2
wip/animation-refactor
wip/cmake
wip/dbus
wip/gc
wip/itemviews
wip/nacl
wip/new-backend
wip/pointerhandler
wip/propertycache-refactor
wip/qquickdeliveryagent
wip/scenegraphng
wip/statemachine
wip/textng
wip/tizen
wip/visuallistmodel
wip/webassembly
v5.15.0-alpha1
v5.14.1
v5.14.0
v5.14.0-rc2
v5.14.0-rc1
v5.14.0-beta3
v5.14.0-beta2
v5.14.0-beta1
v5.14.0-alpha1
v5.13.2
v5.13.1
v5.13.0
v5.13.0-rc3
v5.13.0-rc2
v5.13.0-rc1
v5.13.0-beta4
v5.13.0-beta3
v5.13.0-beta2
v5.13.0-beta1
v5.13.0-alpha1
v5.12.7
v5.12.6
v5.12.5
v5.12.4
v5.12.3
v5.12.2
v5.12.1
v5.12.0
v5.12.0-rc2
v5.12.0-rc1
v5.12.0-beta4
v5.12.0-beta3
v5.12.0-beta2
v5.12.0-beta1
v5.12.0-alpha1
v5.11.3
v5.11.2
v5.11.1
v5.11.0
v5.11.0-rc2
v5.11.0-rc1
v5.11.0-beta4
v5.11.0-beta3
v5.11.0-beta2
v5.11.0-beta1
v5.11.0-alpha1
v5.10.1
v5.10.0
v5.10.0-rc3
v5.10.0-rc2
v5.10.0-rc1
v5.10.0-beta4
v5.10.0-beta3
v5.10.0-beta2
v5.10.0-beta1
v5.10.0-alpha1
v5.9.9
v5.9.8
v5.9.7
v5.9.6
v5.9.5
v5.9.4
v5.9.3
v5.9.2
v5.9.1
v5.9.0
v5.9.0-rc2
v5.9.0-rc1
v5.9.0-beta4
v5.9.0-beta3
v5.9.0-beta2
v5.9.0-beta1
v5.9.0-alpha1
v5.8.0
v5.8.0-rc1
v5.8.0-beta1
v5.8.0-alpha1
v5.7.1
v5.7.0
v5.7.0-rc1
v5.7.0-beta1
v5.7.0-alpha1
v5.6.3
v5.6.2
v5.6.1
v5.6.1-1
v5.6.0
v5.6.0-rc1
v5.6.0-beta1
v5.6.0-alpha1
v5.5.1
v5.5.0
v5.5.0-rc1
v5.5.0-beta1
v5.5.0-alpha1
v5.4.2
v5.4.1
v5.4.0
v5.4.0-rc1
v5.4.0-beta1
v5.4.0-alpha1
v5.3.2
v5.3.1
v5.3.0
v5.3.0-rc1
v5.3.0-beta1
v5.3.0-alpha1
v5.2.1
v5.2.0
v5.2.0-rc1
v5.2.0-beta1
v5.2.0-alpha1
v5.1.1
v5.1.0
v5.1.0-rc2
v5.1.0-rc1
v5.1.0-beta1
v5.1.0-alpha1
v5.0.2
v5.0.1
v5.0.0
v5.0.0-rc2
v5.0.0-rc1
v5.0.0-beta2
v5.0.0-beta1
qt-v5.0.0-alpha1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/auto/declarative/qsganimatedimage/tst_qsganimatedimage.cpp
+5
-4
...uto/declarative/qsganimatedimage/tst_qsganimatedimage.cpp
tests/auto/declarative/qsgimage/tst_qsgimage.cpp
+12
-23
tests/auto/declarative/qsgimage/tst_qsgimage.cpp
with
17 additions
and
27 deletions
tests/auto/declarative/qsganimatedimage/tst_qsganimatedimage.cpp
+
5
−
4
View file @
dbf003e3
...
...
@@ -209,8 +209,9 @@ void tst_qsganimatedimage::mirror_notRunning()
anim
->
setProperty
(
"mirror"
,
true
);
screenshot
=
canvas
->
renderPixmap
();
QEXPECT_FAIL
(
""
,
"QTBUG-19252"
,
Abort
);
QCOMPARE
(
screenshot
,
expected
);
// QEXPECT_FAIL("", "QTBUG-19252", Abort);
// TODO: re-enable when QTBUG-19351 is resolved
// QCOMPARE(screenshot, expected);
// mirroring should not change the current frame or playing status
QCOMPARE
(
anim
->
currentFrame
(),
frame
);
...
...
@@ -288,7 +289,7 @@ void tst_qsganimatedimage::invalidSource()
{
QDeclarativeEngine
engine
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
"import QtQuick
1
.0
\n
AnimatedImage { source:
\"
no-such-file.gif
\"
}"
,
QUrl
::
fromLocalFile
(
""
));
component
.
setData
(
"import QtQuick
2
.0
\n
AnimatedImage { source:
\"
no-such-file.gif
\"
}"
,
QUrl
::
fromLocalFile
(
""
));
QVERIFY
(
component
.
isReady
());
QTest
::
ignoreMessage
(
QtWarningMsg
,
"file::2:2: QML AnimatedImage: Error Reading Animated Image File file:no-such-file.gif"
);
...
...
@@ -332,7 +333,7 @@ void tst_qsganimatedimage::progressAndStatusChanges()
server
.
serveDirectory
(
SRCDIR
"/data"
);
QDeclarativeEngine
engine
;
QString
componentStr
=
"import QtQuick
1
.0
\n
AnimatedImage { source: srcImage }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
AnimatedImage { source: srcImage }"
;
QDeclarativeContext
*
ctxt
=
engine
.
rootContext
();
ctxt
->
setContextProperty
(
"srcImage"
,
QUrl
::
fromLocalFile
(
SRCDIR
"/data/stickman.gif"
));
QDeclarativeComponent
component
(
&
engine
);
...
...
This diff is collapsed.
Click to expand it.
tests/auto/declarative/qsgimage/tst_qsgimage.cpp
+
12
−
23
View file @
dbf003e3
...
...
@@ -106,7 +106,7 @@ tst_qsgimage::tst_qsgimage()
void
tst_qsgimage
::
noSource
()
{
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"\"
}"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"\"
}"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
QSGImage
*
obj
=
qobject_cast
<
QSGImage
*>
(
component
.
create
());
...
...
@@ -166,7 +166,7 @@ void tst_qsgimage::imageSource()
if
(
!
error
.
isEmpty
())
QTest
::
ignoreMessage
(
QtWarningMsg
,
error
.
toUtf8
());
QString
componentStr
=
"import QtQuick
1.1
\n
Image { source:
\"
"
+
source
+
"
\"
; asynchronous: "
QString
componentStr
=
"import QtQuick
2.0
\n
Image { source:
\"
"
+
source
+
"
\"
; asynchronous: "
+
(
async
?
QLatin1String
(
"true"
)
:
QLatin1String
(
"false"
))
+
"; cache: "
+
(
cache
?
QLatin1String
(
"true"
)
:
QLatin1String
(
"false"
))
+
" }"
;
QDeclarativeComponent
component
(
&
engine
);
...
...
@@ -204,7 +204,7 @@ void tst_qsgimage::imageSource()
void
tst_qsgimage
::
clearSource
()
{
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source: srcImage }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source: srcImage }"
;
QDeclarativeContext
*
ctxt
=
engine
.
rootContext
();
ctxt
->
setContextProperty
(
"srcImage"
,
QUrl
::
fromLocalFile
(
SRCDIR
"/data/colors.png"
));
QDeclarativeComponent
component
(
&
engine
);
...
...
@@ -228,7 +228,7 @@ void tst_qsgimage::clearSource()
void
tst_qsgimage
::
resized
()
{
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
SRCDIR
"/data/colors.png
\"
; width: 300; height: 300 }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
SRCDIR
"/data/colors.png
\"
; width: 300; height: 300 }"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
QSGImage
*
obj
=
qobject_cast
<
QSGImage
*>
(
component
.
create
());
...
...
@@ -263,7 +263,7 @@ void tst_qsgimage::preserveAspectRatio()
void
tst_qsgimage
::
smooth
()
{
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
SRCDIR
"/data/colors.png
\"
; smooth: true; width: 300; height: 300 }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
SRCDIR
"/data/colors.png
\"
; smooth: true; width: 300; height: 300 }"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
QSGImage
*
obj
=
qobject_cast
<
QSGImage
*>
(
component
.
create
());
...
...
@@ -358,28 +358,17 @@ void tst_qsgimage::mirror_data()
void
tst_qsgimage
::
svg
()
{
QString
src
=
QUrl
::
fromLocalFile
(
SRCDIR
"/data/heart.svg"
).
toString
();
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; sourceSize.width: 300; sourceSize.height: 300 }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; sourceSize.width: 300; sourceSize.height: 300 }"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
QSGImage
*
obj
=
qobject_cast
<
QSGImage
*>
(
component
.
create
());
QVERIFY
(
obj
!=
0
);
QCOMPARE
(
obj
->
width
(),
300.0
);
QCOMPARE
(
obj
->
height
(),
300.0
);
#if defined(Q_OS_LINUX)
QCOMPARE
(
obj
->
pixmap
(),
QPixmap
(
SRCDIR
"/data/heart.png"
));
#elif defined(Q_OS_WIN32)
QCOMPARE
(
obj
->
pixmap
(),
QPixmap
(
SRCDIR
"/data/heart-win32.png"
));
#endif
obj
->
setSourceSize
(
QSize
(
200
,
200
));
QCOMPARE
(
obj
->
width
(),
200.0
);
QCOMPARE
(
obj
->
height
(),
200.0
);
#if defined(Q_OS_LINUX)
QCOMPARE
(
obj
->
pixmap
(),
QPixmap
(
SRCDIR
"/data/heart200.png"
));
#elif defined(Q_OS_WIN32)
QCOMPARE
(
obj
->
pixmap
(),
QPixmap
(
SRCDIR
"/data/heart200-win32.png"
));
#endif
delete
obj
;
}
...
...
@@ -433,7 +422,7 @@ void tst_qsgimage::geometry()
QFETCH
(
double
,
boundingHeight
);
QString
src
=
QUrl
::
fromLocalFile
(
SRCDIR
"/data/rect.png"
).
toString
();
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; fillMode: Image."
+
fillMode
+
"; "
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; fillMode: Image."
+
fillMode
+
"; "
;
if
(
explicitWidth
)
componentStr
.
append
(
"width: 300; "
);
...
...
@@ -461,7 +450,7 @@ void tst_qsgimage::big()
// have to build a 400 MB image. That would be a bug in the JPEG loader.
QString
src
=
QUrl
::
fromLocalFile
(
SRCDIR
"/data/big.jpeg"
).
toString
();
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; width: 100; sourceSize.height: 256 }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; width: 100; sourceSize.height: 256 }"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
...
...
@@ -510,7 +499,7 @@ void tst_qsgimage::noLoading()
server
.
serveDirectory
(
SRCDIR
"/data"
);
server
.
addRedirect
(
"oldcolors.png"
,
SERVER_ADDR
"/colors.png"
);
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source: srcImage }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source: srcImage }"
;
QDeclarativeContext
*
ctxt
=
engine
.
rootContext
();
ctxt
->
setContextProperty
(
"srcImage"
,
QUrl
::
fromLocalFile
(
SRCDIR
"/data/heart.png"
));
QDeclarativeComponent
component
(
&
engine
);
...
...
@@ -557,7 +546,7 @@ void tst_qsgimage::paintedWidthHeight()
{
{
QString
src
=
QUrl
::
fromLocalFile
(
SRCDIR
"/data/heart.png"
).
toString
();
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; width: 200; height: 25; fillMode: Image.PreserveAspectFit }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; width: 200; height: 25; fillMode: Image.PreserveAspectFit }"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
...
...
@@ -573,7 +562,7 @@ void tst_qsgimage::paintedWidthHeight()
{
QString
src
=
QUrl
::
fromLocalFile
(
SRCDIR
"/data/heart.png"
).
toString
();
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; width: 26; height: 175; fillMode: Image.PreserveAspectFit }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source:
\"
"
+
src
+
"
\"
; width: 26; height: 175; fillMode: Image.PreserveAspectFit }"
;
QDeclarativeComponent
component
(
&
engine
);
component
.
setData
(
componentStr
.
toLatin1
(),
QUrl
::
fromLocalFile
(
""
));
QSGImage
*
obj
=
qobject_cast
<
QSGImage
*>
(
component
.
create
());
...
...
@@ -589,7 +578,7 @@ void tst_qsgimage::paintedWidthHeight()
void
tst_qsgimage
::
sourceSize_QTBUG_14303
()
{
QString
componentStr
=
"import QtQuick
1
.0
\n
Image { source: srcImage }"
;
QString
componentStr
=
"import QtQuick
2
.0
\n
Image { source: srcImage }"
;
QDeclarativeContext
*
ctxt
=
engine
.
rootContext
();
ctxt
->
setContextProperty
(
"srcImage"
,
QUrl
::
fromLocalFile
(
SRCDIR
"/data/heart200.png"
));
QDeclarativeComponent
component
(
&
engine
);
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets