/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp

https://bitbucket.org/ultra_iter/qt-vtl · C++ · 1531 lines · 1135 code · 333 blank · 63 comment · 115 complexity · 255224a7c1c8681b6618923ab85d228e MD5 · raw file

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
  4. ** All rights reserved.
  5. ** Contact: Nokia Corporation (qt-info@nokia.com)
  6. **
  7. ** This file is part of the test suite of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:LGPL$
  10. ** GNU Lesser General Public License Usage
  11. ** This file may be used under the terms of the GNU Lesser General Public
  12. ** License version 2.1 as published by the Free Software Foundation and
  13. ** appearing in the file LICENSE.LGPL included in the packaging of this
  14. ** file. Please review the following information to ensure the GNU Lesser
  15. ** General Public License version 2.1 requirements will be met:
  16. ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
  17. **
  18. ** In addition, as a special exception, Nokia gives you certain additional
  19. ** rights. These rights are described in the Nokia Qt LGPL Exception
  20. ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
  21. **
  22. ** GNU General Public License Usage
  23. ** Alternatively, this file may be used under the terms of the GNU General
  24. ** Public License version 3.0 as published by the Free Software Foundation
  25. ** and appearing in the file LICENSE.GPL included in the packaging of this
  26. ** file. Please review the following information to ensure the GNU General
  27. ** Public License version 3.0 requirements will be met:
  28. ** http://www.gnu.org/copyleft/gpl.html.
  29. **
  30. ** Other Usage
  31. ** Alternatively, this file may be used in accordance with the terms and
  32. ** conditions contained in a signed written agreement between you and Nokia.
  33. **
  34. **
  35. **
  36. **
  37. **
  38. ** $QT_END_LICENSE$
  39. **
  40. ****************************************************************************/
  41. #include <qtest.h>
  42. #include <QtDeclarative/qdeclarativeengine.h>
  43. #include <QtDeclarative/qdeclarativecomponent.h>
  44. #include <private/qdeclarativeanchors_p_p.h>
  45. #include <private/qdeclarativerectangle_p.h>
  46. #include <private/qdeclarativeimage_p.h>
  47. #include <private/qdeclarativepropertychanges_p.h>
  48. #include <private/qdeclarativestategroup_p.h>
  49. #include <private/qdeclarativeitem_p.h>
  50. #include <private/qdeclarativeproperty_p.h>
  51. #ifdef Q_OS_SYMBIAN
  52. // In Symbian OS test data is located in applications private dir
  53. #define SRCDIR "."
  54. #endif
  55. class MyAttached : public QObject
  56. {
  57. Q_OBJECT
  58. Q_PROPERTY(int foo READ foo WRITE setFoo)
  59. public:
  60. MyAttached(QObject *parent) : QObject(parent), m_foo(13) {}
  61. int foo() const { return m_foo; }
  62. void setFoo(int f) { m_foo = f; }
  63. private:
  64. int m_foo;
  65. };
  66. class MyRect : public QDeclarativeRectangle
  67. {
  68. Q_OBJECT
  69. Q_PROPERTY(int propertyWithNotify READ propertyWithNotify WRITE setPropertyWithNotify NOTIFY oddlyNamedNotifySignal)
  70. public:
  71. MyRect() {}
  72. void doSomething() { emit didSomething(); }
  73. int propertyWithNotify() const { return m_prop; }
  74. void setPropertyWithNotify(int i) { m_prop = i; emit oddlyNamedNotifySignal(); }
  75. static MyAttached *qmlAttachedProperties(QObject *o) {
  76. return new MyAttached(o);
  77. }
  78. Q_SIGNALS:
  79. void didSomething();
  80. void oddlyNamedNotifySignal();
  81. private:
  82. int m_prop;
  83. };
  84. QML_DECLARE_TYPE(MyRect)
  85. QML_DECLARE_TYPEINFO(MyRect, QML_HAS_ATTACHED_PROPERTIES)
  86. class tst_qdeclarativestates : public QObject
  87. {
  88. Q_OBJECT
  89. public:
  90. tst_qdeclarativestates() {}
  91. private:
  92. static QByteArray fullDataPath(const QString &path);
  93. private slots:
  94. void initTestCase();
  95. void basicChanges();
  96. void attachedPropertyChanges();
  97. void basicExtension();
  98. void basicBinding();
  99. void signalOverride();
  100. void signalOverrideCrash();
  101. void signalOverrideCrash2();
  102. void signalOverrideCrash3();
  103. void parentChange();
  104. void parentChangeErrors();
  105. void anchorChanges();
  106. void anchorChanges2();
  107. void anchorChanges3();
  108. void anchorChanges4();
  109. void anchorChanges5();
  110. void anchorChangesRTL();
  111. void anchorChangesRTL2();
  112. void anchorChangesRTL3();
  113. void anchorChangesCrash();
  114. void anchorRewindBug();
  115. void anchorRewindBug2();
  116. void script();
  117. void restoreEntryValues();
  118. void explicitChanges();
  119. void propertyErrors();
  120. void incorrectRestoreBug();
  121. void autoStateAtStartupRestoreBug();
  122. void deletingChange();
  123. void deletingState();
  124. void tempState();
  125. void illegalTempState();
  126. void nonExistantProperty();
  127. void reset();
  128. void illegalObjectCreation();
  129. void whenOrdering();
  130. void urlResolution();
  131. void unnamedWhen();
  132. void returnToBase();
  133. void extendsBug();
  134. void editProperties();
  135. void QTBUG_14830();
  136. };
  137. void tst_qdeclarativestates::initTestCase()
  138. {
  139. qmlRegisterType<MyRect>("Qt.test", 1, 0, "MyRectangle");
  140. }
  141. QByteArray tst_qdeclarativestates::fullDataPath(const QString &path)
  142. {
  143. return QUrl::fromLocalFile(SRCDIR + path).toString().toUtf8();
  144. }
  145. void tst_qdeclarativestates::basicChanges()
  146. {
  147. QDeclarativeEngine engine;
  148. {
  149. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges.qml");
  150. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  151. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  152. QVERIFY(rect != 0);
  153. QCOMPARE(rect->color(),QColor("red"));
  154. rectPrivate->setState("blue");
  155. QCOMPARE(rect->color(),QColor("blue"));
  156. rectPrivate->setState("");
  157. QCOMPARE(rect->color(),QColor("red"));
  158. }
  159. {
  160. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges2.qml");
  161. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  162. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  163. QVERIFY(rect != 0);
  164. QCOMPARE(rect->color(),QColor("red"));
  165. rectPrivate->setState("blue");
  166. QCOMPARE(rect->color(),QColor("blue"));
  167. rectPrivate->setState("green");
  168. QCOMPARE(rect->color(),QColor("green"));
  169. rectPrivate->setState("");
  170. QCOMPARE(rect->color(),QColor("red"));
  171. rectPrivate->setState("green");
  172. QCOMPARE(rect->color(),QColor("green"));
  173. }
  174. {
  175. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges3.qml");
  176. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  177. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  178. QVERIFY(rect != 0);
  179. QCOMPARE(rect->color(),QColor("red"));
  180. QCOMPARE(rect->border()->width(),1);
  181. rectPrivate->setState("blue");
  182. QCOMPARE(rect->color(),QColor("blue"));
  183. QCOMPARE(rect->border()->width(),1);
  184. rectPrivate->setState("bordered");
  185. QCOMPARE(rect->color(),QColor("red"));
  186. QCOMPARE(rect->border()->width(),2);
  187. rectPrivate->setState("");
  188. QCOMPARE(rect->color(),QColor("red"));
  189. QCOMPARE(rect->border()->width(),1);
  190. //### we should be checking that this is an implicit rather than explicit 1 (which currently fails)
  191. rectPrivate->setState("bordered");
  192. QCOMPARE(rect->color(),QColor("red"));
  193. QCOMPARE(rect->border()->width(),2);
  194. rectPrivate->setState("blue");
  195. QCOMPARE(rect->color(),QColor("blue"));
  196. QCOMPARE(rect->border()->width(),1);
  197. }
  198. {
  199. // Test basicChanges4.qml can magically connect to propertyWithNotify's notify
  200. // signal using 'onPropertyWithNotifyChanged' even though the signal name is
  201. // actually 'oddlyNamedNotifySignal'
  202. QDeclarativeComponent component(&engine, SRCDIR "/data/basicChanges4.qml");
  203. QVERIFY(component.isReady());
  204. MyRect *rect = qobject_cast<MyRect*>(component.create());
  205. QVERIFY(rect != 0);
  206. QMetaProperty prop = rect->metaObject()->property(rect->metaObject()->indexOfProperty("propertyWithNotify"));
  207. QVERIFY(prop.hasNotifySignal());
  208. QString notifySignal = QByteArray(prop.notifySignal().signature());
  209. QVERIFY(!notifySignal.startsWith("propertyWithNotifyChanged("));
  210. QCOMPARE(rect->color(), QColor(Qt::red));
  211. rect->setPropertyWithNotify(100);
  212. QCOMPARE(rect->color(), QColor(Qt::blue));
  213. }
  214. }
  215. void tst_qdeclarativestates::attachedPropertyChanges()
  216. {
  217. QDeclarativeEngine engine;
  218. QDeclarativeComponent component(&engine, SRCDIR "/data/attachedPropertyChanges.qml");
  219. QVERIFY(component.isReady());
  220. QDeclarativeItem *item = qobject_cast<QDeclarativeItem*>(component.create());
  221. QVERIFY(item != 0);
  222. QCOMPARE(item->width(), 50.0);
  223. // Ensure attached property has been changed
  224. QObject *attObj = qmlAttachedPropertiesObject<MyRect>(item, false);
  225. QVERIFY(attObj);
  226. MyAttached *att = qobject_cast<MyAttached*>(attObj);
  227. QVERIFY(att);
  228. QCOMPARE(att->foo(), 1);
  229. }
  230. void tst_qdeclarativestates::basicExtension()
  231. {
  232. QDeclarativeEngine engine;
  233. {
  234. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicExtension.qml");
  235. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  236. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  237. QVERIFY(rect != 0);
  238. QCOMPARE(rect->color(),QColor("red"));
  239. QCOMPARE(rect->border()->width(),1);
  240. rectPrivate->setState("blue");
  241. QCOMPARE(rect->color(),QColor("blue"));
  242. QCOMPARE(rect->border()->width(),1);
  243. rectPrivate->setState("bordered");
  244. QCOMPARE(rect->color(),QColor("blue"));
  245. QCOMPARE(rect->border()->width(),2);
  246. rectPrivate->setState("blue");
  247. QCOMPARE(rect->color(),QColor("blue"));
  248. QCOMPARE(rect->border()->width(),1);
  249. rectPrivate->setState("");
  250. QCOMPARE(rect->color(),QColor("red"));
  251. QCOMPARE(rect->border()->width(),1);
  252. rectPrivate->setState("bordered");
  253. QCOMPARE(rect->color(),QColor("blue"));
  254. QCOMPARE(rect->border()->width(),2);
  255. rectPrivate->setState("");
  256. QCOMPARE(rect->color(),QColor("red"));
  257. QCOMPARE(rect->border()->width(),1);
  258. }
  259. {
  260. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/fakeExtension.qml");
  261. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  262. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  263. QVERIFY(rect != 0);
  264. QCOMPARE(rect->color(),QColor("red"));
  265. rectPrivate->setState("blue");
  266. QCOMPARE(rect->color(),QColor("blue"));
  267. rectPrivate->setState("green");
  268. QCOMPARE(rect->color(),QColor("green"));
  269. rectPrivate->setState("blue");
  270. QCOMPARE(rect->color(),QColor("blue"));
  271. rectPrivate->setState("green");
  272. QCOMPARE(rect->color(),QColor("green"));
  273. rectPrivate->setState("");
  274. QCOMPARE(rect->color(),QColor("red"));
  275. rectPrivate->setState("green");
  276. QCOMPARE(rect->color(),QColor("green"));
  277. }
  278. }
  279. void tst_qdeclarativestates::basicBinding()
  280. {
  281. QDeclarativeEngine engine;
  282. {
  283. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding.qml");
  284. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  285. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  286. QVERIFY(rect != 0);
  287. QCOMPARE(rect->color(),QColor("red"));
  288. rectPrivate->setState("blue");
  289. QCOMPARE(rect->color(),QColor("blue"));
  290. rectPrivate->setState("");
  291. QCOMPARE(rect->color(),QColor("red"));
  292. rectPrivate->setState("blue");
  293. QCOMPARE(rect->color(),QColor("blue"));
  294. rect->setProperty("sourceColor", QColor("green"));
  295. QCOMPARE(rect->color(),QColor("green"));
  296. rectPrivate->setState("");
  297. QCOMPARE(rect->color(),QColor("red"));
  298. rect->setProperty("sourceColor", QColor("yellow"));
  299. QCOMPARE(rect->color(),QColor("red"));
  300. rectPrivate->setState("blue");
  301. QCOMPARE(rect->color(),QColor("yellow"));
  302. }
  303. {
  304. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding2.qml");
  305. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  306. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  307. QVERIFY(rect != 0);
  308. QCOMPARE(rect->color(),QColor("red"));
  309. rectPrivate->setState("blue");
  310. QCOMPARE(rect->color(),QColor("blue"));
  311. rectPrivate->setState("");
  312. QCOMPARE(rect->color(),QColor("red"));
  313. rectPrivate->setState("blue");
  314. QCOMPARE(rect->color(),QColor("blue"));
  315. rect->setProperty("sourceColor", QColor("green"));
  316. QCOMPARE(rect->color(),QColor("blue"));
  317. rectPrivate->setState("");
  318. QCOMPARE(rect->color(),QColor("green"));
  319. rect->setProperty("sourceColor", QColor("yellow"));
  320. QCOMPARE(rect->color(),QColor("yellow"));
  321. rectPrivate->setState("blue");
  322. QCOMPARE(rect->color(),QColor("blue"));
  323. rectPrivate->setState("");
  324. QCOMPARE(rect->color(),QColor("yellow"));
  325. }
  326. {
  327. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding3.qml");
  328. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  329. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  330. QVERIFY(rect != 0);
  331. QCOMPARE(rect->color(),QColor("red"));
  332. rect->setProperty("sourceColor", QColor("green"));
  333. QCOMPARE(rect->color(),QColor("green"));
  334. rectPrivate->setState("blue");
  335. QCOMPARE(rect->color(),QColor("blue"));
  336. rect->setProperty("sourceColor", QColor("red"));
  337. QCOMPARE(rect->color(),QColor("blue"));
  338. rect->setProperty("sourceColor2", QColor("yellow"));
  339. QCOMPARE(rect->color(),QColor("yellow"));
  340. rectPrivate->setState("");
  341. QCOMPARE(rect->color(),QColor("red"));
  342. rect->setProperty("sourceColor2", QColor("green"));
  343. QCOMPARE(rect->color(),QColor("red"));
  344. rect->setProperty("sourceColor", QColor("yellow"));
  345. QCOMPARE(rect->color(),QColor("yellow"));
  346. }
  347. {
  348. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding4.qml");
  349. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  350. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  351. QVERIFY(rect != 0);
  352. QCOMPARE(rect->color(),QColor("red"));
  353. rectPrivate->setState("blue");
  354. QCOMPARE(rect->color(),QColor("blue"));
  355. rect->setProperty("sourceColor", QColor("yellow"));
  356. QCOMPARE(rect->color(),QColor("yellow"));
  357. rectPrivate->setState("green");
  358. QCOMPARE(rect->color(),QColor("green"));
  359. rect->setProperty("sourceColor", QColor("purple"));
  360. QCOMPARE(rect->color(),QColor("green"));
  361. rectPrivate->setState("blue");
  362. QCOMPARE(rect->color(),QColor("purple"));
  363. rectPrivate->setState("green");
  364. QCOMPARE(rect->color(),QColor("green"));
  365. rectPrivate->setState("");
  366. QCOMPARE(rect->color(),QColor("red"));
  367. }
  368. }
  369. void tst_qdeclarativestates::signalOverride()
  370. {
  371. QDeclarativeEngine engine;
  372. {
  373. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/signalOverride.qml");
  374. MyRect *rect = qobject_cast<MyRect*>(rectComponent.create());
  375. QVERIFY(rect != 0);
  376. QCOMPARE(rect->color(),QColor("red"));
  377. rect->doSomething();
  378. QCOMPARE(rect->color(),QColor("blue"));
  379. QDeclarativeItemPrivate::get(rect)->setState("green");
  380. rect->doSomething();
  381. QCOMPARE(rect->color(),QColor("green"));
  382. }
  383. {
  384. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/signalOverride2.qml");
  385. MyRect *rect = qobject_cast<MyRect*>(rectComponent.create());
  386. QVERIFY(rect != 0);
  387. QCOMPARE(rect->color(),QColor("white"));
  388. rect->doSomething();
  389. QCOMPARE(rect->color(),QColor("blue"));
  390. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("extendedRect"));
  391. QDeclarativeItemPrivate::get(innerRect)->setState("green");
  392. rect->doSomething();
  393. QCOMPARE(rect->color(),QColor("blue"));
  394. QCOMPARE(innerRect->color(),QColor("green"));
  395. QCOMPARE(innerRect->property("extendedColor").value<QColor>(),QColor("green"));
  396. }
  397. }
  398. void tst_qdeclarativestates::signalOverrideCrash()
  399. {
  400. QDeclarativeEngine engine;
  401. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/signalOverrideCrash.qml");
  402. MyRect *rect = qobject_cast<MyRect*>(rectComponent.create());
  403. QVERIFY(rect != 0);
  404. QDeclarativeItemPrivate::get(rect)->setState("overridden");
  405. rect->doSomething();
  406. }
  407. void tst_qdeclarativestates::signalOverrideCrash2()
  408. {
  409. QDeclarativeEngine engine;
  410. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/signalOverrideCrash2.qml");
  411. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  412. QVERIFY(rect != 0);
  413. QDeclarativeItemPrivate::get(rect)->setState("state1");
  414. QDeclarativeItemPrivate::get(rect)->setState("state2");
  415. QDeclarativeItemPrivate::get(rect)->setState("state1");
  416. delete rect;
  417. }
  418. void tst_qdeclarativestates::signalOverrideCrash3()
  419. {
  420. QDeclarativeEngine engine;
  421. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/signalOverrideCrash3.qml");
  422. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  423. QVERIFY(rect != 0);
  424. QDeclarativeItemPrivate::get(rect)->setState("state1");
  425. QDeclarativeItemPrivate::get(rect)->setState("");
  426. QDeclarativeItemPrivate::get(rect)->setState("state2");
  427. QDeclarativeItemPrivate::get(rect)->setState("");
  428. delete rect;
  429. }
  430. void tst_qdeclarativestates::parentChange()
  431. {
  432. QDeclarativeEngine engine;
  433. {
  434. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange1.qml");
  435. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  436. QVERIFY(rect != 0);
  437. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  438. QVERIFY(innerRect != 0);
  439. QDeclarativeListReference list(rect, "states");
  440. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  441. QVERIFY(state != 0);
  442. qmlExecuteDeferred(state);
  443. QDeclarativeParentChange *pChange = qobject_cast<QDeclarativeParentChange*>(state->operationAt(0));
  444. QVERIFY(pChange != 0);
  445. QDeclarativeItem *nParent = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("NewParent"));
  446. QVERIFY(nParent != 0);
  447. QCOMPARE(pChange->parent(), nParent);
  448. QDeclarativeItemPrivate::get(rect)->setState("reparented");
  449. QCOMPARE(innerRect->rotation(), qreal(0));
  450. QCOMPARE(innerRect->scale(), qreal(1));
  451. QCOMPARE(innerRect->x(), qreal(-133));
  452. QCOMPARE(innerRect->y(), qreal(-300));
  453. }
  454. {
  455. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange2.qml");
  456. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  457. QVERIFY(rect != 0);
  458. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  459. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  460. QVERIFY(innerRect != 0);
  461. rectPrivate->setState("reparented");
  462. QCOMPARE(innerRect->rotation(), qreal(15));
  463. QCOMPARE(innerRect->scale(), qreal(.5));
  464. QCOMPARE(QString("%1").arg(innerRect->x()), QString("%1").arg(-19.9075));
  465. QCOMPARE(QString("%1").arg(innerRect->y()), QString("%1").arg(-8.73433));
  466. }
  467. {
  468. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange3.qml");
  469. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  470. QVERIFY(rect != 0);
  471. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  472. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  473. QVERIFY(innerRect != 0);
  474. rectPrivate->setState("reparented");
  475. QCOMPARE(innerRect->rotation(), qreal(-37));
  476. QCOMPARE(innerRect->scale(), qreal(.25));
  477. QCOMPARE(QString("%1").arg(innerRect->x()), QString("%1").arg(-217.305));
  478. QCOMPARE(QString("%1").arg(innerRect->y()), QString("%1").arg(-164.413));
  479. rectPrivate->setState("");
  480. QCOMPARE(innerRect->rotation(), qreal(0));
  481. QCOMPARE(innerRect->scale(), qreal(1));
  482. QCOMPARE(innerRect->x(), qreal(5));
  483. //do a non-qFuzzyCompare fuzzy compare
  484. QVERIFY(innerRect->y() < qreal(0.00001) && innerRect->y() > qreal(-0.00001));
  485. }
  486. {
  487. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange6.qml");
  488. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  489. QVERIFY(rect != 0);
  490. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  491. QVERIFY(innerRect != 0);
  492. QDeclarativeItemPrivate::get(rect)->setState("reparented");
  493. QCOMPARE(innerRect->rotation(), qreal(180));
  494. QCOMPARE(innerRect->scale(), qreal(1));
  495. QCOMPARE(innerRect->x(), qreal(-105));
  496. QCOMPARE(innerRect->y(), qreal(-105));
  497. }
  498. }
  499. void tst_qdeclarativestates::parentChangeErrors()
  500. {
  501. QDeclarativeEngine engine;
  502. {
  503. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange4.qml");
  504. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  505. QVERIFY(rect != 0);
  506. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  507. QVERIFY(innerRect != 0);
  508. QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/parentChange4.qml") + ":25:9: QML ParentChange: Unable to preserve appearance under non-uniform scale");
  509. QDeclarativeItemPrivate::get(rect)->setState("reparented");
  510. QCOMPARE(innerRect->rotation(), qreal(0));
  511. QCOMPARE(innerRect->scale(), qreal(1));
  512. QCOMPARE(innerRect->x(), qreal(5));
  513. QCOMPARE(innerRect->y(), qreal(5));
  514. }
  515. {
  516. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange5.qml");
  517. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  518. QVERIFY(rect != 0);
  519. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  520. QVERIFY(innerRect != 0);
  521. QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/parentChange5.qml") + ":25:9: QML ParentChange: Unable to preserve appearance under complex transform");
  522. QDeclarativeItemPrivate::get(rect)->setState("reparented");
  523. QCOMPARE(innerRect->rotation(), qreal(0));
  524. QCOMPARE(innerRect->scale(), qreal(1));
  525. QCOMPARE(innerRect->x(), qreal(5));
  526. QCOMPARE(innerRect->y(), qreal(5));
  527. }
  528. }
  529. void tst_qdeclarativestates::anchorChanges()
  530. {
  531. QDeclarativeEngine engine;
  532. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges1.qml");
  533. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  534. QVERIFY(rect != 0);
  535. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  536. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  537. QVERIFY(innerRect != 0);
  538. QDeclarativeListReference list(rect, "states");
  539. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  540. QVERIFY(state != 0);
  541. qmlExecuteDeferred(state);
  542. QDeclarativeAnchorChanges *aChanges = qobject_cast<QDeclarativeAnchorChanges*>(state->operationAt(0));
  543. QVERIFY(aChanges != 0);
  544. rectPrivate->setState("right");
  545. QCOMPARE(innerRect->x(), qreal(150));
  546. QCOMPARE(aChanges->object(), qobject_cast<QDeclarativeItem*>(innerRect));
  547. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().anchorLine, QDeclarativeAnchorLine::Invalid); //### was reset (how do we distinguish from not set at all)
  548. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().item, rectPrivate->right().item);
  549. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().anchorLine, rectPrivate->right().anchorLine);
  550. rectPrivate->setState("");
  551. QCOMPARE(innerRect->x(), qreal(5));
  552. delete rect;
  553. }
  554. void tst_qdeclarativestates::anchorChanges2()
  555. {
  556. QDeclarativeEngine engine;
  557. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges2.qml");
  558. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  559. QVERIFY(rect != 0);
  560. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  561. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  562. QVERIFY(innerRect != 0);
  563. rectPrivate->setState("right");
  564. QCOMPARE(innerRect->x(), qreal(150));
  565. rectPrivate->setState("");
  566. QCOMPARE(innerRect->x(), qreal(5));
  567. delete rect;
  568. }
  569. void tst_qdeclarativestates::anchorChanges3()
  570. {
  571. QDeclarativeEngine engine;
  572. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges3.qml");
  573. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  574. QVERIFY(rect != 0);
  575. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  576. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  577. QVERIFY(innerRect != 0);
  578. QDeclarativeItem *leftGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("LeftGuideline"));
  579. QVERIFY(leftGuideline != 0);
  580. QDeclarativeItem *bottomGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("BottomGuideline"));
  581. QVERIFY(bottomGuideline != 0);
  582. QDeclarativeListReference list(rect, "states");
  583. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  584. QVERIFY(state != 0);
  585. qmlExecuteDeferred(state);
  586. QDeclarativeAnchorChanges *aChanges = qobject_cast<QDeclarativeAnchorChanges*>(state->operationAt(0));
  587. QVERIFY(aChanges != 0);
  588. rectPrivate->setState("reanchored");
  589. QCOMPARE(aChanges->object(), qobject_cast<QDeclarativeItem*>(innerRect));
  590. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().item, QDeclarativeItemPrivate::get(leftGuideline)->left().item);
  591. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().anchorLine, QDeclarativeItemPrivate::get(leftGuideline)->left().anchorLine);
  592. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().item, rectPrivate->right().item);
  593. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().anchorLine, rectPrivate->right().anchorLine);
  594. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->top().item, rectPrivate->top().item);
  595. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->top().anchorLine, rectPrivate->top().anchorLine);
  596. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->bottom().item, QDeclarativeItemPrivate::get(bottomGuideline)->bottom().item);
  597. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->bottom().anchorLine, QDeclarativeItemPrivate::get(bottomGuideline)->bottom().anchorLine);
  598. QCOMPARE(innerRect->x(), qreal(10));
  599. QCOMPARE(innerRect->y(), qreal(0));
  600. QCOMPARE(innerRect->width(), qreal(190));
  601. QCOMPARE(innerRect->height(), qreal(150));
  602. rectPrivate->setState("");
  603. QCOMPARE(innerRect->x(), qreal(0));
  604. QCOMPARE(innerRect->y(), qreal(10));
  605. QCOMPARE(innerRect->width(), qreal(150));
  606. QCOMPARE(innerRect->height(), qreal(190));
  607. delete rect;
  608. }
  609. void tst_qdeclarativestates::anchorChanges4()
  610. {
  611. QDeclarativeEngine engine;
  612. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges4.qml");
  613. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  614. QVERIFY(rect != 0);
  615. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  616. QVERIFY(innerRect != 0);
  617. QDeclarativeItem *leftGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("LeftGuideline"));
  618. QVERIFY(leftGuideline != 0);
  619. QDeclarativeItem *bottomGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("BottomGuideline"));
  620. QVERIFY(bottomGuideline != 0);
  621. QDeclarativeListReference list(rect, "states");
  622. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  623. QVERIFY(state != 0);
  624. qmlExecuteDeferred(state);
  625. QDeclarativeAnchorChanges *aChanges = qobject_cast<QDeclarativeAnchorChanges*>(state->operationAt(0));
  626. QVERIFY(aChanges != 0);
  627. QDeclarativeItemPrivate::get(rect)->setState("reanchored");
  628. QCOMPARE(aChanges->object(), qobject_cast<QDeclarativeItem*>(innerRect));
  629. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->horizontalCenter().item, QDeclarativeItemPrivate::get(bottomGuideline)->horizontalCenter().item);
  630. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->horizontalCenter().anchorLine, QDeclarativeItemPrivate::get(bottomGuideline)->horizontalCenter().anchorLine);
  631. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->verticalCenter().item, QDeclarativeItemPrivate::get(leftGuideline)->verticalCenter().item);
  632. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->verticalCenter().anchorLine, QDeclarativeItemPrivate::get(leftGuideline)->verticalCenter().anchorLine);
  633. delete rect;
  634. }
  635. void tst_qdeclarativestates::anchorChanges5()
  636. {
  637. QDeclarativeEngine engine;
  638. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges5.qml");
  639. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  640. QVERIFY(rect != 0);
  641. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  642. QVERIFY(innerRect != 0);
  643. QDeclarativeItem *leftGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("LeftGuideline"));
  644. QVERIFY(leftGuideline != 0);
  645. QDeclarativeItem *bottomGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("BottomGuideline"));
  646. QVERIFY(bottomGuideline != 0);
  647. QDeclarativeListReference list(rect, "states");
  648. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  649. QVERIFY(state != 0);
  650. qmlExecuteDeferred(state);
  651. QDeclarativeAnchorChanges *aChanges = qobject_cast<QDeclarativeAnchorChanges*>(state->operationAt(0));
  652. QVERIFY(aChanges != 0);
  653. QDeclarativeItemPrivate::get(rect)->setState("reanchored");
  654. QCOMPARE(aChanges->object(), qobject_cast<QDeclarativeItem*>(innerRect));
  655. //QCOMPARE(aChanges->anchors()->horizontalCenter().item, bottomGuideline->horizontalCenter().item);
  656. //QCOMPARE(aChanges->anchors()->horizontalCenter().anchorLine, bottomGuideline->horizontalCenter().anchorLine);
  657. //QCOMPARE(aChanges->anchors()->baseline().item, leftGuideline->baseline().item);
  658. //QCOMPARE(aChanges->anchors()->baseline().anchorLine, leftGuideline->baseline().anchorLine);
  659. delete rect;
  660. }
  661. void mirrorAnchors(QDeclarativeItem *item) {
  662. QDeclarativeItemPrivate *itemPrivate = QDeclarativeItemPrivate::get(item);
  663. itemPrivate->setLayoutMirror(true);
  664. }
  665. qreal offsetRTL(QDeclarativeItem *anchorItem, QDeclarativeItem *item) {
  666. return anchorItem->width()+2*anchorItem->x()-item->width();
  667. }
  668. void tst_qdeclarativestates::anchorChangesRTL()
  669. {
  670. QDeclarativeEngine engine;
  671. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges1.qml");
  672. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  673. QVERIFY(rect != 0);
  674. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  675. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  676. QVERIFY(innerRect != 0);
  677. mirrorAnchors(innerRect);
  678. QDeclarativeListReference list(rect, "states");
  679. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  680. QVERIFY(state != 0);
  681. qmlExecuteDeferred(state);
  682. QDeclarativeAnchorChanges *aChanges = qobject_cast<QDeclarativeAnchorChanges*>(state->operationAt(0));
  683. QVERIFY(aChanges != 0);
  684. rectPrivate->setState("right");
  685. QCOMPARE(innerRect->x(), offsetRTL(rect, innerRect) - qreal(150));
  686. QCOMPARE(aChanges->object(), qobject_cast<QDeclarativeItem*>(innerRect));
  687. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().anchorLine, QDeclarativeAnchorLine::Invalid); //### was reset (how do we distinguish from not set at all)
  688. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().item, rectPrivate->right().item);
  689. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().anchorLine, rectPrivate->right().anchorLine);
  690. rectPrivate->setState("");
  691. QCOMPARE(innerRect->x(), offsetRTL(rect, innerRect) -qreal(5));
  692. delete rect;
  693. }
  694. void tst_qdeclarativestates::anchorChangesRTL2()
  695. {
  696. QDeclarativeEngine engine;
  697. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges2.qml");
  698. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  699. QVERIFY(rect != 0);
  700. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  701. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  702. QVERIFY(innerRect != 0);
  703. mirrorAnchors(innerRect);
  704. rectPrivate->setState("right");
  705. QCOMPARE(innerRect->x(), offsetRTL(rect, innerRect) - qreal(150));
  706. rectPrivate->setState("");
  707. QCOMPARE(innerRect->x(), offsetRTL(rect, innerRect) - qreal(5));
  708. delete rect;
  709. }
  710. void tst_qdeclarativestates::anchorChangesRTL3()
  711. {
  712. QDeclarativeEngine engine;
  713. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges3.qml");
  714. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  715. QVERIFY(rect != 0);
  716. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  717. QDeclarativeRectangle *innerRect = qobject_cast<QDeclarativeRectangle*>(rect->findChild<QDeclarativeRectangle*>("MyRect"));
  718. QVERIFY(innerRect != 0);
  719. mirrorAnchors(innerRect);
  720. QDeclarativeItem *leftGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("LeftGuideline"));
  721. QVERIFY(leftGuideline != 0);
  722. QDeclarativeItem *bottomGuideline = qobject_cast<QDeclarativeItem*>(rect->findChild<QDeclarativeItem*>("BottomGuideline"));
  723. QVERIFY(bottomGuideline != 0);
  724. QDeclarativeListReference list(rect, "states");
  725. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  726. QVERIFY(state != 0);
  727. qmlExecuteDeferred(state);
  728. QDeclarativeAnchorChanges *aChanges = qobject_cast<QDeclarativeAnchorChanges*>(state->operationAt(0));
  729. QVERIFY(aChanges != 0);
  730. rectPrivate->setState("reanchored");
  731. QCOMPARE(aChanges->object(), qobject_cast<QDeclarativeItem*>(innerRect));
  732. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().item, QDeclarativeItemPrivate::get(leftGuideline)->left().item);
  733. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().anchorLine, QDeclarativeItemPrivate::get(leftGuideline)->left().anchorLine);
  734. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().item, rectPrivate->right().item);
  735. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().anchorLine, rectPrivate->right().anchorLine);
  736. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->top().item, rectPrivate->top().item);
  737. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->top().anchorLine, rectPrivate->top().anchorLine);
  738. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->bottom().item, QDeclarativeItemPrivate::get(bottomGuideline)->bottom().item);
  739. QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->bottom().anchorLine, QDeclarativeItemPrivate::get(bottomGuideline)->bottom().anchorLine);
  740. QCOMPARE(innerRect->x(), offsetRTL(leftGuideline, innerRect) - qreal(10));
  741. QCOMPARE(innerRect->y(), qreal(0));
  742. // between left side of parent and leftGuideline.x: 10, which has width 0
  743. QCOMPARE(innerRect->width(), qreal(10));
  744. QCOMPARE(innerRect->height(), qreal(150));
  745. rectPrivate->setState("");
  746. QCOMPARE(innerRect->x(), offsetRTL(rect, innerRect) - qreal(0));
  747. QCOMPARE(innerRect->y(), qreal(10));
  748. // between right side of parent and left side of rightGuideline.x: 150, which has width 0
  749. QCOMPARE(innerRect->width(), qreal(50));
  750. QCOMPARE(innerRect->height(), qreal(190));
  751. delete rect;
  752. }
  753. //QTBUG-9609
  754. void tst_qdeclarativestates::anchorChangesCrash()
  755. {
  756. QDeclarativeEngine engine;
  757. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChangesCrash.qml");
  758. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  759. QVERIFY(rect != 0);
  760. QDeclarativeItemPrivate::get(rect)->setState("reanchored");
  761. delete rect;
  762. }
  763. // QTBUG-12273
  764. void tst_qdeclarativestates::anchorRewindBug()
  765. {
  766. QDeclarativeEngine engine;
  767. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorRewindBug.qml");
  768. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  769. QVERIFY(rect != 0);
  770. QDeclarativeItem * column = rect->findChild<QDeclarativeItem*>("column");
  771. QVERIFY(column != 0);
  772. QVERIFY(!QDeclarativeItemPrivate::get(column)->heightValid);
  773. QVERIFY(!QDeclarativeItemPrivate::get(column)->widthValid);
  774. QCOMPARE(column->height(), 200.0);
  775. QDeclarativeItemPrivate::get(rect)->setState("reanchored");
  776. // column height and width should stay implicit
  777. // and column's implicit resizing should still work
  778. QVERIFY(!QDeclarativeItemPrivate::get(column)->heightValid);
  779. QVERIFY(!QDeclarativeItemPrivate::get(column)->widthValid);
  780. QCOMPARE(column->height(), 100.0);
  781. QDeclarativeItemPrivate::get(rect)->setState("");
  782. // column height and width should stay implicit
  783. // and column's implicit resizing should still work
  784. QVERIFY(!QDeclarativeItemPrivate::get(column)->heightValid);
  785. QVERIFY(!QDeclarativeItemPrivate::get(column)->widthValid);
  786. QCOMPARE(column->height(), 200.0);
  787. delete rect;
  788. }
  789. // QTBUG-11834
  790. void tst_qdeclarativestates::anchorRewindBug2()
  791. {
  792. QDeclarativeEngine engine;
  793. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorRewindBug2.qml");
  794. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  795. QVERIFY(rect != 0);
  796. QDeclarativeRectangle *mover = rect->findChild<QDeclarativeRectangle*>("mover");
  797. QVERIFY(mover != 0);
  798. QCOMPARE(mover->y(), qreal(0.0));
  799. QCOMPARE(mover->width(), qreal(50.0));
  800. QDeclarativeItemPrivate::get(rect)->setState("anchored");
  801. QCOMPARE(mover->y(), qreal(250.0));
  802. QCOMPARE(mover->width(), qreal(200.0));
  803. QDeclarativeItemPrivate::get(rect)->setState("");
  804. QCOMPARE(mover->y(), qreal(0.0));
  805. QCOMPARE(mover->width(), qreal(50.0));
  806. delete rect;
  807. }
  808. void tst_qdeclarativestates::script()
  809. {
  810. QDeclarativeEngine engine;
  811. {
  812. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/script.qml");
  813. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  814. QVERIFY(rect != 0);
  815. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  816. QCOMPARE(rect->color(),QColor("red"));
  817. rectPrivate->setState("blue");
  818. QCOMPARE(rect->color(),QColor("blue"));
  819. rectPrivate->setState("");
  820. QCOMPARE(rect->color(),QColor("blue")); // a script isn't reverted
  821. }
  822. }
  823. void tst_qdeclarativestates::restoreEntryValues()
  824. {
  825. QDeclarativeEngine engine;
  826. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/restoreEntryValues.qml");
  827. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  828. QVERIFY(rect != 0);
  829. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  830. QCOMPARE(rect->color(),QColor("red"));
  831. rectPrivate->setState("blue");
  832. QCOMPARE(rect->color(),QColor("blue"));
  833. rectPrivate->setState("");
  834. QCOMPARE(rect->color(),QColor("blue"));
  835. }
  836. void tst_qdeclarativestates::explicitChanges()
  837. {
  838. QDeclarativeEngine engine;
  839. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/explicit.qml");
  840. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  841. QVERIFY(rect != 0);
  842. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  843. QDeclarativeListReference list(rect, "states");
  844. QDeclarativeState *state = qobject_cast<QDeclarativeState*>(list.at(0));
  845. QVERIFY(state != 0);
  846. qmlExecuteDeferred(state);
  847. QDeclarativePropertyChanges *changes = qobject_cast<QDeclarativePropertyChanges*>(rect->findChild<QDeclarativePropertyChanges*>("changes"));
  848. QVERIFY(changes != 0);
  849. QVERIFY(changes->isExplicit());
  850. QCOMPARE(rect->color(),QColor("red"));
  851. rectPrivate->setState("blue");
  852. QCOMPARE(rect->color(),QColor("blue"));
  853. rect->setProperty("sourceColor", QColor("green"));
  854. QCOMPARE(rect->color(),QColor("blue"));
  855. rectPrivate->setState("");
  856. QCOMPARE(rect->color(),QColor("red"));
  857. rect->setProperty("sourceColor", QColor("yellow"));
  858. QCOMPARE(rect->color(),QColor("red"));
  859. rectPrivate->setState("blue");
  860. QCOMPARE(rect->color(),QColor("yellow"));
  861. }
  862. void tst_qdeclarativestates::propertyErrors()
  863. {
  864. QDeclarativeEngine engine;
  865. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/propertyErrors.qml");
  866. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  867. QVERIFY(rect != 0);
  868. QCOMPARE(rect->color(),QColor("red"));
  869. QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/propertyErrors.qml") + ":8:9: QML PropertyChanges: Cannot assign to non-existent property \"colr\"");
  870. QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/propertyErrors.qml") + ":8:9: QML PropertyChanges: Cannot assign to read-only property \"activeFocus\"");
  871. QDeclarativeItemPrivate::get(rect)->setState("blue");
  872. }
  873. void tst_qdeclarativestates::incorrectRestoreBug()
  874. {
  875. QDeclarativeEngine engine;
  876. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges.qml");
  877. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  878. QVERIFY(rect != 0);
  879. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  880. QCOMPARE(rect->color(),QColor("red"));
  881. rectPrivate->setState("blue");
  882. QCOMPARE(rect->color(),QColor("blue"));
  883. rectPrivate->setState("");
  884. QCOMPARE(rect->color(),QColor("red"));
  885. // make sure if we change the base state value, we then restore to it correctly
  886. rect->setColor(QColor("green"));
  887. rectPrivate->setState("blue");
  888. QCOMPARE(rect->color(),QColor("blue"));
  889. rectPrivate->setState("");
  890. QCOMPARE(rect->color(),QColor("green"));
  891. }
  892. void tst_qdeclarativestates::autoStateAtStartupRestoreBug()
  893. {
  894. QDeclarativeEngine engine;
  895. QDeclarativeComponent component(&engine, SRCDIR "/data/autoStateAtStartupRestoreBug.qml");
  896. QObject *obj = component.create();
  897. QVERIFY(obj != 0);
  898. QCOMPARE(obj->property("test").toInt(), 3);
  899. obj->setProperty("input", 2);
  900. QCOMPARE(obj->property("test").toInt(), 9);
  901. delete obj;
  902. }
  903. void tst_qdeclarativestates::deletingChange()
  904. {
  905. QDeclarativeEngine engine;
  906. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/deleting.qml");
  907. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  908. QVERIFY(rect != 0);
  909. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  910. rectPrivate->setState("blue");
  911. QCOMPARE(rect->color(),QColor("blue"));
  912. QCOMPARE(rect->radius(),qreal(5));
  913. rectPrivate->setState("");
  914. QCOMPARE(rect->color(),QColor("red"));
  915. QCOMPARE(rect->radius(),qreal(0));
  916. QDeclarativePropertyChanges *pc = rect->findChild<QDeclarativePropertyChanges*>("pc1");
  917. QVERIFY(pc != 0);
  918. delete pc;
  919. QDeclarativeState *state = rect->findChild<QDeclarativeState*>();
  920. QVERIFY(state != 0);
  921. qmlExecuteDeferred(state);
  922. QCOMPARE(state->operationCount(), 1);
  923. rectPrivate->setState("blue");
  924. QCOMPARE(rect->color(),QColor("red"));
  925. QCOMPARE(rect->radius(),qreal(5));
  926. delete rect;
  927. }
  928. void tst_qdeclarativestates::deletingState()
  929. {
  930. QDeclarativeEngine engine;
  931. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/deletingState.qml");
  932. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  933. QVERIFY(rect != 0);
  934. QDeclarativeStateGroup *sg = rect->findChild<QDeclarativeStateGroup*>();
  935. QVERIFY(sg != 0);
  936. QVERIFY(sg->findState("blue") != 0);
  937. sg->setState("blue");
  938. QCOMPARE(rect->color(),QColor("blue"));
  939. sg->setState("");
  940. QCOMPARE(rect->color(),QColor("red"));
  941. QDeclarativeState *state = rect->findChild<QDeclarativeState*>();
  942. QVERIFY(state != 0);
  943. delete state;
  944. QVERIFY(sg->findState("blue") == 0);
  945. //### should we warn that state doesn't exist
  946. sg->setState("blue");
  947. QCOMPARE(rect->color(),QColor("red"));
  948. delete rect;
  949. }
  950. void tst_qdeclarativestates::tempState()
  951. {
  952. QDeclarativeEngine engine;
  953. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/legalTempState.qml");
  954. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  955. QVERIFY(rect != 0);
  956. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  957. QTest::ignoreMessage(QtDebugMsg, "entering placed");
  958. QTest::ignoreMessage(QtDebugMsg, "entering idle");
  959. rectPrivate->setState("placed");
  960. QCOMPARE(rectPrivate->state(), QLatin1String("idle"));
  961. }
  962. void tst_qdeclarativestates::illegalTempState()
  963. {
  964. QDeclarativeEngine engine;
  965. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/illegalTempState.qml");
  966. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  967. QVERIFY(rect != 0);
  968. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  969. QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: QML StateGroup: Can't apply a state change as part of a state definition.");
  970. rectPrivate->setState("placed");
  971. QCOMPARE(rectPrivate->state(), QLatin1String("placed"));
  972. }
  973. void tst_qdeclarativestates::nonExistantProperty()
  974. {
  975. QDeclarativeEngine engine;
  976. QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/nonExistantProp.qml");
  977. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(rectComponent.create());
  978. QVERIFY(rect != 0);
  979. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  980. QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/nonExistantProp.qml") + ":9:9: QML PropertyChanges: Cannot assign to non-existent property \"colr\"");
  981. rectPrivate->setState("blue");
  982. QCOMPARE(rectPrivate->state(), QLatin1String("blue"));
  983. }
  984. void tst_qdeclarativestates::reset()
  985. {
  986. QDeclarativeEngine engine;
  987. QDeclarativeComponent c(&engine, SRCDIR "/data/reset.qml");
  988. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  989. QVERIFY(rect != 0);
  990. QDeclarativeImage *image = rect->findChild<QDeclarativeImage*>();
  991. QVERIFY(image != 0);
  992. QCOMPARE(image->width(), qreal(40.));
  993. QCOMPARE(image->height(), qreal(20.));
  994. QDeclarativeItemPrivate::get(rect)->setState("state1");
  995. QCOMPARE(image->width(), 20.0);
  996. QCOMPARE(image->height(), qreal(20.));
  997. }
  998. void tst_qdeclarativestates::illegalObjectCreation()
  999. {
  1000. QDeclarativeEngine engine;
  1001. QDeclarativeComponent component(&engine, SRCDIR "/data/illegalObj.qml");
  1002. QList<QDeclarativeError> errors = component.errors();
  1003. QVERIFY(errors.count() == 1);
  1004. const QDeclarativeError &error = errors.at(0);
  1005. QCOMPARE(error.line(), 9);
  1006. QCOMPARE(error.column(), 23);
  1007. QCOMPARE(error.description().toUtf8().constData(), "PropertyChanges does not support creating state-specific objects.");
  1008. }
  1009. void tst_qdeclarativestates::whenOrdering()
  1010. {
  1011. QDeclarativeEngine engine;
  1012. QDeclarativeComponent c(&engine, SRCDIR "/data/whenOrdering.qml");
  1013. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1014. QVERIFY(rect != 0);
  1015. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  1016. QCOMPARE(rectPrivate->state(), QLatin1String(""));
  1017. rect->setProperty("condition2", true);
  1018. QCOMPARE(rectPrivate->state(), QLatin1String("state2"));
  1019. rect->setProperty("condition1", true);
  1020. QCOMPARE(rectPrivate->state(), QLatin1String("state1"));
  1021. rect->setProperty("condition2", false);
  1022. QCOMPARE(rectPrivate->state(), QLatin1String("state1"));
  1023. rect->setProperty("condition2", true);
  1024. QCOMPARE(rectPrivate->state(), QLatin1String("state1"));
  1025. rect->setProperty("condition1", false);
  1026. rect->setProperty("condition2", false);
  1027. QCOMPARE(rectPrivate->state(), QLatin1String(""));
  1028. }
  1029. void tst_qdeclarativestates::urlResolution()
  1030. {
  1031. QDeclarativeEngine engine;
  1032. QDeclarativeComponent c(&engine, SRCDIR "/data/urlResolution.qml");
  1033. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1034. QVERIFY(rect != 0);
  1035. QDeclarativeItem *myType = rect->findChild<QDeclarativeItem*>("MyType");
  1036. QDeclarativeImage *image1 = rect->findChild<QDeclarativeImage*>("image1");
  1037. QDeclarativeImage *image2 = rect->findChild<QDeclarativeImage*>("image2");
  1038. QDeclarativeImage *image3 = rect->findChild<QDeclarativeImage*>("image3");
  1039. QVERIFY(myType != 0 && image1 != 0 && image2 != 0 && image3 != 0);
  1040. QDeclarativeItemPrivate::get(myType)->setState("SetImageState");
  1041. QUrl resolved = QUrl::fromLocalFile(SRCDIR "/data/Implementation/images/qt-logo.png");
  1042. QCOMPARE(image1->source(), resolved);
  1043. QCOMPARE(image2->source(), resolved);
  1044. QCOMPARE(image3->source(), resolved);
  1045. }
  1046. void tst_qdeclarativestates::unnamedWhen()
  1047. {
  1048. QDeclarativeEngine engine;
  1049. QDeclarativeComponent c(&engine, SRCDIR "/data/unnamedWhen.qml");
  1050. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1051. QVERIFY(rect != 0);
  1052. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  1053. QCOMPARE(rectPrivate->state(), QLatin1String(""));
  1054. QCOMPARE(rect->property("stateString").toString(), QLatin1String(""));
  1055. rect->setProperty("triggerState", true);
  1056. QCOMPARE(rectPrivate->state(), QLatin1String("anonymousState1"));
  1057. QCOMPARE(rect->property("stateString").toString(), QLatin1String("inState"));
  1058. rect->setProperty("triggerState", false);
  1059. QCOMPARE(rectPrivate->state(), QLatin1String(""));
  1060. QCOMPARE(rect->property("stateString").toString(), QLatin1String(""));
  1061. }
  1062. void tst_qdeclarativestates::returnToBase()
  1063. {
  1064. QDeclarativeEngine engine;
  1065. QDeclarativeComponent c(&engine, SRCDIR "/data/returnToBase.qml");
  1066. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1067. QVERIFY(rect != 0);
  1068. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  1069. QCOMPARE(rectPrivate->state(), QLatin1String(""));
  1070. QCOMPARE(rect->property("stateString").toString(), QLatin1String(""));
  1071. rect->setProperty("triggerState", true);
  1072. QCOMPARE(rectPrivate->state(), QLatin1String("anonymousState1"));
  1073. QCOMPARE(rect->property("stateString").toString(), QLatin1String("inState"));
  1074. rect->setProperty("triggerState", false);
  1075. QCOMPARE(rectPrivate->state(), QLatin1String(""));
  1076. QCOMPARE(rect->property("stateString").toString(), QLatin1String("originalState"));
  1077. }
  1078. //QTBUG-12559
  1079. void tst_qdeclarativestates::extendsBug()
  1080. {
  1081. QDeclarativeEngine engine;
  1082. QDeclarativeComponent c(&engine, SRCDIR "/data/extendsBug.qml");
  1083. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1084. QVERIFY(rect != 0);
  1085. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  1086. QDeclarativeRectangle *greenRect = rect->findChild<QDeclarativeRectangle*>("greenRect");
  1087. rectPrivate->setState("b");
  1088. QCOMPARE(greenRect->x(), qreal(100));
  1089. QCOMPARE(greenRect->y(), qreal(100));
  1090. }
  1091. void tst_qdeclarativestates::editProperties()
  1092. {
  1093. QDeclarativeEngine engine;
  1094. QDeclarativeComponent c(&engine, SRCDIR "/data/editProperties.qml");
  1095. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1096. QVERIFY(rect != 0);
  1097. QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect);
  1098. QDeclarativeStateGroup *stateGroup = rectPrivate->_states();
  1099. QVERIFY(stateGroup != 0);
  1100. qmlExecuteDeferred(stateGroup);
  1101. QDeclarativeState *blueState = stateGroup->findState("blue");
  1102. QVERIFY(blueState != 0);
  1103. qmlExecuteDeferred(blueState);
  1104. QDeclarativePropertyChanges *propertyChangesBlue = qobject_cast<QDeclarativePropertyChanges*>(blueState->operationAt(0));
  1105. QVERIFY(propertyChangesBlue != 0);
  1106. QDeclarativeState *greenState = stateGroup->findState("green");
  1107. QVERIFY(greenState != 0);
  1108. qmlExecuteDeferred(greenState);
  1109. QDeclarativePropertyChanges *propertyChangesGreen = qobject_cast<QDeclarativePropertyChanges*>(greenState->operationAt(0));
  1110. QVERIFY(propertyChangesGreen != 0);
  1111. QDeclarativeRectangle *childRect = rect->findChild<QDeclarativeRectangle*>("rect2");
  1112. QVERIFY(childRect != 0);
  1113. QCOMPARE(childRect->width(), qreal(402));
  1114. QVERIFY(QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1115. QCOMPARE(childRect->height(), qreal(200));
  1116. rectPrivate->setState("blue");
  1117. QCOMPARE(childRect->width(), qreal(50));
  1118. QCOMPARE(childRect->height(), qreal(40));
  1119. QVERIFY(!QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1120. QVERIFY(blueState->bindingInRevertList(childRect, "width"));
  1121. rectPrivate->setState("green");
  1122. QCOMPARE(childRect->width(), qreal(200));
  1123. QCOMPARE(childRect->height(), qreal(100));
  1124. QVERIFY(greenState->bindingInRevertList(childRect, "width"));
  1125. rectPrivate->setState("");
  1126. QCOMPARE(propertyChangesBlue->actions().length(), 2);
  1127. QVERIFY(propertyChangesBlue->containsValue("width"));
  1128. QVERIFY(!propertyChangesBlue->containsProperty("x"));
  1129. QCOMPARE(propertyChangesBlue->value("width").toInt(), 50);
  1130. QVERIFY(!propertyChangesBlue->value("x").isValid());
  1131. propertyChangesBlue->changeValue("width", 60);
  1132. QCOMPARE(propertyChangesBlue->value("width").toInt(), 60);
  1133. QCOMPARE(propertyChangesBlue->actions().length(), 2);
  1134. propertyChangesBlue->changeExpression("width", "myRectangle.width / 2");
  1135. QVERIFY(!propertyChangesBlue->containsValue("width"));
  1136. QVERIFY(propertyChangesBlue->containsExpression("width"));
  1137. QCOMPARE(propertyChangesBlue->value("width").toInt(), 0);
  1138. QCOMPARE(propertyChangesBlue->actions().length(), 2);
  1139. propertyChangesBlue->changeValue("width", 50);
  1140. QVERIFY(propertyChangesBlue->containsValue("width"));
  1141. QVERIFY(!propertyChangesBlue->containsExpression("width"));
  1142. QCOMPARE(propertyChangesBlue->value("width").toInt(), 50);
  1143. QCOMPARE(propertyChangesBlue->actions().length(), 2);
  1144. QVERIFY(QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1145. rectPrivate->setState("blue");
  1146. QCOMPARE(childRect->width(), qreal(50));
  1147. QCOMPARE(childRect->height(), qreal(40));
  1148. propertyChangesBlue->changeValue("width", 60);
  1149. QCOMPARE(propertyChangesBlue->value("width").toInt(), 60);
  1150. QCOMPARE(propertyChangesBlue->actions().length(), 2);
  1151. QCOMPARE(childRect->width(), qreal(60));
  1152. QVERIFY(!QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1153. propertyChangesBlue->changeExpression("width", "myRectangle.width / 2");
  1154. QVERIFY(!propertyChangesBlue->containsValue("width"));
  1155. QVERIFY(propertyChangesBlue->containsExpression("width"));
  1156. QCOMPARE(propertyChangesBlue->value("width").toInt(), 0);
  1157. QCOMPARE(propertyChangesBlue->actions().length(), 2);
  1158. QVERIFY(QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1159. QCOMPARE(childRect->width(), qreal(200));
  1160. propertyChangesBlue->changeValue("width", 50);
  1161. QCOMPARE(childRect->width(), qreal(50));
  1162. rectPrivate->setState("");
  1163. QCOMPARE(childRect->width(), qreal(402));
  1164. QVERIFY(QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1165. QCOMPARE(propertyChangesGreen->actions().length(), 2);
  1166. rectPrivate->setState("green");
  1167. QCOMPARE(childRect->width(), qreal(200));
  1168. QCOMPARE(childRect->height(), qreal(100));
  1169. QVERIFY(QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1170. QVERIFY(greenState->bindingInRevertList(childRect, "width"));
  1171. QCOMPARE(propertyChangesGreen->actions().length(), 2);
  1172. propertyChangesGreen->removeProperty("height");
  1173. QVERIFY(!QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "height")));
  1174. QCOMPARE(childRect->height(), qreal(200));
  1175. QVERIFY(greenState->bindingInRevertList(childRect, "width"));
  1176. QVERIFY(greenState->containsPropertyInRevertList(childRect, "width"));
  1177. propertyChangesGreen->removeProperty("width");
  1178. QVERIFY(QDeclarativePropertyPrivate::binding(QDeclarativeProperty(childRect, "width")));
  1179. QCOMPARE(childRect->width(), qreal(402));
  1180. QVERIFY(!greenState->bindingInRevertList(childRect, "width"));
  1181. QVERIFY(!greenState->containsPropertyInRevertList(childRect, "width"));
  1182. propertyChangesBlue->removeProperty("width");
  1183. QCOMPARE(childRect->width(), qreal(402));
  1184. rectPrivate->setState("blue");
  1185. QCOMPARE(childRect->width(), qreal(402));
  1186. QCOMPARE(childRect->height(), qreal(40));
  1187. }
  1188. void tst_qdeclarativestates::QTBUG_14830()
  1189. {
  1190. QDeclarativeEngine engine;
  1191. QDeclarativeComponent c(&engine, SRCDIR "/data/QTBUG-14830.qml");
  1192. QDeclarativeRectangle *rect = qobject_cast<QDeclarativeRectangle*>(c.create());
  1193. QVERIFY(rect != 0);
  1194. QDeclarativeItem *item = rect->findChild<QDeclarativeItem*>("area");
  1195. QCOMPARE(item->width(), qreal(171));
  1196. }
  1197. QTEST_MAIN(tst_qdeclarativestates)
  1198. #include "tst_qdeclarativestates.moc"