phonebookengines/contactsmodel/tsrc/Integration/TestContactSuite/src/TestUpdateMultipleContactsStep.cpp
changeset 0 e686773b3f54
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookengines/contactsmodel/tsrc/Integration/TestContactSuite/src/TestUpdateMultipleContactsStep.cpp	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,264 @@
+// Copyright (c) 2005-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 "TestUpdateMultipleContactsStep.h"
+#include "TestContactSuiteServer.h"
+#include <cntitem.h>
+#include <cntfield.h>
+#include <cntfldst.h>
+#include <cntdef.h>
+#include <cntdb.h>
+#include <commdb.h>
+
+
+TInt CTestUpdateMultipleContactsStep::iStorage[]=
+{
+KStorageTypeText, KStorageTypeText, KStorageTypeDateTime, KStorageTypeText,KStorageTypeText,KStorageTypeText,KStorageTypeText
+};
+
+TUid CTestUpdateMultipleContactsStep::iFieldUid[]=
+{
+KUidContactFieldAssistant, KUidContactFieldPhoneNumber, KUidContactFieldAnniversary,KUidContactFieldSpouse,KUidContactFieldChildren,KUidContactFieldClass,KUidContactFieldDepartmentName
+};
+
+TUid CTestUpdateMultipleContactsStep::iVcardUid[]=
+{
+KUidContactFieldVCardMapAssistant, KUidContactFieldVCardMapAssistantTel, KUidContactFieldVCardMapAnniversary, KUidContactFieldVCardMapSpouse,KUidContactFieldVCardMapChildren,KUidContactFieldVCardMapClass,KUidContactFieldVCardMapDepartment
+};
+
+CTestUpdateMultipleContactsStep::~CTestUpdateMultipleContactsStep()
+/**
+ * Destructor
+ */
+	{
+
+	}
+
+CTestUpdateMultipleContactsStep::CTestUpdateMultipleContactsStep()
+/**
+ * Constructor
+ */
+	{
+	// **MUST** call SetTestStepName in the constructor as the controlling
+	// framework uses the test step name immediately following construction to set
+	// up the step's unique logging ID.
+	SetTestStepName(KTestUpdateMultipleContactsStep);
+	}
+
+TVerdict CTestUpdateMultipleContactsStep::doTestStepPreambleL()
+/**
+ * @return - TVerdict code
+ * Override of base class virtual
+ */
+	{
+	iScheduler = new (ELeave) CActiveScheduler;
+	CActiveScheduler::Install(iScheduler);
+	SetTestStepResult(EPass);
+	return TestStepResult();
+	}
+
+TVerdict CTestUpdateMultipleContactsStep::doTestStepL()
+/**
+ * @return - TVerdict code
+ * Override of base class pure virtual
+ */
+	{
+	TPtrC fieldName,fieldVal, fieldMultiple;
+ if (!GetStringFromConfig(ConfigSection(), KIniFieldName, fieldName))
+		{
+		ERR_PRINTF1(_L("Unable to read fieldname from ini file"));
+		SetTestStepResult(EFail);
+		}
+	else
+		{
+		if(KErrNone == fieldName.Compare(KAssistance))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[0],iFieldUid[0], iVcardUid[0]);
+			}
+		else if(KErrNone == fieldName.Compare(KAssistanceTel))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[1],iFieldUid[1], iVcardUid[1]);
+			}
+		else if(KErrNone == fieldName.Compare(KAnniversary))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[2],iFieldUid[2], iVcardUid[2]);
+			}
+		else if(KErrNone == fieldName.Compare(KSpouse))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[3],iFieldUid[3], iVcardUid[3]);
+			}
+		else if(KErrNone == fieldName.Compare(KChildren))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[4],iFieldUid[4], iVcardUid[4]);
+			}
+		else if(KErrNone == fieldName.Compare(KClass))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[5],iFieldUid[5], iVcardUid[5]);
+			}
+		else if(KErrNone == fieldName.Compare(KDepartment))
+			{
+			//Get the Field value
+			GetStringFromConfig(ConfigSection(), KIniFieldVal, fieldVal);
+			CreateAndUpdateMultipleContactsL(fieldVal, iStorage[6],iFieldUid[6], iVcardUid[6]);
+			}
+		else
+			{
+			ERR_PRINTF1(_L("Invalid fieldname"));
+			SetTestStepResult(EFail);
+			}
+		}
+		return TestStepResult();
+	}
+
+/** Create Multiple Contact Item with field and Add all contact
+ *	Item to Contact database. Update the multiple contact item field value and  
+ *	verify field is being updated. 
+ *	aValue - field value
+ *  @param aStorageType - Storage type of each field
+ *	@param aContFieldUid - Uid of Contact field
+ *	@param avCardMapUid - Uid of vCard 
+ *	@return - void
+*/		
+void CTestUpdateMultipleContactsStep::CreateAndUpdateMultipleContactsL(TPtrC aValue, TInt aStorageType,TUid aContFieldUid, TUid avCardMap)
+	{
+	TPtrC value, updateVal, getUpdateValue;
+	CContactDatabase *dBase = NULL;
+   _LIT(KTestDbName, "c:contactmultiple.cdb");
+   	TInt year, month, day,noOfCI;
+   	TContactItemId id = 0;
+   	RArray <TInt> idArray;
+	CleanupClosePushL(idArray);
+
+	//replace existing database name
+	dBase = CContactDatabase::ReplaceL(KTestDbName);
+
+	//Get the number of contact item from ini file
+	GetIntFromConfig(ConfigSection(), KNoOfContactItem, noOfCI);
+
+	//Get the int value
+	GetIntFromConfig(ConfigSection(), KIniYear, year);
+	GetIntFromConfig(ConfigSection(), KIniMonth, month);
+	GetIntFromConfig(ConfigSection(), KIniDay, day);
+
+    // Create contact item and add field to it
+    for(TInt range=0;range<noOfCI;range++)
+    	{
+		CContactItem* item = CContactCard::NewLC();
+		CContactItemField* field = CContactItemField::NewL(aStorageType, aContFieldUid);
+		CleanupStack::PushL(field);
+		field->SetMapping(avCardMap);
+		if(aStorageType==KStorageTypeDateTime)
+			{
+			TDateTime date(year,(TMonth)month,day,0,0,0,0);
+			field->DateTimeStorage()->SetTime(date);
+			}
+			else
+			{
+			field->TextStorage()->SetTextL(aValue);
+			}
+			item->AddFieldL(*field);
+			CleanupStack::Pop(field);
+
+		// add contact item to database
+		id = dBase->AddNewContactL(*item);
+		idArray.Append(id);
+		CleanupStack::PopAndDestroy(item);
+    	}
+    dBase->CloseContactL(id);
+
+	// Get the value from ini file for update
+   	GetStringFromConfig(ConfigSection(), KIniUpdatedvalue, updateVal);
+	GetIntFromConfig(ConfigSection(), KIniUpdateYear, year);
+    GetIntFromConfig(ConfigSection(), KIniUpdateMonth, month);
+    GetIntFromConfig(ConfigSection(), KIniUpdateDay, day);
+       	
+    // update multiple contact item field value
+    CContactItem *readItem = NULL;
+    for(TInt readContact=0;readContact<noOfCI;readContact++)
+    	{
+    	readItem = dBase->ReadContactLC(idArray[readContact]);
+    	CContactItemFieldSet& ContactFieldSet = readItem->CardFields();
+		TInt pos = ContactFieldSet.Find(aContFieldUid, avCardMap);
+		if(pos != KErrNotFound)
+			{
+			if(aStorageType==KStorageTypeDateTime)
+				{
+				// update the field value
+				TDateTime date(year,(TMonth)month,day,0,0,0,0);
+   				ContactFieldSet[pos].DateTimeStorage()->SetTime(date);
+   				ContactFieldSet.UpdateFieldL(ContactFieldSet[pos],pos);
+   				
+				// verify the updated field value
+   				TInt upadtePos = ContactFieldSet.Find(aContFieldUid, avCardMap);
+   				TDateTime result=ContactFieldSet[upadtePos].DateTimeStorage()->Time().DateTime();
+   				if((result.Year() == year) && (result.Month() == (TMonth)month) && (result.Day() == day)) 
+					{
+					SetTestStepResult(EPass);	
+					}
+				else
+					{
+					SetTestStepResult(EFail);	
+					}
+				}
+			else
+				{
+				// Update the field value
+				ContactFieldSet[pos].TextStorage()->SetTextL(updateVal);
+				ContactFieldSet.UpdateFieldL(ContactFieldSet[pos],pos);
+		
+				// verify the field is being updated 
+				TInt upadtePos = ContactFieldSet.Find(aContFieldUid, avCardMap);
+				getUpdateValue.Set(ContactFieldSet[upadtePos].TextStorage()->Text());
+	
+				//set the results
+				if(getUpdateValue.Compare(updateVal)==0 )
+					{
+						SetTestStepResult(EPass);
+					}
+				else
+					{
+					SetTestStepResult(EFail);
+					}
+				}
+			}
+		CleanupStack::PopAndDestroy(readItem);	
+    	}
+    CleanupStack::PopAndDestroy(&idArray);
+  	delete dBase;
+	}
+TVerdict CTestUpdateMultipleContactsStep::doTestStepPostambleL()
+/**
+ * @return - TVerdict code
+ * Override of base class virtual
+ */
+	{
+	CActiveScheduler::Install(NULL);
+	delete iScheduler;
+	return TestStepResult();
+	}
+
+