camerauis/cameraxui/cxengine/tsrc/unit/unittest_cxeharvestercontrolsymbian/unittest_cxeharvestercontrolsymbian.cpp
changeset 19 d9aefe59d544
child 37 64817133cd1d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/camerauis/cameraxui/cxengine/tsrc/unit/unittest_cxeharvestercontrolsymbian/unittest_cxeharvestercontrolsymbian.cpp	Fri Apr 16 14:51:30 2010 +0300
@@ -0,0 +1,89 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+#include <QTest>
+#include <QSignalSpy>
+#include <QString>
+
+#include "unittest_cxeharvestercontrolsymbian.h"
+#include "cxeharvestercontrolsymbian.h"
+#include "cxutils.h"
+
+UnitTestCxeHarvesterControlSymbian::UnitTestCxeHarvesterControlSymbian()
+{
+}
+
+
+UnitTestCxeHarvesterControlSymbian::~UnitTestCxeHarvesterControlSymbian()
+{
+    cleanup();
+}
+
+
+void UnitTestCxeHarvesterControlSymbian::init()
+{
+    mHarvesterControl = new CxeHarvesterControlSymbian();
+}
+
+void UnitTestCxeHarvesterControlSymbian::cleanup()
+{
+    delete mHarvesterControl;
+    mHarvesterControl = NULL;
+}
+
+void UnitTestCxeHarvesterControlSymbian::testHarvestFile()
+{
+    CX_DEBUG_ENTER_FUNCTION();
+    
+    QSignalSpy harvestCompleteSpy(mHarvesterControl, SIGNAL(fileHarvested(const QString&, int)));
+    QString filename;
+
+    QVERIFY(harvestCompleteSpy.isValid()); 
+
+    // case 1: testing with wrong dummy file, we should get an error code with harvestcomplete
+    // since filename is invalid
+    mHarvesterControl->harvestFile(filename, 0, 0);
+ 
+    QCOMPARE( harvestCompleteSpy.count(), 1 );
+    if (harvestCompleteSpy.count() > 0) {
+        QList<QVariant> initModeArguments = harvestCompleteSpy.takeFirst();
+        // we are only interested in error code in this case 1
+        QCOMPARE(initModeArguments.at(1).toInt(), KErrNotFound);
+    }
+
+    
+    // case 2: testing with real filename, harvesting should go fine, callback without errors
+    filename = QString("test.jpg");
+    mHarvesterControl->harvestFile(filename, 0, 0);
+ 
+    QCOMPARE( harvestCompleteSpy.count(), 1 );
+    if (harvestCompleteSpy.count() > 0) {
+        QList<QVariant> initModeArguments = harvestCompleteSpy.takeFirst();
+        // we check both the filename, since in this case harvesting should go fine
+        // and error returned is KErrNone.
+        QCOMPARE(initModeArguments.at(1).toString(), filename);
+        QCOMPARE(initModeArguments.at(1).toInt(), KErrNone);
+    }
+
+    CX_DEBUG_EXIT_FUNCTION();
+}
+
+
+// main() function non-GUI testing
+QTEST_MAIN(UnitTestCxeHarvesterControlSymbian);
+
+// End of file