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: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "T_Maps.h" sl@0: sl@0: sl@0: /** sl@0: Auxiliary Fn for Test Case ID T-Maps-testTMappingDataTypeToAppL sl@0: sl@0: This function receives two mappings, and verifies if they data members sl@0: are the same. sl@0: sl@0: */ sl@0: TBool CT_Maps::cmpMappingDataTypeToAdd( TMappingDataTypeToApp& map1, TMappingDataTypeToApp& map2 ) sl@0: { sl@0: return TBool( map1.iAppUid == map2.iAppUid && sl@0: map1.iDataType == map2.iDataType && sl@0: map1.iPriority == map2.iPriority && sl@0: map1.iServiceUid == map2.iServiceUid); sl@0: } sl@0: sl@0: sl@0: //const TInt KErrTestFailed = -1; sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID T-Maps-testTMappingDataTypeToAppL sl@0: sl@0: @SYMPREQ sl@0: sl@0: @SYMTestCaseDesc Tests TMappingDataTypeToApp class sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The test creates 3 different mappings, identified by a TUid, TDataType sl@0: and TDataTypePriority, verifying that they are correctly created. The consitency of these sl@0: mappings through the process of writing and reading to and from a stream is also checked.\n sl@0: Also, a store of mappings is created, verifying the insertion, and the insertion depending sl@0: on the TDataTypePriority, checking that it handles the insertion in accordance.\n sl@0: API Calls:\n sl@0: TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n sl@0: CTypeStoreManager::NewL(RFs& aFs) \n sl@0: CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n sl@0: CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const \n sl@0: CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n sl@0: sl@0: @SYMTestExpectedResults Test should complete without any panic. sl@0: sl@0: */ sl@0: void CT_Maps::testTMappingDataTypeToAppL() sl@0: { sl@0: const TUid uid1 = { 0x11111111 }; sl@0: const TUid uid2 = { 0x22222222 }; sl@0: const TUid uid3 = { 0x33333333 }; sl@0: const TUid uid4 = { 0x44444444 }; sl@0: const TUid uid5 = { 0x55555555 }; sl@0: const TUid uid6 = { 0x66666666 }; sl@0: sl@0: const TUid serviceUid1 = { 0x00001111 }; sl@0: const TUid serviceUid2 = { 0x00002222 }; sl@0: //const TUid serviceUid3 = { 0x00003333 }; sl@0: const TUid serviceUid4 = { 0x00004444 }; sl@0: sl@0: const TDataType data1( uid1 ); sl@0: const TDataType data2( uid2 ); sl@0: const TDataType data3( uid3 ); sl@0: const TDataType data4( uid4 ); sl@0: sl@0: TUid result; sl@0: sl@0: // Test that mappings are serialized correctly sl@0: TMappingDataTypeToApp mapping1( data1, TDataTypePriority( 100 ), uid3 ); sl@0: TMappingDataTypeToApp mapping2( data1, TDataTypePriority( 100 ), uid3 ); sl@0: TMappingDataTypeToApp mapping3( data2, TDataTypePriority( 200 ), uid4 ); sl@0: sl@0: RFileBuf buf1; sl@0: RFileBuf buf2; sl@0: RFileBuf buf3; sl@0: sl@0: TBuf<256> tmpfilename; sl@0: sl@0: buf1.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream ); sl@0: buf2.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream ); sl@0: buf3.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream ); sl@0: sl@0: RWriteStream write1( &buf1 ); sl@0: RWriteStream write2( &buf2 ); sl@0: RWriteStream write3( &buf3 ); sl@0: sl@0: RReadStream read1( &buf1 ); sl@0: RReadStream read2( &buf2 ); sl@0: RReadStream read3( &buf3 ); sl@0: sl@0: TEST( cmpMappingDataTypeToAdd( mapping1, mapping2 ) ); sl@0: TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) ); sl@0: TEST( !cmpMappingDataTypeToAdd( mapping2, mapping3 ) ); sl@0: sl@0: INFO_PRINTF1(_L("Testing storage of objects to stream")); sl@0: sl@0: write1 << mapping1; sl@0: write2 << mapping2; sl@0: write3 << mapping3; sl@0: sl@0: write1.CommitL(); sl@0: write2.CommitL(); sl@0: write3.CommitL(); sl@0: sl@0: TEST( cmpMappingDataTypeToAdd( mapping1, mapping2 ) ); sl@0: TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) ); sl@0: TEST( !cmpMappingDataTypeToAdd( mapping2, mapping3 ) ); sl@0: sl@0: INFO_PRINTF1(_L("Testing reconstruction from stream")); sl@0: sl@0: read1 >> mapping2; sl@0: read2 >> mapping3; sl@0: read3 >> mapping1; sl@0: sl@0: TEST( !cmpMappingDataTypeToAdd( mapping1, mapping2 ) ); sl@0: TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) ); sl@0: TEST( cmpMappingDataTypeToAdd( mapping2, mapping3 ) ); sl@0: sl@0: write1.Close(); sl@0: write2.Close(); sl@0: write3.Close(); sl@0: sl@0: read1.Close(); sl@0: read2.Close(); sl@0: read3.Close(); sl@0: sl@0: buf1.Close(); sl@0: buf2.Close(); sl@0: buf3.Close(); sl@0: sl@0: sl@0: // Test the insert and find functions sl@0: INFO_PRINTF1(_L("Data map insertion")); sl@0: sl@0: CTypeStoreManager* tsm = CTypeStoreManager::NewL( iFs ); sl@0: CleanupStack::PushL( tsm ); sl@0: sl@0: tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid1 ); //data1 mapped to uid1 sl@0: tsm->InsertDataMappingL( data2, TDataTypePriority( 200 ), uid2 ); //data2 mapped to uid2 sl@0: tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid1, serviceUid1 ); sl@0: tsm->InsertDataMappingL( data2, TDataTypePriority( 100 ), uid6, serviceUid2 ); sl@0: tsm->InsertDataMappingL( data1, TDataTypePriority( 200 ), uid3 ); //data1 mapped to uid3, not uid1 anymore sl@0: tsm->InsertDataMappingL( data4, TDataTypePriority( 200 ), uid4, serviceUid4 ); sl@0: tsm->InsertDataMappingL( data4, TDataTypePriority( 200 ), uid5 ); sl@0: sl@0: tsm->GetAppByDataType( data1, result ); sl@0: TEST( uid3 == result ); sl@0: tsm->GetAppByDataType( data2, result ); sl@0: TEST( uid2 == result ); sl@0: tsm->GetAppByDataType( data1, serviceUid1, result); sl@0: TEST( uid1 == result ); sl@0: tsm->GetAppByDataType( data2, serviceUid2, result); sl@0: TEST( uid6 == result ); sl@0: tsm->GetAppByDataType( data4, result); sl@0: TEST( uid5 == result ); sl@0: tsm->GetAppByDataType( data4, serviceUid4, result); sl@0: TEST( uid4 == result ); sl@0: sl@0: INFO_PRINTF1(_L("Data map insertion by priority")); sl@0: sl@0: TEST( tsm->InsertIfHigherL( data2, TDataTypePriority( 900 ), uid4 ) ); //Should be higher priority sl@0: tsm->GetAppByDataType( data2, result ); sl@0: TEST( uid4 == result ); sl@0: sl@0: TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 200 ), uid1 ) ); //Should be lower priority sl@0: tsm->GetAppByDataType( data1, result ); sl@0: TEST( uid3 == result ); sl@0: sl@0: TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 100 ), uid2 ) ); //Should be lower priority sl@0: tsm->GetAppByDataType( data1, result ); sl@0: TEST( uid3 == result ); sl@0: sl@0: TEST( tsm->InsertIfHigherL( data1, TDataTypePriority( 400 ), uid4 ) ); //Should be higher priority sl@0: tsm->GetAppByDataType( data1, result ); sl@0: TEST( uid4 == result ); sl@0: sl@0: TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 300 ), uid3 ) ); //Should be lower priority sl@0: tsm->GetAppByDataType( data1, result ); sl@0: TEST( uid4 == result ); sl@0: sl@0: TEST( tsm->InsertIfHigherL( data1, TDataTypePriority( 300 ), uid3, serviceUid1 ) ); sl@0: tsm->GetAppByDataType( data1, serviceUid1, result); sl@0: TEST( uid3 == result ); sl@0: sl@0: TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 100 ), uid5, serviceUid1 ) ); sl@0: tsm->GetAppByDataType( data1, serviceUid1, result); sl@0: TEST( uid3 == result ); sl@0: sl@0: tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid5, serviceUid1 ); sl@0: tsm->GetAppByDataType( data1, serviceUid1, result); sl@0: TEST( uid5 == result ); sl@0: sl@0: tsm->GetAppByDataType( data4, serviceUid2, result); sl@0: TEST( KNullUid == result ); sl@0: sl@0: CleanupStack::PopAndDestroy(tsm); sl@0: } sl@0: sl@0: sl@0: CT_Maps::~CT_Maps() sl@0: /** sl@0: Destructor sl@0: */ sl@0: { sl@0: } sl@0: sl@0: CT_Maps::CT_Maps() sl@0: /** sl@0: Constructor sl@0: */ sl@0: { sl@0: // Call base class method to set up the human readable name for logging sl@0: SetTestStepName(KT_Maps); sl@0: } sl@0: sl@0: /* @SYMTestCaseID T-Maps-doTestStepL sl@0: sl@0: @SYMPREQ DEF032304 sl@0: sl@0: @SYMTestCaseDesc Testing of TMappingDataTypeToApp perisitance. sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions Just execute program. Will pause and report any failure. sl@0: sl@0: @SYMTestExpectedResults List of sucessfull tests should appear in a console window. sl@0: */ sl@0: TVerdict CT_Maps::doTestStepL() sl@0: { sl@0: // sl@0: INFO_PRINTF1(_L("Test Started")); sl@0: INFO_PRINTF1(_L("Testing the TMappingDataTypeToApp")); sl@0: sl@0: // sl@0: // set up the directory structure sl@0: iFs.Connect(); sl@0: // sl@0: // run the testcode (inside an alloc heaven harness) sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(r,testTMappingDataTypeToAppL()); sl@0: TEST(r==KErrNone); sl@0: sl@0: iFs.Close(); sl@0: INFO_PRINTF1(_L("TMappingDataTypeToApp test finished\n")); sl@0: sl@0: REComSession::FinalClose(); sl@0: __UHEAP_MARKEND; sl@0: sl@0: return TestStepResult(); sl@0: } sl@0: