sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Harness for Mstr test code sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: sl@0: #include sl@0: #include "T_MstrStep.h" sl@0: sl@0: /** sl@0: Constructor sl@0: */ sl@0: CT_MstrStep::CT_MstrStep() sl@0: { sl@0: // Call base class method to set up the human readable name for logging sl@0: SetTestStepName(KT_MstrStep); sl@0: } sl@0: sl@0: /** sl@0: Destructor sl@0: */ sl@0: CT_MstrStep::~CT_MstrStep() sl@0: { sl@0: } sl@0: sl@0: TVerdict CT_MstrStep::doTestStepL() sl@0: { sl@0: INFO_PRINTF1(_L("Test Started")); sl@0: TInt r = KErrNone; sl@0: r = iFs.Connect(); sl@0: if (r != KErrNone) sl@0: { sl@0: User::Leave(r); sl@0: } sl@0: __UHEAP_MARK; sl@0: TRAPD(ret,doMenuL()); sl@0: TEST(ret==KErrNone); sl@0: REComSession::FinalClose(); sl@0: __UHEAP_MARKEND; sl@0: iFs.Close(); sl@0: sl@0: INFO_PRINTF1(_L("Test Finished")); sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID T_MstrStep_doMenuL sl@0: sl@0: @SYMPREQ sl@0: sl@0: @SYMTestCaseDesc Tests data type storage sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The test creates a storage manager object, which is filled with some mapings. sl@0: The first thing to verify is the correct insertion of these mappings, checking the type, uid sl@0: and priority. Then the mappings are stored in an INI file, and restored from there to a new sl@0: storage manager object. The test checks that this new object is correct and equal to the sl@0: previous one. The test also tries to find a non-existing app mapping, which gives a 0 Uid. sl@0: API Calls:\n sl@0: CTypeStoreManager::NewL(RFs& aFs) \n sl@0: CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n sl@0: CTypeStoreManager::DeleteDataMapping(const TDataType& aDataType) \n sl@0: CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const \n sl@0: CTypeStoreManager::StoreL() \n sl@0: CTypeStoreManager::ReStoreL() \n sl@0: sl@0: @SYMTestExpectedResults Test should complete without any panic. sl@0: sl@0: */ sl@0: void CT_MstrStep::doMenuL() sl@0: { sl@0: INFO_PRINTF1(_L("Testing Data Type storage")); sl@0: INFO_PRINTF1(_L("Creating CTypeStoreManager object")); sl@0: CTypeStoreManager* mman = CTypeStoreManager::NewL(iFs); sl@0: CleanupStack::PushL(mman); sl@0: sl@0: INFO_PRINTF1(_L("Adding some mappings to table")); sl@0: lPopulateMappingTablesL(mman); sl@0: sl@0: INFO_PRINTF1(_L("Checking mappings in table")); sl@0: lCheckMappingsL(mman); sl@0: sl@0: INFO_PRINTF1(_L("Storing to INI file")); sl@0: mman->StoreL(); sl@0: sl@0: INFO_PRINTF1(_L("Restoring from INI file to new object")); sl@0: CTypeStoreManager* mman2 = CTypeStoreManager::NewL(iFs); sl@0: CleanupStack::PushL(mman2); sl@0: mman2->RestoreL(); sl@0: sl@0: INFO_PRINTF1(_L("Checking restored correctly")); sl@0: sl@0: lCheckMappingsL(mman2); sl@0: sl@0: INFO_PRINTF1(_L("Trying to find non-existent app mappings")); sl@0: TUid scratchUid; sl@0: mman->GetAppByDataType(TDataType(_L8("non/existent")),scratchUid); sl@0: TEST(scratchUid.iUid==0); sl@0: sl@0: INFO_PRINTF1(_L("Clearing table to original state")); sl@0: lClearMappingTablesL(mman2); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // managers sl@0: } sl@0: sl@0: const TUid KTestUidValue1={10101010}; sl@0: const TUid KTestUidValue2={20202020}; sl@0: const TUid KTestUidValue3={30303030}; sl@0: sl@0: void CT_MstrStep::lPopulateMappingTablesL(CTypeStoreManager* aMan) sl@0: { sl@0: aMan->InsertDataMappingL(TDataType(_L8("image/gif")),KDataTypePriorityNormal,KTestUidValue1); sl@0: aMan->InsertDataMappingL(TDataType(_L8("text/plain")),KDataTypePriorityNormal,KTestUidValue2); sl@0: aMan->InsertDataMappingL(TDataType(_L8("text/plain")),KDataTypePriorityNormal,KTestUidValue1,KTestUidValue3); sl@0: aMan->InsertDataMappingL(TDataType(_L8("text/word")),KDataTypePriorityNormal,KTestUidValue2); sl@0: aMan->InsertDataMappingL(TDataType(_L8("something/else")),KDataTypePriorityNormal,KTestUidValue3); sl@0: } sl@0: sl@0: void CT_MstrStep::lClearMappingTablesL(CTypeStoreManager* aMan) sl@0: { sl@0: aMan->DeleteDataMapping(TDataType(_L8("image/gif"))); sl@0: aMan->DeleteDataMapping(TDataType(_L8("text/plain"))); sl@0: aMan->DeleteDataMapping(TDataType(_L8("text/plain")), KTestUidValue3); sl@0: aMan->DeleteDataMapping(TDataType(_L8("text/word"))); sl@0: aMan->DeleteDataMapping(TDataType(_L8("something/else"))); sl@0: sl@0: aMan->StoreL(); sl@0: } sl@0: sl@0: void CT_MstrStep::lCheckMappingsL(CTypeStoreManager* aTypeMan) sl@0: { sl@0: TUid scratchUid; sl@0: aTypeMan->GetAppByDataType(TDataType(_L8("image/gif")),scratchUid); sl@0: TEST(scratchUid==KTestUidValue1); sl@0: aTypeMan->GetAppByDataType(TDataType(_L8("text/plain")),scratchUid); sl@0: TEST(scratchUid==KTestUidValue2); sl@0: aTypeMan->GetAppByDataType(TDataType(_L8("text/plain")),KTestUidValue3,scratchUid); sl@0: TEST(scratchUid==KTestUidValue1); sl@0: aTypeMan->GetAppByDataType(TDataType(_L8("text/word")),scratchUid); sl@0: TEST(scratchUid==KTestUidValue2); sl@0: aTypeMan->GetAppByDataType(TDataType(_L8("something/else")),scratchUid); sl@0: TEST(scratchUid==KTestUidValue3); sl@0: aTypeMan->GetAppByDataType(TDataType(_L8("image/*")),scratchUid); sl@0: TEST(scratchUid==KTestUidValue1); sl@0: sl@0: TDataType nativeData(KTestUidValue3); sl@0: TEST(nativeData.IsNative()); sl@0: sl@0: CArrayFixFlat* array=new(ELeave) CArrayFixFlat(1); sl@0: CleanupStack::PushL(array); sl@0: aTypeMan->GetDataTypesByAppL(KTestUidValue1,array); sl@0: TEST(array->Count()==1); sl@0: TEST((*array)[0]==TDataType(_L8("image/gif"))); sl@0: array->Delete(0); sl@0: aTypeMan->GetDataTypesByAppL(KTestUidValue2,array); sl@0: TEST(array->Count()==2); sl@0: TEST((*array)[0]==TDataType(_L8("text/plain"))); sl@0: TEST((*array)[1]==TDataType(_L8("text/word"))); sl@0: array->Delete(0,2); sl@0: aTypeMan->GetDataTypesByAppL(KTestUidValue3,array); sl@0: TEST(array->Count()==1); sl@0: TEST((*array)[0]==TDataType(_L8("something/else"))); sl@0: array->Delete(0); sl@0: TUid uid; sl@0: uid.iUid=0; sl@0: aTypeMan->GetDataTypesByAppL(uid,array); sl@0: TEST(array->Count()==4); sl@0: CleanupStack::PopAndDestroy(); // array sl@0: }