os/ossrv/genericservices/mimerecognitionfw/tef/T_MAPS.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file 
    18  @internalComponent - Internal Symbian test code 
    19 */
    20 
    21 
    22 
    23 #include <e32uid.h>
    24 #include <f32file.h>
    25 #include <apmrec.h>
    26 #include <datastor.h>
    27 #include <ecom/ecom.h>
    28 
    29 #include "T_Maps.h"
    30 
    31 
    32 /**
    33   Auxiliary Fn for Test Case ID T-Maps-testTMappingDataTypeToAppL
    34  
    35   This function receives two mappings, and verifies if they data members 
    36   are the same.
    37   
    38 */
    39 TBool CT_Maps::cmpMappingDataTypeToAdd( TMappingDataTypeToApp& map1, TMappingDataTypeToApp& map2 )
    40 	{
    41 	return TBool( map1.iAppUid == map2.iAppUid &&
    42 		map1.iDataType == map2.iDataType && 
    43 		map1.iPriority == map2.iPriority &&
    44 		map1.iServiceUid == map2.iServiceUid);
    45 	}	
    46 
    47 
    48 //const TInt KErrTestFailed = -1;
    49 
    50 
    51 /**
    52    @SYMTestCaseID		T-Maps-testTMappingDataTypeToAppL
    53   
    54    @SYMPREQ			
    55   
    56    @SYMTestCaseDesc 	Tests TMappingDataTypeToApp class 
    57   
    58    @SYMTestPriority 	High
    59   
    60    @SYMTestStatus 		Implemented
    61    
    62    @SYMTestActions  	The test creates 3 different mappings, identified by a TUid, TDataType
    63    and TDataTypePriority, verifying that they are correctly created. The consitency of these 
    64    mappings through the process of writing and reading to and from a stream is also checked.\n
    65    Also, a store of mappings is created, verifying the insertion, and the insertion depending
    66    on the TDataTypePriority, checking that it handles the insertion in accordance.\n 
    67    API Calls:\n	
    68    TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
    69    CTypeStoreManager::NewL(RFs& aFs) \n
    70    CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
    71    CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const \n
    72    CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
    73    
    74    @SYMTestExpectedResults Test should complete without any panic.
    75    
    76  */
    77 void CT_Maps::testTMappingDataTypeToAppL()
    78 	{
    79 	const TUid uid1 = { 0x11111111 };
    80 	const TUid uid2 = { 0x22222222 };
    81 	const TUid uid3 = { 0x33333333 };
    82 	const TUid uid4 = { 0x44444444 };
    83 	const TUid uid5 = { 0x55555555 };
    84 	const TUid uid6 = { 0x66666666 };
    85 	
    86 	const TUid serviceUid1 = { 0x00001111 };
    87 	const TUid serviceUid2 = { 0x00002222 };
    88 	//const TUid serviceUid3 = { 0x00003333 };
    89 	const TUid serviceUid4 = { 0x00004444 };
    90 
    91 	const TDataType data1( uid1 );
    92 	const TDataType data2( uid2 );
    93 	const TDataType data3( uid3 );
    94 	const TDataType data4( uid4 );
    95 	
    96 	TUid result;
    97 	
    98 	// Test that mappings are serialized correctly
    99 	TMappingDataTypeToApp mapping1( data1, TDataTypePriority( 100 ), uid3 );
   100 	TMappingDataTypeToApp mapping2( data1, TDataTypePriority( 100 ), uid3 );
   101 	TMappingDataTypeToApp mapping3( data2, TDataTypePriority( 200 ), uid4 );
   102 
   103 	RFileBuf buf1;
   104 	RFileBuf buf2;
   105 	RFileBuf buf3;
   106 	
   107 	TBuf<256> tmpfilename;
   108 	
   109 	buf1.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream );
   110 	buf2.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream );
   111 	buf3.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream );
   112 
   113 	RWriteStream write1( &buf1 );
   114 	RWriteStream write2( &buf2 );
   115 	RWriteStream write3( &buf3 );
   116 	
   117 	RReadStream read1( &buf1 );
   118 	RReadStream read2( &buf2 );
   119 	RReadStream read3( &buf3 );
   120 	
   121 	TEST(  cmpMappingDataTypeToAdd( mapping1, mapping2 ) );
   122 	TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) );
   123 	TEST( !cmpMappingDataTypeToAdd( mapping2, mapping3 ) );
   124 		
   125 	INFO_PRINTF1(_L("Testing storage of objects to stream"));
   126 	
   127 	write1 << mapping1;
   128 	write2 << mapping2;
   129 	write3 << mapping3;
   130 	
   131 	write1.CommitL();
   132 	write2.CommitL();
   133 	write3.CommitL();
   134 		
   135 	TEST(  cmpMappingDataTypeToAdd( mapping1, mapping2 ) );
   136 	TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) );
   137 	TEST( !cmpMappingDataTypeToAdd( mapping2, mapping3 ) );
   138 		
   139 	INFO_PRINTF1(_L("Testing reconstruction from stream"));
   140 	
   141 	read1 >> mapping2;
   142 	read2 >> mapping3;
   143 	read3 >> mapping1;
   144 		
   145 	TEST( !cmpMappingDataTypeToAdd( mapping1, mapping2 ) );
   146 	TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) );
   147 	TEST(  cmpMappingDataTypeToAdd( mapping2, mapping3 ) );
   148 		
   149 	write1.Close();
   150 	write2.Close();
   151 	write3.Close();
   152 	
   153 	read1.Close();
   154 	read2.Close();
   155 	read3.Close();
   156 	
   157 	buf1.Close();
   158 	buf2.Close();
   159 	buf3.Close();
   160 	
   161 	
   162 	// Test the insert and find functions
   163 	INFO_PRINTF1(_L("Data map insertion"));
   164 	
   165 	CTypeStoreManager* tsm = CTypeStoreManager::NewL( iFs );
   166 	CleanupStack::PushL( tsm );
   167 	
   168 	tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid1 ); //data1 mapped to uid1
   169 	tsm->InsertDataMappingL( data2, TDataTypePriority( 200 ), uid2 ); //data2 mapped to uid2
   170 	tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid1, serviceUid1 ); 
   171 	tsm->InsertDataMappingL( data2, TDataTypePriority( 100 ), uid6, serviceUid2 ); 
   172 	tsm->InsertDataMappingL( data1, TDataTypePriority( 200 ), uid3 ); //data1 mapped to uid3, not uid1 anymore
   173 	tsm->InsertDataMappingL( data4, TDataTypePriority( 200 ), uid4, serviceUid4 ); 
   174 	tsm->InsertDataMappingL( data4, TDataTypePriority( 200 ), uid5 ); 
   175 
   176 	tsm->GetAppByDataType( data1, result );
   177 	TEST( uid3 == result );
   178 	tsm->GetAppByDataType( data2, result );
   179 	TEST( uid2 == result );
   180 	tsm->GetAppByDataType( data1, serviceUid1, result);
   181 	TEST( uid1 == result );
   182 	tsm->GetAppByDataType( data2, serviceUid2, result);
   183 	TEST( uid6 == result );
   184 	tsm->GetAppByDataType( data4, result);
   185 	TEST( uid5 == result );
   186 	tsm->GetAppByDataType( data4, serviceUid4, result);
   187 	TEST( uid4 == result );
   188 			
   189 	INFO_PRINTF1(_L("Data map insertion by priority"));
   190 	
   191 	TEST(  tsm->InsertIfHigherL( data2, TDataTypePriority( 900 ), uid4 ) ); //Should be higher priority
   192 	tsm->GetAppByDataType( data2, result );
   193 	TEST( uid4 == result ); 
   194 	
   195 	TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 200 ), uid1 ) ); //Should be lower priority
   196 	tsm->GetAppByDataType( data1, result );
   197 	TEST( uid3 == result ); 
   198 	
   199 	TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 100 ), uid2 ) ); //Should be lower priority
   200 	tsm->GetAppByDataType( data1, result );
   201 	TEST( uid3 == result ); 
   202 	
   203 	TEST(  tsm->InsertIfHigherL( data1, TDataTypePriority( 400 ), uid4 ) ); //Should be higher priority
   204 	tsm->GetAppByDataType( data1, result );
   205 	TEST( uid4 == result ); 
   206 	
   207 	TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 300 ), uid3 ) ); //Should be lower priority
   208 	tsm->GetAppByDataType( data1, result );
   209 	TEST( uid4 == result );
   210 	
   211 	TEST( tsm->InsertIfHigherL( data1, TDataTypePriority( 300 ), uid3, serviceUid1 ) ); 
   212 	tsm->GetAppByDataType( data1, serviceUid1, result);
   213 	TEST( uid3 == result ); 
   214 	
   215 	TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 100 ), uid5, serviceUid1 ) ); 
   216 	tsm->GetAppByDataType( data1, serviceUid1, result);
   217 	TEST( uid3 == result ); 
   218 	
   219 	tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid5, serviceUid1 ); 
   220 	tsm->GetAppByDataType( data1, serviceUid1, result);
   221 	TEST( uid5 == result );
   222 	
   223 	tsm->GetAppByDataType( data4, serviceUid2, result);
   224 	TEST( KNullUid == result );
   225 		
   226 	CleanupStack::PopAndDestroy(tsm);
   227 	}
   228 	
   229 
   230 CT_Maps::~CT_Maps()
   231 /**
   232    Destructor
   233  */
   234 	{
   235 	}
   236 
   237 CT_Maps::CT_Maps()
   238 /**
   239    Constructor
   240  */
   241 	{
   242 	// Call base class method to set up the human readable name for logging
   243 	SetTestStepName(KT_Maps);
   244 	}
   245 
   246 /* @SYMTestCaseID    T-Maps-doTestStepL
   247   
   248    @SYMPREQ DEF032304
   249 
   250    @SYMTestCaseDesc     Testing of TMappingDataTypeToApp perisitance.
   251       
   252    @SYMTestPriority 	High
   253   
   254    @SYMTestStatus 		Implemented
   255       
   256    @SYMTestActions Just execute program.  Will pause and report any failure.
   257 
   258    @SYMTestExpectedResults  List of sucessfull tests should appear in a console window.
   259  */
   260 TVerdict CT_Maps::doTestStepL()
   261 	{
   262 	//
   263 	INFO_PRINTF1(_L("Test Started"));
   264 	INFO_PRINTF1(_L("Testing the TMappingDataTypeToApp"));
   265 	
   266 	//
   267 	// set up the directory structure
   268 	iFs.Connect();
   269 	//
   270 	// run the testcode (inside an alloc heaven harness)
   271 
   272  	__UHEAP_MARK;
   273  	
   274 	TRAPD(r,testTMappingDataTypeToAppL());
   275 		TEST(r==KErrNone);
   276 
   277 	iFs.Close();
   278 	INFO_PRINTF1(_L("TMappingDataTypeToApp test finished\n"));
   279 
   280 	REComSession::FinalClose();
   281 	__UHEAP_MARKEND;
   282 	
   283 	return TestStepResult();
   284 	}
   285