/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp

https://bitbucket.org/ultra_iter/qt-vtl · C++ · 1494 lines · 1172 code · 232 blank · 90 comment · 163 complexity · cc4045c1a59c80492b2b7df7898c8eac 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 <QtDeclarative/qdeclarativeproperty.h>
  45. #include <QtDeclarative/private/qdeclarativeproperty_p.h>
  46. #include <private/qdeclarativebinding_p.h>
  47. #include <QtGui/QLineEdit>
  48. #include <QtCore/qfileinfo.h>
  49. #include <QtCore/qdir.h>
  50. #ifdef Q_OS_SYMBIAN
  51. // In Symbian OS test data is located in applications private dir
  52. #define SRCDIR "."
  53. #endif
  54. inline QUrl TEST_FILE(const QString &filename)
  55. {
  56. QFileInfo fileInfo(__FILE__);
  57. return QUrl::fromLocalFile(fileInfo.absoluteDir().filePath(QLatin1String("data/") + filename));
  58. }
  59. class MyQmlObject : public QObject
  60. {
  61. Q_OBJECT
  62. public:
  63. MyQmlObject() {}
  64. };
  65. QML_DECLARE_TYPE(MyQmlObject);
  66. class MyAttached : public QObject
  67. {
  68. Q_OBJECT
  69. Q_PROPERTY(int foo READ foo WRITE setFoo)
  70. public:
  71. MyAttached(QObject *parent) : QObject(parent), m_foo(13) {}
  72. int foo() const { return m_foo; }
  73. void setFoo(int f) { m_foo = f; }
  74. private:
  75. int m_foo;
  76. };
  77. class MyContainer : public QObject
  78. {
  79. Q_OBJECT
  80. Q_PROPERTY(QDeclarativeListProperty<MyQmlObject> children READ children)
  81. public:
  82. MyContainer() {}
  83. QDeclarativeListProperty<MyQmlObject> children() { return QDeclarativeListProperty<MyQmlObject>(this, m_children); }
  84. static MyAttached *qmlAttachedProperties(QObject *o) {
  85. return new MyAttached(o);
  86. }
  87. private:
  88. QList<MyQmlObject*> m_children;
  89. };
  90. QML_DECLARE_TYPE(MyContainer);
  91. QML_DECLARE_TYPEINFO(MyContainer, QML_HAS_ATTACHED_PROPERTIES)
  92. class tst_qdeclarativeproperty : public QObject
  93. {
  94. Q_OBJECT
  95. public:
  96. tst_qdeclarativeproperty() {}
  97. private slots:
  98. void initTestCase();
  99. // Constructors
  100. void qmlmetaproperty();
  101. void qmlmetaproperty_object();
  102. void qmlmetaproperty_object_string();
  103. void qmlmetaproperty_object_context();
  104. void qmlmetaproperty_object_string_context();
  105. // Methods
  106. void name();
  107. void read();
  108. void write();
  109. void reset();
  110. // Functionality
  111. void writeObjectToList();
  112. void writeListToList();
  113. //writeToReadOnly();
  114. // Bugs
  115. void crashOnValueProperty();
  116. void aliasPropertyBindings();
  117. void copy();
  118. private:
  119. QDeclarativeEngine engine;
  120. };
  121. void tst_qdeclarativeproperty::qmlmetaproperty()
  122. {
  123. QDeclarativeProperty prop;
  124. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  125. QVERIFY(binding != 0);
  126. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  127. QVERIFY(expression != 0);
  128. QObject *obj = new QObject;
  129. QCOMPARE(prop.name(), QString());
  130. QCOMPARE(prop.read(), QVariant());
  131. QCOMPARE(prop.write(QVariant()), false);
  132. QCOMPARE(prop.hasNotifySignal(), false);
  133. QCOMPARE(prop.needsNotifySignal(), false);
  134. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  135. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  136. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  137. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  138. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  139. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  140. QVERIFY(prop.method().signature() == 0);
  141. QCOMPARE(prop.type(), QDeclarativeProperty::Invalid);
  142. QCOMPARE(prop.isProperty(), false);
  143. QCOMPARE(prop.isWritable(), false);
  144. QCOMPARE(prop.isDesignable(), false);
  145. QCOMPARE(prop.isResettable(), false);
  146. QCOMPARE(prop.isSignalProperty(), false);
  147. QCOMPARE(prop.isValid(), false);
  148. QCOMPARE(prop.object(), (QObject *)0);
  149. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  150. QCOMPARE(prop.propertyType(), 0);
  151. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  152. QVERIFY(prop.property().name() == 0);
  153. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  154. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  155. QVERIFY(binding == 0);
  156. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  157. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  158. QVERIFY(expression == 0);
  159. QCOMPARE(prop.index(), -1);
  160. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  161. delete obj;
  162. }
  163. class PropertyObject : public QObject
  164. {
  165. Q_OBJECT
  166. Q_PROPERTY(int defaultProperty READ defaultProperty)
  167. Q_PROPERTY(QRect rectProperty READ rectProperty)
  168. Q_PROPERTY(QRect wrectProperty READ wrectProperty WRITE setWRectProperty)
  169. Q_PROPERTY(QUrl url READ url WRITE setUrl)
  170. Q_PROPERTY(int resettableProperty READ resettableProperty WRITE setResettableProperty RESET resetProperty)
  171. Q_PROPERTY(int propertyWithNotify READ propertyWithNotify WRITE setPropertyWithNotify NOTIFY oddlyNamedNotifySignal)
  172. Q_PROPERTY(MyQmlObject *qmlObject READ qmlObject)
  173. Q_CLASSINFO("DefaultProperty", "defaultProperty")
  174. public:
  175. PropertyObject() : m_resetProperty(9) {}
  176. int defaultProperty() { return 10; }
  177. QRect rectProperty() { return QRect(10, 10, 1, 209); }
  178. QRect wrectProperty() { return m_rect; }
  179. void setWRectProperty(const QRect &r) { m_rect = r; }
  180. QUrl url() { return m_url; }
  181. void setUrl(const QUrl &u) { m_url = u; }
  182. int resettableProperty() const { return m_resetProperty; }
  183. void setResettableProperty(int r) { m_resetProperty = r; }
  184. void resetProperty() { m_resetProperty = 9; }
  185. int propertyWithNotify() const { return m_propertyWithNotify; }
  186. void setPropertyWithNotify(int i) { m_propertyWithNotify = i; emit oddlyNamedNotifySignal(); }
  187. MyQmlObject *qmlObject() { return &m_qmlObject; }
  188. signals:
  189. void clicked();
  190. void oddlyNamedNotifySignal();
  191. private:
  192. int m_resetProperty;
  193. QRect m_rect;
  194. QUrl m_url;
  195. int m_propertyWithNotify;
  196. MyQmlObject m_qmlObject;
  197. };
  198. QML_DECLARE_TYPE(PropertyObject);
  199. void tst_qdeclarativeproperty::qmlmetaproperty_object()
  200. {
  201. QObject object; // Has no default property
  202. PropertyObject dobject; // Has default property
  203. {
  204. QDeclarativeProperty prop(&object);
  205. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  206. QVERIFY(binding != 0);
  207. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  208. QVERIFY(expression != 0);
  209. QObject *obj = new QObject;
  210. QCOMPARE(prop.name(), QString());
  211. QCOMPARE(prop.read(), QVariant());
  212. QCOMPARE(prop.write(QVariant()), false);
  213. QCOMPARE(prop.hasNotifySignal(), false);
  214. QCOMPARE(prop.needsNotifySignal(), false);
  215. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  216. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  217. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  218. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  219. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  220. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  221. QVERIFY(prop.method().signature() == 0);
  222. QCOMPARE(prop.type(), QDeclarativeProperty::Invalid);
  223. QCOMPARE(prop.isProperty(), false);
  224. QCOMPARE(prop.isWritable(), false);
  225. QCOMPARE(prop.isDesignable(), false);
  226. QCOMPARE(prop.isResettable(), false);
  227. QCOMPARE(prop.isSignalProperty(), false);
  228. QCOMPARE(prop.isValid(), false);
  229. QCOMPARE(prop.object(), (QObject *)0);
  230. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  231. QCOMPARE(prop.propertyType(), 0);
  232. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  233. QVERIFY(prop.property().name() == 0);
  234. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  235. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  236. QVERIFY(binding == 0);
  237. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  238. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  239. QVERIFY(expression == 0);
  240. QCOMPARE(prop.index(), -1);
  241. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  242. delete obj;
  243. }
  244. {
  245. QDeclarativeProperty prop(&dobject);
  246. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  247. binding.data()->setTarget(prop);
  248. QVERIFY(binding != 0);
  249. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  250. QVERIFY(expression != 0);
  251. QObject *obj = new QObject;
  252. QCOMPARE(prop.name(), QString("defaultProperty"));
  253. QCOMPARE(prop.read(), QVariant(10));
  254. QCOMPARE(prop.write(QVariant()), false);
  255. QCOMPARE(prop.hasNotifySignal(), false);
  256. QCOMPARE(prop.needsNotifySignal(), true);
  257. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  258. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  259. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  260. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  261. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  262. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  263. QVERIFY(prop.method().signature() == 0);
  264. QCOMPARE(prop.type(), QDeclarativeProperty::Property);
  265. QCOMPARE(prop.isProperty(), true);
  266. QCOMPARE(prop.isWritable(), false);
  267. QCOMPARE(prop.isDesignable(), true);
  268. QCOMPARE(prop.isResettable(), false);
  269. QCOMPARE(prop.isSignalProperty(), false);
  270. QCOMPARE(prop.isValid(), true);
  271. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  272. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::Normal);
  273. QCOMPARE(prop.propertyType(), (int)QVariant::Int);
  274. QCOMPARE(prop.propertyTypeName(), "int");
  275. QCOMPARE(QString(prop.property().name()), QString("defaultProperty"));
  276. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  277. QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: Unable to assign null to int");
  278. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  279. QVERIFY(binding != 0);
  280. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == binding.data());
  281. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  282. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  283. QVERIFY(expression == 0);
  284. QCOMPARE(prop.index(), dobject.metaObject()->indexOfProperty("defaultProperty"));
  285. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  286. delete obj;
  287. }
  288. }
  289. void tst_qdeclarativeproperty::qmlmetaproperty_object_string()
  290. {
  291. QObject object;
  292. PropertyObject dobject;
  293. {
  294. QDeclarativeProperty prop(&object, QString("defaultProperty"));
  295. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  296. QVERIFY(binding != 0);
  297. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  298. QVERIFY(expression != 0);
  299. QObject *obj = new QObject;
  300. QCOMPARE(prop.name(), QString());
  301. QCOMPARE(prop.read(), QVariant());
  302. QCOMPARE(prop.write(QVariant()), false);
  303. QCOMPARE(prop.hasNotifySignal(), false);
  304. QCOMPARE(prop.needsNotifySignal(), false);
  305. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  306. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  307. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  308. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  309. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  310. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  311. QVERIFY(prop.method().signature() == 0);
  312. QCOMPARE(prop.type(), QDeclarativeProperty::Invalid);
  313. QCOMPARE(prop.isProperty(), false);
  314. QCOMPARE(prop.isWritable(), false);
  315. QCOMPARE(prop.isDesignable(), false);
  316. QCOMPARE(prop.isResettable(), false);
  317. QCOMPARE(prop.isSignalProperty(), false);
  318. QCOMPARE(prop.isValid(), false);
  319. QCOMPARE(prop.object(), (QObject *)0);
  320. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  321. QCOMPARE(prop.propertyType(), 0);
  322. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  323. QVERIFY(prop.property().name() == 0);
  324. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  325. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  326. QVERIFY(binding == 0);
  327. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  328. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  329. QVERIFY(expression == 0);
  330. QCOMPARE(prop.index(), -1);
  331. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  332. delete obj;
  333. }
  334. {
  335. QDeclarativeProperty prop(&dobject, QString("defaultProperty"));
  336. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  337. binding.data()->setTarget(prop);
  338. QVERIFY(binding != 0);
  339. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  340. QVERIFY(expression != 0);
  341. QObject *obj = new QObject;
  342. QCOMPARE(prop.name(), QString("defaultProperty"));
  343. QCOMPARE(prop.read(), QVariant(10));
  344. QCOMPARE(prop.write(QVariant()), false);
  345. QCOMPARE(prop.hasNotifySignal(), false);
  346. QCOMPARE(prop.needsNotifySignal(), true);
  347. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  348. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  349. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  350. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  351. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  352. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  353. QVERIFY(prop.method().signature() == 0);
  354. QCOMPARE(prop.type(), QDeclarativeProperty::Property);
  355. QCOMPARE(prop.isProperty(), true);
  356. QCOMPARE(prop.isWritable(), false);
  357. QCOMPARE(prop.isDesignable(), true);
  358. QCOMPARE(prop.isResettable(), false);
  359. QCOMPARE(prop.isSignalProperty(), false);
  360. QCOMPARE(prop.isValid(), true);
  361. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  362. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::Normal);
  363. QCOMPARE(prop.propertyType(), (int)QVariant::Int);
  364. QCOMPARE(prop.propertyTypeName(), "int");
  365. QCOMPARE(QString(prop.property().name()), QString("defaultProperty"));
  366. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  367. QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: Unable to assign null to int");
  368. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  369. QVERIFY(binding != 0);
  370. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == binding.data());
  371. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  372. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  373. QVERIFY(expression == 0);
  374. QCOMPARE(prop.index(), dobject.metaObject()->indexOfProperty("defaultProperty"));
  375. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  376. delete obj;
  377. }
  378. {
  379. QDeclarativeProperty prop(&dobject, QString("onClicked"));
  380. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  381. binding.data()->setTarget(prop);
  382. QVERIFY(binding != 0);
  383. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  384. QVERIFY(expression != 0);
  385. QObject *obj = new QObject;
  386. QCOMPARE(prop.name(), QString("onClicked"));
  387. QCOMPARE(prop.read(), QVariant());
  388. QCOMPARE(prop.write(QVariant("Hello")), false);
  389. QCOMPARE(prop.hasNotifySignal(), false);
  390. QCOMPARE(prop.needsNotifySignal(), false);
  391. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  392. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  393. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  394. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  395. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  396. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  397. QCOMPARE(QString(prop.method().signature()), QString("clicked()"));
  398. QCOMPARE(prop.type(), QDeclarativeProperty::SignalProperty);
  399. QCOMPARE(prop.isProperty(), false);
  400. QCOMPARE(prop.isWritable(), false);
  401. QCOMPARE(prop.isDesignable(), false);
  402. QCOMPARE(prop.isResettable(), false);
  403. QCOMPARE(prop.isSignalProperty(), true);
  404. QCOMPARE(prop.isValid(), true);
  405. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  406. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  407. QCOMPARE(prop.propertyType(), 0);
  408. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  409. QCOMPARE(prop.property().name(), (const char *)0);
  410. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  411. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  412. QVERIFY(binding == 0);
  413. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  414. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  415. QVERIFY(expression != 0);
  416. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == expression.data());
  417. QCOMPARE(prop.index(), dobject.metaObject()->indexOfMethod("clicked()"));
  418. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  419. delete obj;
  420. }
  421. {
  422. QDeclarativeProperty prop(&dobject, QString("onPropertyWithNotifyChanged"));
  423. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  424. binding.data()->setTarget(prop);
  425. QVERIFY(binding != 0);
  426. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  427. QVERIFY(expression != 0);
  428. QObject *obj = new QObject;
  429. QCOMPARE(prop.name(), QString("onOddlyNamedNotifySignal"));
  430. QCOMPARE(prop.read(), QVariant());
  431. QCOMPARE(prop.write(QVariant("Hello")), false);
  432. QCOMPARE(prop.hasNotifySignal(), false);
  433. QCOMPARE(prop.needsNotifySignal(), false);
  434. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  435. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  436. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  437. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  438. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  439. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  440. QCOMPARE(QString(prop.method().signature()), QString("oddlyNamedNotifySignal()"));
  441. QCOMPARE(prop.type(), QDeclarativeProperty::SignalProperty);
  442. QCOMPARE(prop.isProperty(), false);
  443. QCOMPARE(prop.isWritable(), false);
  444. QCOMPARE(prop.isDesignable(), false);
  445. QCOMPARE(prop.isResettable(), false);
  446. QCOMPARE(prop.isSignalProperty(), true);
  447. QCOMPARE(prop.isValid(), true);
  448. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  449. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  450. QCOMPARE(prop.propertyType(), 0);
  451. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  452. QCOMPARE(prop.property().name(), (const char *)0);
  453. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  454. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  455. QVERIFY(binding == 0);
  456. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  457. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  458. QVERIFY(expression != 0);
  459. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == expression.data());
  460. QCOMPARE(prop.index(), dobject.metaObject()->indexOfMethod("oddlyNamedNotifySignal()"));
  461. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  462. delete obj;
  463. }
  464. }
  465. void tst_qdeclarativeproperty::qmlmetaproperty_object_context()
  466. {
  467. QObject object; // Has no default property
  468. PropertyObject dobject; // Has default property
  469. {
  470. QDeclarativeProperty prop(&object, engine.rootContext());
  471. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  472. QVERIFY(binding != 0);
  473. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  474. QVERIFY(expression != 0);
  475. QObject *obj = new QObject;
  476. QCOMPARE(prop.name(), QString());
  477. QCOMPARE(prop.read(), QVariant());
  478. QCOMPARE(prop.write(QVariant()), false);
  479. QCOMPARE(prop.hasNotifySignal(), false);
  480. QCOMPARE(prop.needsNotifySignal(), false);
  481. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  482. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  483. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  484. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  485. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  486. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  487. QVERIFY(prop.method().signature() == 0);
  488. QCOMPARE(prop.type(), QDeclarativeProperty::Invalid);
  489. QCOMPARE(prop.isProperty(), false);
  490. QCOMPARE(prop.isWritable(), false);
  491. QCOMPARE(prop.isDesignable(), false);
  492. QCOMPARE(prop.isResettable(), false);
  493. QCOMPARE(prop.isSignalProperty(), false);
  494. QCOMPARE(prop.isValid(), false);
  495. QCOMPARE(prop.object(), (QObject *)0);
  496. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  497. QCOMPARE(prop.propertyType(), 0);
  498. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  499. QVERIFY(prop.property().name() == 0);
  500. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  501. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  502. QVERIFY(binding == 0);
  503. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  504. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  505. QVERIFY(expression == 0);
  506. QCOMPARE(prop.index(), -1);
  507. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  508. delete obj;
  509. }
  510. {
  511. QDeclarativeProperty prop(&dobject, engine.rootContext());
  512. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  513. binding.data()->setTarget(prop);
  514. QVERIFY(binding != 0);
  515. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  516. QVERIFY(expression != 0);
  517. QObject *obj = new QObject;
  518. QCOMPARE(prop.name(), QString("defaultProperty"));
  519. QCOMPARE(prop.read(), QVariant(10));
  520. QCOMPARE(prop.write(QVariant()), false);
  521. QCOMPARE(prop.hasNotifySignal(), false);
  522. QCOMPARE(prop.needsNotifySignal(), true);
  523. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  524. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  525. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  526. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  527. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  528. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  529. QVERIFY(prop.method().signature() == 0);
  530. QCOMPARE(prop.type(), QDeclarativeProperty::Property);
  531. QCOMPARE(prop.isProperty(), true);
  532. QCOMPARE(prop.isWritable(), false);
  533. QCOMPARE(prop.isDesignable(), true);
  534. QCOMPARE(prop.isResettable(), false);
  535. QCOMPARE(prop.isSignalProperty(), false);
  536. QCOMPARE(prop.isValid(), true);
  537. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  538. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::Normal);
  539. QCOMPARE(prop.propertyType(), (int)QVariant::Int);
  540. QCOMPARE(prop.propertyTypeName(), "int");
  541. QCOMPARE(QString(prop.property().name()), QString("defaultProperty"));
  542. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  543. QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: Unable to assign null to int");
  544. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  545. QVERIFY(binding != 0);
  546. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == binding.data());
  547. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  548. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  549. QVERIFY(expression == 0);
  550. QCOMPARE(prop.index(), dobject.metaObject()->indexOfProperty("defaultProperty"));
  551. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  552. delete obj;
  553. }
  554. }
  555. void tst_qdeclarativeproperty::qmlmetaproperty_object_string_context()
  556. {
  557. QObject object;
  558. PropertyObject dobject;
  559. {
  560. QDeclarativeProperty prop(&object, QString("defaultProperty"), engine.rootContext());
  561. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  562. QVERIFY(binding != 0);
  563. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  564. QVERIFY(expression != 0);
  565. QObject *obj = new QObject;
  566. QCOMPARE(prop.name(), QString());
  567. QCOMPARE(prop.read(), QVariant());
  568. QCOMPARE(prop.write(QVariant()), false);
  569. QCOMPARE(prop.hasNotifySignal(), false);
  570. QCOMPARE(prop.needsNotifySignal(), false);
  571. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  572. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  573. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  574. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  575. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  576. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  577. QVERIFY(prop.method().signature() == 0);
  578. QCOMPARE(prop.type(), QDeclarativeProperty::Invalid);
  579. QCOMPARE(prop.isProperty(), false);
  580. QCOMPARE(prop.isWritable(), false);
  581. QCOMPARE(prop.isDesignable(), false);
  582. QCOMPARE(prop.isResettable(), false);
  583. QCOMPARE(prop.isSignalProperty(), false);
  584. QCOMPARE(prop.isValid(), false);
  585. QCOMPARE(prop.object(), (QObject *)0);
  586. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  587. QCOMPARE(prop.propertyType(), 0);
  588. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  589. QVERIFY(prop.property().name() == 0);
  590. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  591. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  592. QVERIFY(binding == 0);
  593. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  594. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  595. QVERIFY(expression == 0);
  596. QCOMPARE(prop.index(), -1);
  597. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  598. delete obj;
  599. }
  600. {
  601. QDeclarativeProperty prop(&dobject, QString("defaultProperty"), engine.rootContext());
  602. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  603. binding.data()->setTarget(prop);
  604. QVERIFY(binding != 0);
  605. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  606. QVERIFY(expression != 0);
  607. QObject *obj = new QObject;
  608. QCOMPARE(prop.name(), QString("defaultProperty"));
  609. QCOMPARE(prop.read(), QVariant(10));
  610. QCOMPARE(prop.write(QVariant()), false);
  611. QCOMPARE(prop.hasNotifySignal(), false);
  612. QCOMPARE(prop.needsNotifySignal(), true);
  613. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  614. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  615. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  616. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  617. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  618. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  619. QVERIFY(prop.method().signature() == 0);
  620. QCOMPARE(prop.type(), QDeclarativeProperty::Property);
  621. QCOMPARE(prop.isProperty(), true);
  622. QCOMPARE(prop.isWritable(), false);
  623. QCOMPARE(prop.isDesignable(), true);
  624. QCOMPARE(prop.isResettable(), false);
  625. QCOMPARE(prop.isSignalProperty(), false);
  626. QCOMPARE(prop.isValid(), true);
  627. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  628. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::Normal);
  629. QCOMPARE(prop.propertyType(), (int)QVariant::Int);
  630. QCOMPARE(prop.propertyTypeName(), "int");
  631. QCOMPARE(QString(prop.property().name()), QString("defaultProperty"));
  632. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  633. QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: Unable to assign null to int");
  634. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  635. QVERIFY(binding != 0);
  636. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == binding.data());
  637. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  638. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  639. QVERIFY(expression == 0);
  640. QCOMPARE(prop.index(), dobject.metaObject()->indexOfProperty("defaultProperty"));
  641. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  642. delete obj;
  643. }
  644. {
  645. QDeclarativeProperty prop(&dobject, QString("onClicked"), engine.rootContext());
  646. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  647. binding.data()->setTarget(prop);
  648. QVERIFY(binding != 0);
  649. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  650. QVERIFY(expression != 0);
  651. QObject *obj = new QObject;
  652. QCOMPARE(prop.name(), QString("onClicked"));
  653. QCOMPARE(prop.read(), QVariant());
  654. QCOMPARE(prop.write(QVariant("Hello")), false);
  655. QCOMPARE(prop.hasNotifySignal(), false);
  656. QCOMPARE(prop.needsNotifySignal(), false);
  657. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  658. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  659. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  660. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  661. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  662. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  663. QCOMPARE(QString(prop.method().signature()), QString("clicked()"));
  664. QCOMPARE(prop.type(), QDeclarativeProperty::SignalProperty);
  665. QCOMPARE(prop.isProperty(), false);
  666. QCOMPARE(prop.isWritable(), false);
  667. QCOMPARE(prop.isDesignable(), false);
  668. QCOMPARE(prop.isResettable(), false);
  669. QCOMPARE(prop.isSignalProperty(), true);
  670. QCOMPARE(prop.isValid(), true);
  671. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  672. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  673. QCOMPARE(prop.propertyType(), 0);
  674. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  675. QCOMPARE(prop.property().name(), (const char *)0);
  676. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  677. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  678. QVERIFY(binding == 0);
  679. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  680. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  681. QVERIFY(expression != 0);
  682. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == expression.data());
  683. QCOMPARE(prop.index(), dobject.metaObject()->indexOfMethod("clicked()"));
  684. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  685. delete obj;
  686. }
  687. {
  688. QDeclarativeProperty prop(&dobject, QString("onPropertyWithNotifyChanged"), engine.rootContext());
  689. QWeakPointer<QDeclarativeBinding> binding(new QDeclarativeBinding(QLatin1String("null"), 0, engine.rootContext()));
  690. binding.data()->setTarget(prop);
  691. QVERIFY(binding != 0);
  692. QWeakPointer<QDeclarativeExpression> expression(new QDeclarativeExpression());
  693. QVERIFY(expression != 0);
  694. QObject *obj = new QObject;
  695. QCOMPARE(prop.name(), QString("onOddlyNamedNotifySignal"));
  696. QCOMPARE(prop.read(), QVariant());
  697. QCOMPARE(prop.write(QVariant("Hello")), false);
  698. QCOMPARE(prop.hasNotifySignal(), false);
  699. QCOMPARE(prop.needsNotifySignal(), false);
  700. QCOMPARE(prop.connectNotifySignal(0, SLOT(deleteLater())), false);
  701. QCOMPARE(prop.connectNotifySignal(obj, SLOT(deleteLater())), false);
  702. QCOMPARE(prop.connectNotifySignal(obj, 0), false);
  703. QCOMPARE(prop.connectNotifySignal(0, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  704. QCOMPARE(prop.connectNotifySignal(obj, obj->metaObject()->indexOfMethod("deleteLater()")), false);
  705. QCOMPARE(prop.connectNotifySignal(obj, -1), false);
  706. QCOMPARE(QString(prop.method().signature()), QString("oddlyNamedNotifySignal()"));
  707. QCOMPARE(prop.type(), QDeclarativeProperty::SignalProperty);
  708. QCOMPARE(prop.isProperty(), false);
  709. QCOMPARE(prop.isWritable(), false);
  710. QCOMPARE(prop.isDesignable(), false);
  711. QCOMPARE(prop.isResettable(), false);
  712. QCOMPARE(prop.isSignalProperty(), true);
  713. QCOMPARE(prop.isValid(), true);
  714. QCOMPARE(prop.object(), qobject_cast<QObject*>(&dobject));
  715. QCOMPARE(prop.propertyTypeCategory(), QDeclarativeProperty::InvalidCategory);
  716. QCOMPARE(prop.propertyType(), 0);
  717. QCOMPARE(prop.propertyTypeName(), (const char *)0);
  718. QCOMPARE(prop.property().name(), (const char *)0);
  719. QVERIFY(QDeclarativePropertyPrivate::binding(prop) == 0);
  720. QVERIFY(QDeclarativePropertyPrivate::setBinding(prop, binding.data()) == 0);
  721. QVERIFY(binding == 0);
  722. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == 0);
  723. QVERIFY(QDeclarativePropertyPrivate::setSignalExpression(prop, expression.data()) == 0);
  724. QVERIFY(expression != 0);
  725. QVERIFY(QDeclarativePropertyPrivate::signalExpression(prop) == expression.data());
  726. QCOMPARE(prop.index(), dobject.metaObject()->indexOfMethod("oddlyNamedNotifySignal()"));
  727. QCOMPARE(QDeclarativePropertyPrivate::valueTypeCoreIndex(prop), -1);
  728. delete obj;
  729. }
  730. }
  731. void tst_qdeclarativeproperty::name()
  732. {
  733. {
  734. QDeclarativeProperty p;
  735. QCOMPARE(p.name(), QString());
  736. }
  737. {
  738. PropertyObject o;
  739. QDeclarativeProperty p(&o);
  740. QCOMPARE(p.name(), QString("defaultProperty"));
  741. }
  742. {
  743. QObject o;
  744. QDeclarativeProperty p(&o, QString("objectName"));
  745. QCOMPARE(p.name(), QString("objectName"));
  746. }
  747. {
  748. PropertyObject o;
  749. QDeclarativeProperty p(&o, "onClicked");
  750. QCOMPARE(p.name(), QString("onClicked"));
  751. }
  752. {
  753. QObject o;
  754. QDeclarativeProperty p(&o, "onClicked");
  755. QCOMPARE(p.name(), QString());
  756. }
  757. {
  758. PropertyObject o;
  759. QDeclarativeProperty p(&o, "onPropertyWithNotifyChanged");
  760. QCOMPARE(p.name(), QString("onOddlyNamedNotifySignal"));
  761. }
  762. {
  763. QObject o;
  764. QDeclarativeProperty p(&o, "onPropertyWithNotifyChanged");
  765. QCOMPARE(p.name(), QString());
  766. }
  767. {
  768. QObject o;
  769. QDeclarativeProperty p(&o, "foo");
  770. QCOMPARE(p.name(), QString());
  771. }
  772. {
  773. QDeclarativeProperty p(0, "foo");
  774. QCOMPARE(p.name(), QString());
  775. }
  776. {
  777. PropertyObject o;
  778. QDeclarativeProperty p(&o, "rectProperty");
  779. QCOMPARE(p.name(), QString("rectProperty"));
  780. }
  781. {
  782. PropertyObject o;
  783. QDeclarativeProperty p(&o, "rectProperty.x");
  784. QCOMPARE(p.name(), QString("rectProperty.x"));
  785. }
  786. {
  787. PropertyObject o;
  788. QDeclarativeProperty p(&o, "rectProperty.foo");
  789. QCOMPARE(p.name(), QString());
  790. }
  791. }
  792. void tst_qdeclarativeproperty::read()
  793. {
  794. // Invalid
  795. {
  796. QDeclarativeProperty p;
  797. QCOMPARE(p.read(), QVariant());
  798. }
  799. // Default prop
  800. {
  801. PropertyObject o;
  802. QDeclarativeProperty p(&o);
  803. QCOMPARE(p.read(), QVariant(10));
  804. }
  805. // Invalid default prop
  806. {
  807. QObject o;
  808. QDeclarativeProperty p(&o);
  809. QCOMPARE(p.read(), QVariant());
  810. }
  811. // Value prop by name
  812. {
  813. QObject o;
  814. QDeclarativeProperty p(&o, "objectName");
  815. QCOMPARE(p.read(), QVariant(QString()));
  816. o.setObjectName("myName");
  817. QCOMPARE(p.read(), QVariant("myName"));
  818. }
  819. // Value prop by name (static)
  820. {
  821. QObject o;
  822. QCOMPARE(QDeclarativeProperty::read(&o, "objectName"), QVariant(QString()));
  823. o.setObjectName("myName");
  824. QCOMPARE(QDeclarativeProperty::read(&o, "objectName"), QVariant("myName"));
  825. }
  826. // Value-type prop
  827. {
  828. PropertyObject o;
  829. QDeclarativeProperty p(&o, "rectProperty.x");
  830. QCOMPARE(p.read(), QVariant(10));
  831. }
  832. // Invalid value-type prop
  833. {
  834. PropertyObject o;
  835. QDeclarativeProperty p(&o, "rectProperty.foo");
  836. QCOMPARE(p.read(), QVariant());
  837. }
  838. // Signal property
  839. {
  840. PropertyObject o;
  841. QDeclarativeProperty p(&o, "onClicked");
  842. QCOMPARE(p.read(), QVariant());
  843. QVERIFY(0 == QDeclarativePropertyPrivate::setSignalExpression(p, new QDeclarativeExpression()));
  844. QVERIFY(0 != QDeclarativePropertyPrivate::signalExpression(p));
  845. QCOMPARE(p.read(), QVariant());
  846. }
  847. // Automatic signal property
  848. {
  849. PropertyObject o;
  850. QDeclarativeProperty p(&o, "onPropertyWithNotifyChanged");
  851. QCOMPARE(p.read(), QVariant());
  852. QVERIFY(0 == QDeclarativePropertyPrivate::setSignalExpression(p, new QDeclarativeExpression()));
  853. QVERIFY(0 != QDeclarativePropertyPrivate::signalExpression(p));
  854. QCOMPARE(p.read(), QVariant());
  855. }
  856. // Deleted object
  857. {
  858. PropertyObject *o = new PropertyObject;
  859. QDeclarativeProperty p(o, "rectProperty.x");
  860. QCOMPARE(p.read(), QVariant(10));
  861. delete o;
  862. QCOMPARE(p.read(), QVariant());
  863. }
  864. // Object property
  865. {
  866. PropertyObject o;
  867. QDeclarativeProperty p(&o, "qmlObject");
  868. QCOMPARE(p.propertyTypeCategory(), QDeclarativeProperty::Object);
  869. QCOMPARE(p.propertyType(), qMetaTypeId<MyQmlObject*>());
  870. QVariant v = p.read();
  871. QVERIFY(v.userType() == QMetaType::QObjectStar);
  872. QVERIFY(qvariant_cast<QObject *>(v) == o.qmlObject());
  873. }
  874. {
  875. QDeclarativeComponent component(&engine, TEST_FILE("readSynthesizedObject.qml"));
  876. QObject *object = component.create();
  877. QVERIFY(object != 0);
  878. QDeclarativeProperty p(object, "test", &engine);
  879. QCOMPARE(p.propertyTypeCategory(), QDeclarativeProperty::Object);
  880. QVERIFY(p.propertyType() != QMetaType::QObjectStar);
  881. QVariant v = p.read();
  882. QVERIFY(v.userType() == QMetaType::QObjectStar);
  883. QCOMPARE(qvariant_cast<QObject *>(v)->property("a").toInt(), 10);
  884. QCOMPARE(qvariant_cast<QObject *>(v)->property("b").toInt(), 19);
  885. }
  886. { // static
  887. QDeclarativeComponent component(&engine, TEST_FILE("readSynthesizedObject.qml"));
  888. QObject *object = component.create();
  889. QVERIFY(object != 0);
  890. QVariant v = QDeclarativeProperty::read(object, "test", &engine);
  891. QVERIFY(v.userType() == QMetaType::QObjectStar);
  892. QCOMPARE(qvariant_cast<QObject *>(v)->property("a").toInt(), 10);
  893. QCOMPARE(qvariant_cast<QObject *>(v)->property("b").toInt(), 19);
  894. }
  895. // Attached property
  896. {
  897. QDeclarativeComponent component(&engine);
  898. component.setData("import Test 1.0\nMyContainer { }", QUrl());
  899. QObject *object = component.create();
  900. QVERIFY(object != 0);
  901. QDeclarativeProperty p(object, "MyContainer.foo", qmlContext(object));
  902. QCOMPARE(p.read(), QVariant(13));
  903. delete object;
  904. }
  905. {
  906. QDeclarativeComponent component(&engine);
  907. component.setData("import Test 1.0\nMyContainer { MyContainer.foo: 10 }", QUrl());
  908. QObject *object = component.create();
  909. QVERIFY(object != 0);
  910. QDeclarativeProperty p(object, "MyContainer.foo", qmlContext(object));
  911. QCOMPARE(p.read(), QVariant(10));
  912. delete object;
  913. }
  914. {
  915. QDeclarativeComponent component(&engine);
  916. component.setData("import Test 1.0 as Foo\nFoo.MyContainer { Foo.MyContainer.foo: 10 }", QUrl());
  917. QObject *object = component.create();
  918. QVERIFY(object != 0);
  919. QDeclarativeProperty p(object, "Foo.MyContainer.foo", qmlContext(object));
  920. QCOMPARE(p.read(), QVariant(10));
  921. delete object;
  922. }
  923. { // static
  924. QDeclarativeComponent component(&engine);
  925. component.setData("import Test 1.0 as Foo\nFoo.MyContainer { Foo.MyContainer.foo: 10 }", QUrl());
  926. QObject *object = component.create();
  927. QVERIFY(object != 0);
  928. QCOMPARE(QDeclarativeProperty::read(object, "Foo.MyContainer.foo", qmlContext(object)), QVariant(10));
  929. delete object;
  930. }
  931. }
  932. void tst_qdeclarativeproperty::write()
  933. {
  934. // Invalid
  935. {
  936. QDeclarativeProperty p;
  937. QCOMPARE(p.write(QVariant(10)), false);
  938. }
  939. // Read-only default prop
  940. {
  941. PropertyObject o;
  942. QDeclarativeProperty p(&o);
  943. QCOMPARE(p.write(QVariant(10)), false);
  944. }
  945. // Invalid default prop
  946. {
  947. QObject o;
  948. QDeclarativeProperty p(&o);
  949. QCOMPARE(p.write(QVariant(10)), false);
  950. }
  951. // Read-only prop by name
  952. {
  953. PropertyObject o;
  954. QDeclarativeProperty p(&o, QString("defaultProperty"));
  955. QCOMPARE(p.write(QVariant(10)), false);
  956. }
  957. // Writable prop by name
  958. {
  959. PropertyObject o;
  960. QDeclarativeProperty p(&o, QString("objectName"));
  961. QCOMPARE(o.objectName(), QString());
  962. QCOMPARE(p.write(QVariant(QString("myName"))), true);
  963. QCOMPARE(o.objectName(), QString("myName"));
  964. }
  965. // Writable prop by name (static)
  966. {
  967. PropertyObject o;
  968. QCOMPARE(QDeclarativeProperty::write(&o, QString("objectName"), QVariant(QString("myName"))), true);
  969. QCOMPARE(o.objectName(), QString("myName"));
  970. }
  971. // Deleted object
  972. {
  973. PropertyObject *o = new PropertyObject;
  974. QDeclarativeProperty p(o, QString("objectName"));
  975. QCOMPARE(p.write(QVariant(QString("myName"))), true);
  976. QCOMPARE(o->objectName(), QString("myName"));
  977. delete o;
  978. QCOMPARE(p.write(QVariant(QString("myName"))), false);
  979. }
  980. // Signal property
  981. {
  982. PropertyObject o;
  983. QDeclarativeProperty p(&o, "onClicked");
  984. QCOMPARE(p.write(QVariant("console.log(1921)")), false);
  985. QVERIFY(0 == QDeclarativePropertyPrivate::setSignalExpression(p, new QDeclarativeExpression()));
  986. QVERIFY(0 != QDeclarativePropertyPrivate::signalExpression(p));
  987. QCOMPARE(p.write(QVariant("console.log(1921)")), false);
  988. QVERIFY(0 != QDeclarativePropertyPrivate::signalExpression(p));
  989. }
  990. // Automatic signal property
  991. {
  992. PropertyObject o;
  993. QDeclarativeProperty p(&o, "onPropertyWithNotifyChanged");
  994. QCOMPARE(p.write(QVariant("console.log(1921)")), false);
  995. QVERIFY(0 == QDeclarativePropertyPrivate::setSignalExpression(p, new QDeclarativeExpression()));
  996. QVERIFY(0 != QDeclarativePropertyPrivate::signalExpression(p));
  997. QCOMPARE(p.write(QVariant("console.log(1921)")), false);
  998. QVERIFY(0 != QDeclarativePropertyPrivate::signalExpression(p));
  999. }
  1000. // Value-type property
  1001. {
  1002. PropertyObject o;
  1003. QDeclarativeProperty p(&o, "wrectProperty");
  1004. QCOMPARE(o.wrectProperty(), QRect());
  1005. QCOMPARE(p.write(QRect(1, 13, 99, 8)), true);
  1006. QCOMPARE(o.wrectProperty(), QRect(1, 13, 99, 8));
  1007. QDeclarativeProperty p2(&o, "wrectProperty.x");
  1008. QCOMPARE(p2.read(), QVariant(1));
  1009. QCOMPARE(p2.write(QVariant(6)), true);
  1010. QCOMPARE(p2.read(), QVariant(6));
  1011. QCOMPARE(o.wrectProperty(), QRect(6, 13, 99, 8));
  1012. }
  1013. // URL-property
  1014. {
  1015. PropertyObject o;
  1016. QDeclarativeProperty p(&o, "url");
  1017. QCOMPARE(p.write(QUrl("main.qml")), true);
  1018. QCOMPARE(o.url(), QUrl("main.qml"));
  1019. QDeclarativeProperty p2(&o, "url", engine.rootContext());
  1020. QUrl result = engine.baseUrl().resolved(QUrl("main.qml"));
  1021. QVERIFY(result != QUrl("main.qml"));
  1022. QCOMPARE(p2.write(QUrl("main.qml")), true);
  1023. QCOMPARE(o.url(), result);
  1024. }
  1025. { // static
  1026. PropertyObject o;
  1027. QCOMPARE(QDeclarativeProperty::write(&o, "url", QUrl("main.qml")), true);
  1028. QCOMPARE(o.url(), QUrl("main.qml"));
  1029. QUrl result = engine.baseUrl().resolved(QUrl("main.qml"));
  1030. QVERIFY(result != QUrl("main.qml"));
  1031. QCOMPARE(QDeclarativeProperty::write(&o, "url", QUrl("main.qml"), engine.rootContext()), true);
  1032. QCOMPARE(o.url(), result);
  1033. }
  1034. // Attached property
  1035. {
  1036. QDeclarativeComponent component(&engine);
  1037. component.setData("import Test 1.0\nMyContainer { }", QUrl());
  1038. QObject *object = component.create();
  1039. QVERIFY(object != 0);
  1040. QDeclarativeProperty p(object, "MyContainer.foo", qmlContext(object));
  1041. p.write(QVariant(99));
  1042. QCOMPARE(p.read(), QVariant(99));
  1043. delete object;
  1044. }
  1045. {
  1046. QDeclarativeComponent component(&engine);
  1047. component.setData("import Test 1.0 as Foo\nFoo.MyContainer { Foo.MyContainer.foo: 10 }", QUrl());
  1048. QObject *object = component.create();
  1049. QVERIFY(object != 0);
  1050. QDeclarativeProperty p(object, "Foo.MyContainer.foo", qmlContext(object));
  1051. p.write(QVariant(99));
  1052. QCOMPARE(p.read(), QVariant(99));
  1053. delete object;
  1054. }
  1055. }
  1056. void tst_qdeclarativeproperty::reset()
  1057. {
  1058. // Invalid
  1059. {
  1060. QDeclarativeProperty p;
  1061. QCOMPARE(p.isResettable(), false);
  1062. QCOMPARE(p.reset(), false);
  1063. }
  1064. // Read-only default prop
  1065. {
  1066. PropertyObject o;
  1067. QDeclarativeProperty p(&o);
  1068. QCOMPARE(p.isResettable(), false);
  1069. QCOMPARE(p.reset(), false);
  1070. }
  1071. // Invalid default prop
  1072. {
  1073. QObject o;
  1074. QDeclarativeProperty p(&o);
  1075. QCOMPARE(p.isResettable(), false);
  1076. QCOMPARE(p.reset(), false);
  1077. }
  1078. // Non-resettable-only prop by name
  1079. {
  1080. PropertyObject o;
  1081. QDeclarativeProperty p(&o, QString("defaultProperty"));
  1082. QCOMPARE(p.isResettable(), false);
  1083. QCOMPARE(p.reset(), false);
  1084. }
  1085. // Resettable prop by name
  1086. {
  1087. PropertyObject o;
  1088. QDeclarativeProperty p(&o, QString("resettableProperty"));
  1089. QCOMPARE(p.read(), QVariant(9));
  1090. QCOMPARE(p.write(QVariant(11)), true);
  1091. QCOMPARE(p.read(), QVariant(11));
  1092. QCOMPARE(p.isResettable(), true);
  1093. QCOMPARE(p.reset(), true);
  1094. QCOMPARE(p.read(), QVariant(9));
  1095. }
  1096. // Deleted object
  1097. {
  1098. PropertyObject *o = new PropertyObject;
  1099. QDeclarativeProperty p(o, QString("resettableProperty"));
  1100. QCOMPARE(p.isResettable(), true);
  1101. QCOMPARE(p.reset(), true);
  1102. delete o;
  1103. QCOMPARE(p.isResettable(), false);
  1104. QCOMPARE(p.reset(), false);
  1105. }
  1106. // Signal property
  1107. {
  1108. PropertyObject o;
  1109. QDeclarativeProperty p(&o, "onClicked");
  1110. QCOMPARE(p.isResettable(), false);
  1111. QCOMPARE(p.reset(), false);
  1112. }
  1113. // Automatic signal property
  1114. {
  1115. PropertyObject o;
  1116. QDeclarativeProperty p(&o, "onPropertyWithNotifyChanged");
  1117. QCOMPARE(p.isResettable(), false);
  1118. QCOMPARE(p.reset(), false);
  1119. }
  1120. }
  1121. void tst_qdeclarativeproperty::writeObjectToList()
  1122. {
  1123. QDeclarativeComponent containerComponent(&engine);
  1124. containerComponent.setData("import Test 1.0\nMyContainer { children: MyQmlObject {} }", QUrl());
  1125. MyContainer *container = qobject_cast<MyContainer*>(containerComponent.create());
  1126. QVERIFY(container != 0);
  1127. QDeclarativeListReference list(container, "children");
  1128. QVERIFY(list.count() == 1);
  1129. MyQmlObject *object = new MyQmlObject;
  1130. QDeclarativeProperty prop(container, "children");
  1131. prop.write(qVariantFromValue(object));
  1132. QCOMPARE(list.count(), 1);
  1133. QCOMPARE(list.at(0), qobject_cast<QObject*>(object));
  1134. }
  1135. Q_DECLARE_METATYPE(QList<QObject *>);
  1136. void tst_qdeclarativeproperty::writeListToList()
  1137. {
  1138. QDeclarativeComponent containerComponent(&engine);
  1139. containerComponent.setData("import Test 1.0\nMyContainer { children: MyQmlObject {} }", QUrl());
  1140. MyContainer *container = qobject_cast<MyContainer*>(containerComponent.create());
  1141. QVERIFY(container != 0);
  1142. QDeclarativeListReference list(container, "children");
  1143. QVERIFY(list.count() == 1);
  1144. QList<QObject*> objList;
  1145. objList << new MyQmlObject() << new MyQmlObject() << new MyQmlObject() << new MyQmlObject();
  1146. QDeclarativeProperty prop(container, "children");
  1147. prop.write(qVariantFromValue(objList));
  1148. QCOMPARE(list.count(), 4);
  1149. //XXX need to try this with read/write prop (for read-only it correctly doesn't write)
  1150. /*QList<MyQmlObject*> typedObjList;
  1151. typedObjList << new MyQmlObject();
  1152. prop.write(qVariantFromValue(&typedObjList));
  1153. QCOMPARE(container->children()->size(), 1);*/
  1154. }
  1155. void tst_qdeclarativeproperty::crashOnValueProperty()
  1156. {
  1157. QDeclarativeEngine *engine = new QDeclarativeEngine;
  1158. QDeclarativeComponent component(engine);
  1159. component.setData("import Test 1.0\nPropertyObject { wrectProperty.x: 10 }", QUrl());
  1160. PropertyObject *obj = qobject_cast<PropertyObject*>(component.create());
  1161. QVERIFY(obj != 0);
  1162. QDeclarativeProperty p(obj, "wrectProperty.x", qmlContext(obj));
  1163. QCOMPARE(p.name(), QString("wrectProperty.x"));
  1164. QCOMPARE(p.read(), QVariant(10));
  1165. //don't crash once the engine is deleted
  1166. delete engine;
  1167. engine = 0;
  1168. QCOMPARE(p.propertyTypeName(), "int");
  1169. QCOMPARE(p.read(), QVariant(10));
  1170. p.write(QVariant(20));
  1171. QCOMPARE(p.read(), QVariant(20));
  1172. }
  1173. // QTBUG-13719
  1174. void tst_qdeclarativeproperty::aliasPropertyBindings()
  1175. {
  1176. QDeclarativeComponent component(&engine, TEST_FILE("aliasPropertyBindings.qml"));
  1177. QObject *object = component.create();
  1178. QVERIFY(object != 0);
  1179. QCOMPARE(object->property("realProperty").toReal(), 90.);
  1180. QCOMPARE(object->property("aliasProperty").toReal(), 90.);
  1181. object->setProperty("test", 10);
  1182. QCOMPARE(object->property("realProperty").toReal(), 110.);
  1183. QCOMPARE(object->property("aliasProperty").toReal(), 110.);
  1184. QDeclarativeProperty realProperty(object, QLatin1String("realProperty"));
  1185. QDeclarativeProperty aliasProperty(object, QLatin1String("aliasProperty"));
  1186. // Check there is a binding on these two properties
  1187. QVERIFY(QDeclarativePropertyPrivate::binding(realProperty) != 0);
  1188. QVERIFY(QDeclarativePropertyPrivate::binding(aliasProperty) != 0);
  1189. // Check that its the same binding on these two properties
  1190. QCOMPARE(QDeclarativePropertyPrivate::binding(realProperty),
  1191. QDeclarativePropertyPrivate::binding(aliasProperty));
  1192. // Change the binding
  1193. object->setProperty("state", QString("switch"));
  1194. QVERIFY(QDeclarativePropertyPrivate::binding(realProperty) != 0);
  1195. QVERIFY(QDeclarativePropertyPrivate::binding(aliasProperty) != 0);
  1196. QCOMPARE(QDeclarativePropertyPrivate::binding(realProperty),
  1197. QDeclarativePropertyPrivate::binding(aliasProperty));
  1198. QCOMPARE(object->property("realProperty").toReal(), 96.);
  1199. QCOMPARE(object->property("aliasProperty").toReal(), 96.);
  1200. // Check the old binding really has not effect any more
  1201. object->setProperty("test", 4);
  1202. QCOMPARE(object->property("realProperty").toReal(), 96.);
  1203. QCOMPARE(object->property("aliasProperty").toReal(), 96.);
  1204. object->setProperty("test2", 9);
  1205. QCOMPARE(object->property("realProperty").toReal(), 288.);
  1206. QCOMPARE(object->property("aliasProperty").toReal(), 288.);
  1207. // Revert
  1208. object->setProperty("state", QString(""));
  1209. QVERIFY(QDeclarativePropertyPrivate::binding(realProperty) != 0);
  1210. QVERIFY(QDeclarativePropertyPrivate::binding(aliasProperty) != 0);
  1211. QCOMPARE(QDeclarativePropertyPrivate::binding(realProperty),
  1212. QDeclarativePropertyPrivate::binding(aliasProperty));
  1213. QCOMPARE(object->property("realProperty").toReal(), 20.);
  1214. QCOMPARE(object->property("aliasProperty").toReal(), 20.);
  1215. object->setProperty("test2", 3);
  1216. QCOMPARE(object->property("realProperty").toReal(), 20.);
  1217. QCOMPARE(object->property("aliasProperty").toReal(), 20.);
  1218. delete object;
  1219. }
  1220. void tst_qdeclarativeproperty::copy()
  1221. {
  1222. PropertyObject object;
  1223. QDeclarativeProperty *property = new QDeclarativeProperty(&object, QLatin1String("defaultProperty"));
  1224. QCOMPARE(property->name(), QString("defaultProperty"));
  1225. QCOMPARE(property->read(), QVariant(10));
  1226. QCOMPARE(property->type(), QDeclarativeProperty::Property);
  1227. QCOMPARE(property->propertyTypeCategory(), QDeclarativeProperty::Normal);
  1228. QCOMPARE(property->propertyType(), (int)QVariant::Int);
  1229. QDeclarativeProperty p1(*property);
  1230. QCOMPARE(p1.name(), QString("defaultProperty"));
  1231. QCOMPARE(p1.read(), QVariant(10));
  1232. QCOMPARE(p1.type(), QDeclarativeProperty::Property);
  1233. QCOMPARE(p1.propertyTypeCategory(), QDeclarativeProperty::Normal);
  1234. QCOMPARE(p1.propertyType(), (int)QVariant::Int);
  1235. QDeclarativeProperty p2(&object, QLatin1String("url"));
  1236. QCOMPARE(p2.name(), QString("url"));
  1237. p2 = *property;
  1238. QCOMPARE(p2.name(), QString("defaultProperty"));
  1239. QCOMPARE(p2.read(), QVariant(10));
  1240. QCOMPARE(p2.type(), QDeclarativeProperty::Property);
  1241. QCOMPARE(p2.propertyTypeCategory(), QDeclarativeProperty::Normal);
  1242. QCOMPARE(p2.propertyType(), (int)QVariant::Int);
  1243. delete property; property = 0;
  1244. QCOMPARE(p1.name(), QString("defaultProperty"));
  1245. QCOMPARE(p1.read(), QVariant(10));
  1246. QCOMPARE(p1.type(), QDeclarativeProperty::Property);
  1247. QCOMPARE(p1.propertyTypeCategory(), QDeclarativeProperty::Normal);
  1248. QCOMPARE(p1.propertyType(), (int)QVariant::Int);
  1249. QCOMPARE(p2.name(), QString("defaultProperty"));
  1250. QCOMPARE(p2.read(), QVariant(10));
  1251. QCOMPARE(p2.type(), QDeclarativeProperty::Property);
  1252. QCOMPARE(p2.propertyTypeCategory(), QDeclarativeProperty::Normal);
  1253. QCOMPARE(p2.propertyType(), (int)QVariant::Int);
  1254. }
  1255. void tst_qdeclarativeproperty::initTestCase()
  1256. {
  1257. qmlRegisterType<MyQmlObject>("Test",1,0,"MyQmlObject");
  1258. qmlRegisterType<PropertyObject>("Test",1,0,"PropertyObject");
  1259. qmlRegisterType<MyContainer>("Test",1,0,"MyContainer");
  1260. }
  1261. QTEST_MAIN(tst_qdeclarativeproperty)
  1262. #include "tst_qdeclarativeproperty.moc"