summaryrefslogtreecommitdiff
path: root/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp')
-rw-r--r--tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
index 6aef3b4..edc6ad1 100644
--- a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
+++ b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
@@ -269,9 +269,9 @@ public:
{ m_qtFunctionInvoked = 37; return BazPolicy; }
Q_INVOKABLE MyQObject::Strategy myInvokableReturningQualifiedEnum()
{ m_qtFunctionInvoked = 38; return BazStrategy; }
- Q_INVOKABLE QVector<int> myInvokableReturningVectorOfInt()
- { m_qtFunctionInvoked = 11; return QVector<int>(); }
- Q_INVOKABLE void myInvokableWithVectorOfIntArg(const QVector<int> &)
+ Q_INVOKABLE QVector<CustomType> myInvokableReturningVectorOfCustomType()
+ { m_qtFunctionInvoked = 11; return QVector<CustomType>(); }
+ Q_INVOKABLE void myInvokableWithVectorOfCustomTypeArg(const QVector<CustomType> &)
{ m_qtFunctionInvoked = 12; }
Q_INVOKABLE QObject *myInvokableReturningQObjectStar()
{ m_qtFunctionInvoked = 13; return this; }
@@ -1359,16 +1359,17 @@ void tst_QScriptExtQObject::callQtInvokable2()
// first time we expect failure because the metatype is not registered
m_myObject->resetQtFunctionInvoked();
- QCOMPARE(m_engine->evaluate("myObject.myInvokableReturningVectorOfInt()").isError(), true);
+ QCOMPARE(QMetaType::type("QVector<CustomType>"), QMetaType::UnknownType); // this type should not be registered yet
+ QCOMPARE(m_engine->evaluate("myObject.myInvokableReturningVectorOfCustomType()").isError(), true);
QCOMPARE(m_myObject->qtFunctionInvoked(), -1);
- QCOMPARE(m_engine->evaluate("myObject.myInvokableWithVectorOfIntArg(0)").isError(), true);
+ QCOMPARE(m_engine->evaluate("myObject.myInvokableWithVectorOfCustomTypeArg(CustomType())").isError(), true);
QCOMPARE(m_myObject->qtFunctionInvoked(), -1);
// now we register it, and it should work
- qScriptRegisterSequenceMetaType<QVector<int> >(m_engine);
+ qScriptRegisterSequenceMetaType<QVector<CustomType> >(m_engine);
{
- QScriptValue ret = m_engine->evaluate("myObject.myInvokableReturningVectorOfInt()");
+ QScriptValue ret = m_engine->evaluate("myObject.myInvokableReturningVectorOfCustomType()");
QCOMPARE(ret.isArray(), true);
QCOMPARE(m_myObject->qtFunctionInvoked(), 11);
}
@@ -1377,7 +1378,8 @@ void tst_QScriptExtQObject::callQtInvokable2()
void tst_QScriptExtQObject::callQtInvokable3()
{
{
- QScriptValue ret = m_engine->evaluate("myObject.myInvokableWithVectorOfIntArg(myObject.myInvokableReturningVectorOfInt())");
+ qScriptRegisterSequenceMetaType<QVector<CustomType> >(m_engine);
+ QScriptValue ret = m_engine->evaluate("myObject.myInvokableWithVectorOfCustomTypeArg(myObject.myInvokableReturningVectorOfCustomType())");
QCOMPARE(ret.isUndefined(), true);
QCOMPARE(m_myObject->qtFunctionInvoked(), 12);
}