messagingfw/msgtestfw/TestActions/Base/Attachments/src/CMtfTestActionCreateTestMimeHeaders.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/messagingfw/msgtestfw/TestActions/Base/Attachments/src/CMtfTestActionCreateTestMimeHeaders.cpp Mon Jan 18 20:36:02 2010 +0200
@@ -0,0 +1,207 @@
+// Copyright (c) 2004-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:
+// __ACTION_INFO_BEGIN__
+// [Action Name]
+// CreateTestMimeHeaders
+// [Action Parameters]
+// Session <input>: Reference to the session.
+// MsgId <input>: Value of the message Id.
+// AttachmentId <input>: Attachment to add the mime headers to.
+// [Action Description]
+// Creates a set of test mime headers and stores
+// [APIs Used]
+// CMsvSession::GetEntryL
+// CMsvStore::ReadStoreL
+// CMsvStore::AttachmentManagerL
+// MMsvAttachmentManager::AttachmentCount
+// TODO
+// __ACTION_INFO_END__
+//
+//
+
+
+#include "CMtfTestActionCreateTestMimeHeaders.h"
+#include "CMtfTestCase.h"
+#include "CMtfTestActionParameters.h"
+#include "MtfTestActionUtilsUser.h"
+#include "CMtfAsyncWaiter.h"
+
+#include <miutset.h>
+#include <mmsvattachmentmanager.h>
+#include <cmsvmimeheaders.h>
+
+_LIT8(KTxtContentDescription, "TestContentDescription");
+_LIT8(KTxtContentBase, "TestContentBase");
+_LIT(KTxtContentLocation, "TestContentLocation");
+_LIT8(KTxtContentId, "TestContentId");
+_LIT8(KTxtContentType, "Text");
+_LIT8(KTxtContentSubType, "Plain");
+_LIT8(KTxtContentDisposition, "TestContentDisposition");
+_LIT8(KTxtParam1, "Param1");
+_LIT8(KTxtParam2, "Param2");
+_LIT8(KTxtParam3, "Param3");
+_LIT8(KTxtParam4, "Param4");
+_LIT8(KTxtParam5, "Param5");
+_LIT8(KTxtParam6, "Param6");
+_LIT8(KTxtParam7, "Param7");
+_LIT8(KTxtParam8, "Param8");
+_LIT8(KTxtParam9, "Param9");
+
+CMtfTestAction* CMtfTestActionCreateTestMimeHeaders::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
+ {
+ CMtfTestActionCreateTestMimeHeaders* self = new(ELeave) CMtfTestActionCreateTestMimeHeaders(aTestCase);
+ CleanupStack::PushL(self);
+ self->ConstructL(aActionParameters);
+ CleanupStack::Pop();
+ return self;
+ }
+
+
+CMtfTestActionCreateTestMimeHeaders::CMtfTestActionCreateTestMimeHeaders(CMtfTestCase& aTestCase)
+ : CMtfSynchronousTestAction(aTestCase)
+ {
+ }
+
+
+CMtfTestActionCreateTestMimeHeaders::~CMtfTestActionCreateTestMimeHeaders()
+ {
+ }
+
+
+void CMtfTestActionCreateTestMimeHeaders::ExecuteActionL()
+ {
+ TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionCreateTestMimeHeaders);
+ CMsvSession* paramSession = ObtainParameterReferenceL<CMsvSession>(TestCase(),ActionParameters().Parameter(0));
+ TMsvId messageEntry = ObtainValueParameterL<TMsvId>(TestCase(),ActionParameters().Parameter(1));
+ TMsvAttachmentId attachmentId = ObtainValueParameterL<TMsvAttachmentId>(TestCase(),ActionParameters().Parameter(2));
+
+ CMsvEntry* entry = paramSession->GetEntryL(messageEntry);
+ CleanupStack::PushL(entry);
+
+ CMsvStore* store = entry->EditStoreL();
+ CleanupStack::PushL(store);
+
+ MMsvAttachmentManager& manager = store->AttachmentManagerL();
+
+ CMsvMimeHeaders* mimeHeaders = CMsvMimeHeaders::NewL();
+ CleanupStack::PushL(mimeHeaders);
+
+ mimeHeaders->SetContentDescriptionL(KTxtContentDescription());
+ mimeHeaders->SetContentBaseL(KTxtContentBase());
+ mimeHeaders->SetContentLocationL(KTxtContentLocation());
+ mimeHeaders->SetContentIdL(KTxtContentId());
+ mimeHeaders->SetContentTypeL(KTxtContentType());
+ mimeHeaders->SetContentSubTypeL(KTxtContentSubType());
+ mimeHeaders->SetContentDispositionL(KTxtContentDisposition());
+ mimeHeaders->ContentTypeParams().AppendL(KTxtParam1());
+ mimeHeaders->ContentTypeParams().AppendL(KTxtParam2());
+ mimeHeaders->ContentTypeParams().AppendL(KTxtParam3());
+ mimeHeaders->ContentDispositionParams().AppendL(KTxtParam4());
+ mimeHeaders->ContentDispositionParams().AppendL(KTxtParam5());
+ mimeHeaders->ContentDispositionParams().AppendL(KTxtParam6());
+ mimeHeaders->XTypeParams().AppendL(KTxtParam7());
+ mimeHeaders->XTypeParams().AppendL(KTxtParam8());
+ mimeHeaders->XTypeParams().AppendL(KTxtParam9());
+
+ CMtfAsyncWaiter* waiter = CMtfAsyncWaiter::NewL();
+ CleanupStack::PushL(waiter);
+ CMsvAttachment* attachment = manager.GetAttachmentInfoL(attachmentId);
+ CleanupStack::PushL(attachment);
+ mimeHeaders->StoreL(*attachment);
+ manager.ModifyAttachmentInfoL(attachment, waiter->iStatus);
+ CleanupStack::Pop(attachment);
+ waiter->StartAndWait();
+ User::LeaveIfError(waiter->Result());
+ store->CommitL();
+ CleanupStack::PopAndDestroy(3, store); // waiter, mimeHeaders, store
+
+ CompareMimeHeadersL(*entry, attachmentId);
+
+
+ CleanupStack::PopAndDestroy(entry);
+ TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionCreateTestMimeHeaders);
+ TestCase().ActionCompletedL(*this);
+
+
+
+ }
+
+void CMtfTestActionCreateTestMimeHeaders::CompareMimeHeadersL(CMsvEntry& aEntry, TMsvAttachmentId aAttachId)
+ {
+ CMsvStore* store = aEntry.ReadStoreL();
+ CleanupStack::PushL(store);
+
+ CMsvAttachment* attachment = store->AttachmentManagerL().GetAttachmentInfoL(aAttachId);
+ CleanupStack::PushL(attachment);
+
+ CMsvMimeHeaders* mimeHeaders = CMsvMimeHeaders::NewL();
+ CleanupStack::PushL(mimeHeaders);
+
+ mimeHeaders->RestoreL(*attachment);
+ if( mimeHeaders->ContentDescription().Compare(KTxtContentDescription()) != 0 )
+ User::Leave(KErrNotFound);
+ if( mimeHeaders->ContentBase().Compare(KTxtContentBase()) != 0 )
+ User::Leave(KErrNotFound);
+ if( mimeHeaders->ContentLocation().Compare(KTxtContentLocation()) != 0 )
+ User::Leave(KErrNotFound);
+ if( mimeHeaders->ContentId().Compare(KTxtContentId()) != 0 )
+ User::Leave(KErrNotFound);
+ if( mimeHeaders->ContentType().Compare(KTxtContentType()) != 0 )
+ User::Leave(KErrNotFound);
+ if( mimeHeaders->ContentSubType().Compare(KTxtContentSubType()) != 0 )
+ User::Leave(KErrNotFound);
+ if( mimeHeaders->ContentDisposition().Compare(KTxtContentDisposition()) != 0 )
+ User::Leave(KErrNotFound);
+
+ CDesC8Array& desArray1 = mimeHeaders->ContentTypeParams();
+ if( desArray1.Count() == 3 )
+ {
+ if( desArray1[0].Compare(KTxtParam1()) != 0 )
+ User::Leave(KErrNotFound);
+ if( desArray1[1].Compare(KTxtParam2()) != 0 )
+ User::Leave(KErrNotFound);
+ if( desArray1[2].Compare(KTxtParam3()) != 0 )
+ User::Leave(KErrNotFound);
+ }
+ else
+ User::Leave(KErrNotFound);
+
+ CDesC8Array& desArray2 = mimeHeaders->ContentDispositionParams();
+ if( desArray2.Count() == 3 )
+ {
+ if( desArray2[0].Compare(KTxtParam4()) != 0 )
+ User::Leave(KErrNotFound);
+ if( desArray2[1].Compare(KTxtParam5()) != 0 )
+ User::Leave(KErrNotFound);
+ if( desArray2[2].Compare(KTxtParam6()) != 0 )
+ User::Leave(KErrNotFound);
+ }
+ else
+ User::Leave(KErrNotFound);
+
+ CDesC8Array& desArray3 = mimeHeaders->XTypeParams();
+ if( desArray3.Count() == 3 )
+ {
+ if( desArray3[0].Compare(KTxtParam7()) != 0 )
+ User::Leave(KErrNotFound);
+ if( desArray3[1].Compare(KTxtParam8()) != 0 )
+ User::Leave(KErrNotFound);
+ if( desArray3[2].Compare(KTxtParam9()) != 0 )
+ User::Leave(KErrNotFound);
+ }
+ else
+ User::Leave(KErrNotFound);
+
+ CleanupStack::PopAndDestroy(3, store); // mimeHeaders, attachment, store
+ }