1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/mimerecognitionfw/tef/T_MAPS.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,285 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @internalComponent - Internal Symbian test code
1.22 +*/
1.23 +
1.24 +
1.25 +
1.26 +#include <e32uid.h>
1.27 +#include <f32file.h>
1.28 +#include <apmrec.h>
1.29 +#include <datastor.h>
1.30 +#include <ecom/ecom.h>
1.31 +
1.32 +#include "T_Maps.h"
1.33 +
1.34 +
1.35 +/**
1.36 + Auxiliary Fn for Test Case ID T-Maps-testTMappingDataTypeToAppL
1.37 +
1.38 + This function receives two mappings, and verifies if they data members
1.39 + are the same.
1.40 +
1.41 +*/
1.42 +TBool CT_Maps::cmpMappingDataTypeToAdd( TMappingDataTypeToApp& map1, TMappingDataTypeToApp& map2 )
1.43 + {
1.44 + return TBool( map1.iAppUid == map2.iAppUid &&
1.45 + map1.iDataType == map2.iDataType &&
1.46 + map1.iPriority == map2.iPriority &&
1.47 + map1.iServiceUid == map2.iServiceUid);
1.48 + }
1.49 +
1.50 +
1.51 +//const TInt KErrTestFailed = -1;
1.52 +
1.53 +
1.54 +/**
1.55 + @SYMTestCaseID T-Maps-testTMappingDataTypeToAppL
1.56 +
1.57 + @SYMPREQ
1.58 +
1.59 + @SYMTestCaseDesc Tests TMappingDataTypeToApp class
1.60 +
1.61 + @SYMTestPriority High
1.62 +
1.63 + @SYMTestStatus Implemented
1.64 +
1.65 + @SYMTestActions The test creates 3 different mappings, identified by a TUid, TDataType
1.66 + and TDataTypePriority, verifying that they are correctly created. The consitency of these
1.67 + mappings through the process of writing and reading to and from a stream is also checked.\n
1.68 + Also, a store of mappings is created, verifying the insertion, and the insertion depending
1.69 + on the TDataTypePriority, checking that it handles the insertion in accordance.\n
1.70 + API Calls:\n
1.71 + TMappingDataTypeToApp::TMappingDataTypeToApp(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
1.72 + CTypeStoreManager::NewL(RFs& aFs) \n
1.73 + CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
1.74 + CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const \n
1.75 + CTypeStoreManager::InsertIfHigherL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
1.76 +
1.77 + @SYMTestExpectedResults Test should complete without any panic.
1.78 +
1.79 + */
1.80 +void CT_Maps::testTMappingDataTypeToAppL()
1.81 + {
1.82 + const TUid uid1 = { 0x11111111 };
1.83 + const TUid uid2 = { 0x22222222 };
1.84 + const TUid uid3 = { 0x33333333 };
1.85 + const TUid uid4 = { 0x44444444 };
1.86 + const TUid uid5 = { 0x55555555 };
1.87 + const TUid uid6 = { 0x66666666 };
1.88 +
1.89 + const TUid serviceUid1 = { 0x00001111 };
1.90 + const TUid serviceUid2 = { 0x00002222 };
1.91 + //const TUid serviceUid3 = { 0x00003333 };
1.92 + const TUid serviceUid4 = { 0x00004444 };
1.93 +
1.94 + const TDataType data1( uid1 );
1.95 + const TDataType data2( uid2 );
1.96 + const TDataType data3( uid3 );
1.97 + const TDataType data4( uid4 );
1.98 +
1.99 + TUid result;
1.100 +
1.101 + // Test that mappings are serialized correctly
1.102 + TMappingDataTypeToApp mapping1( data1, TDataTypePriority( 100 ), uid3 );
1.103 + TMappingDataTypeToApp mapping2( data1, TDataTypePriority( 100 ), uid3 );
1.104 + TMappingDataTypeToApp mapping3( data2, TDataTypePriority( 200 ), uid4 );
1.105 +
1.106 + RFileBuf buf1;
1.107 + RFileBuf buf2;
1.108 + RFileBuf buf3;
1.109 +
1.110 + TBuf<256> tmpfilename;
1.111 +
1.112 + buf1.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream );
1.113 + buf2.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream );
1.114 + buf3.Temp( iFs, KTempRootDir, tmpfilename, EFileWrite|EFileStream );
1.115 +
1.116 + RWriteStream write1( &buf1 );
1.117 + RWriteStream write2( &buf2 );
1.118 + RWriteStream write3( &buf3 );
1.119 +
1.120 + RReadStream read1( &buf1 );
1.121 + RReadStream read2( &buf2 );
1.122 + RReadStream read3( &buf3 );
1.123 +
1.124 + TEST( cmpMappingDataTypeToAdd( mapping1, mapping2 ) );
1.125 + TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) );
1.126 + TEST( !cmpMappingDataTypeToAdd( mapping2, mapping3 ) );
1.127 +
1.128 + INFO_PRINTF1(_L("Testing storage of objects to stream"));
1.129 +
1.130 + write1 << mapping1;
1.131 + write2 << mapping2;
1.132 + write3 << mapping3;
1.133 +
1.134 + write1.CommitL();
1.135 + write2.CommitL();
1.136 + write3.CommitL();
1.137 +
1.138 + TEST( cmpMappingDataTypeToAdd( mapping1, mapping2 ) );
1.139 + TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) );
1.140 + TEST( !cmpMappingDataTypeToAdd( mapping2, mapping3 ) );
1.141 +
1.142 + INFO_PRINTF1(_L("Testing reconstruction from stream"));
1.143 +
1.144 + read1 >> mapping2;
1.145 + read2 >> mapping3;
1.146 + read3 >> mapping1;
1.147 +
1.148 + TEST( !cmpMappingDataTypeToAdd( mapping1, mapping2 ) );
1.149 + TEST( !cmpMappingDataTypeToAdd( mapping1, mapping3 ) );
1.150 + TEST( cmpMappingDataTypeToAdd( mapping2, mapping3 ) );
1.151 +
1.152 + write1.Close();
1.153 + write2.Close();
1.154 + write3.Close();
1.155 +
1.156 + read1.Close();
1.157 + read2.Close();
1.158 + read3.Close();
1.159 +
1.160 + buf1.Close();
1.161 + buf2.Close();
1.162 + buf3.Close();
1.163 +
1.164 +
1.165 + // Test the insert and find functions
1.166 + INFO_PRINTF1(_L("Data map insertion"));
1.167 +
1.168 + CTypeStoreManager* tsm = CTypeStoreManager::NewL( iFs );
1.169 + CleanupStack::PushL( tsm );
1.170 +
1.171 + tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid1 ); //data1 mapped to uid1
1.172 + tsm->InsertDataMappingL( data2, TDataTypePriority( 200 ), uid2 ); //data2 mapped to uid2
1.173 + tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid1, serviceUid1 );
1.174 + tsm->InsertDataMappingL( data2, TDataTypePriority( 100 ), uid6, serviceUid2 );
1.175 + tsm->InsertDataMappingL( data1, TDataTypePriority( 200 ), uid3 ); //data1 mapped to uid3, not uid1 anymore
1.176 + tsm->InsertDataMappingL( data4, TDataTypePriority( 200 ), uid4, serviceUid4 );
1.177 + tsm->InsertDataMappingL( data4, TDataTypePriority( 200 ), uid5 );
1.178 +
1.179 + tsm->GetAppByDataType( data1, result );
1.180 + TEST( uid3 == result );
1.181 + tsm->GetAppByDataType( data2, result );
1.182 + TEST( uid2 == result );
1.183 + tsm->GetAppByDataType( data1, serviceUid1, result);
1.184 + TEST( uid1 == result );
1.185 + tsm->GetAppByDataType( data2, serviceUid2, result);
1.186 + TEST( uid6 == result );
1.187 + tsm->GetAppByDataType( data4, result);
1.188 + TEST( uid5 == result );
1.189 + tsm->GetAppByDataType( data4, serviceUid4, result);
1.190 + TEST( uid4 == result );
1.191 +
1.192 + INFO_PRINTF1(_L("Data map insertion by priority"));
1.193 +
1.194 + TEST( tsm->InsertIfHigherL( data2, TDataTypePriority( 900 ), uid4 ) ); //Should be higher priority
1.195 + tsm->GetAppByDataType( data2, result );
1.196 + TEST( uid4 == result );
1.197 +
1.198 + TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 200 ), uid1 ) ); //Should be lower priority
1.199 + tsm->GetAppByDataType( data1, result );
1.200 + TEST( uid3 == result );
1.201 +
1.202 + TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 100 ), uid2 ) ); //Should be lower priority
1.203 + tsm->GetAppByDataType( data1, result );
1.204 + TEST( uid3 == result );
1.205 +
1.206 + TEST( tsm->InsertIfHigherL( data1, TDataTypePriority( 400 ), uid4 ) ); //Should be higher priority
1.207 + tsm->GetAppByDataType( data1, result );
1.208 + TEST( uid4 == result );
1.209 +
1.210 + TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 300 ), uid3 ) ); //Should be lower priority
1.211 + tsm->GetAppByDataType( data1, result );
1.212 + TEST( uid4 == result );
1.213 +
1.214 + TEST( tsm->InsertIfHigherL( data1, TDataTypePriority( 300 ), uid3, serviceUid1 ) );
1.215 + tsm->GetAppByDataType( data1, serviceUid1, result);
1.216 + TEST( uid3 == result );
1.217 +
1.218 + TEST( !tsm->InsertIfHigherL( data1, TDataTypePriority( 100 ), uid5, serviceUid1 ) );
1.219 + tsm->GetAppByDataType( data1, serviceUid1, result);
1.220 + TEST( uid3 == result );
1.221 +
1.222 + tsm->InsertDataMappingL( data1, TDataTypePriority( 100 ), uid5, serviceUid1 );
1.223 + tsm->GetAppByDataType( data1, serviceUid1, result);
1.224 + TEST( uid5 == result );
1.225 +
1.226 + tsm->GetAppByDataType( data4, serviceUid2, result);
1.227 + TEST( KNullUid == result );
1.228 +
1.229 + CleanupStack::PopAndDestroy(tsm);
1.230 + }
1.231 +
1.232 +
1.233 +CT_Maps::~CT_Maps()
1.234 +/**
1.235 + Destructor
1.236 + */
1.237 + {
1.238 + }
1.239 +
1.240 +CT_Maps::CT_Maps()
1.241 +/**
1.242 + Constructor
1.243 + */
1.244 + {
1.245 + // Call base class method to set up the human readable name for logging
1.246 + SetTestStepName(KT_Maps);
1.247 + }
1.248 +
1.249 +/* @SYMTestCaseID T-Maps-doTestStepL
1.250 +
1.251 + @SYMPREQ DEF032304
1.252 +
1.253 + @SYMTestCaseDesc Testing of TMappingDataTypeToApp perisitance.
1.254 +
1.255 + @SYMTestPriority High
1.256 +
1.257 + @SYMTestStatus Implemented
1.258 +
1.259 + @SYMTestActions Just execute program. Will pause and report any failure.
1.260 +
1.261 + @SYMTestExpectedResults List of sucessfull tests should appear in a console window.
1.262 + */
1.263 +TVerdict CT_Maps::doTestStepL()
1.264 + {
1.265 + //
1.266 + INFO_PRINTF1(_L("Test Started"));
1.267 + INFO_PRINTF1(_L("Testing the TMappingDataTypeToApp"));
1.268 +
1.269 + //
1.270 + // set up the directory structure
1.271 + iFs.Connect();
1.272 + //
1.273 + // run the testcode (inside an alloc heaven harness)
1.274 +
1.275 + __UHEAP_MARK;
1.276 +
1.277 + TRAPD(r,testTMappingDataTypeToAppL());
1.278 + TEST(r==KErrNone);
1.279 +
1.280 + iFs.Close();
1.281 + INFO_PRINTF1(_L("TMappingDataTypeToApp test finished\n"));
1.282 +
1.283 + REComSession::FinalClose();
1.284 + __UHEAP_MARKEND;
1.285 +
1.286 + return TestStepResult();
1.287 + }
1.288 +