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