os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/t_resolver.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) 2004-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
// This file contains test classes and their implementations that test
sl@0
    15
// class CDefaultResolver. Demonstrates a simple set of derived class
sl@0
    16
// implementations using RTest.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#include <ecom/ecom.h>
sl@0
    21
#include "EComUidCodes.h"
sl@0
    22
#include "RegistryData.h"
sl@0
    23
#include "Registrar.h"
sl@0
    24
#include "RegistrarObserver.h"
sl@0
    25
#include "EComResolverParams.h"
sl@0
    26
#include "DefaultResolver.h"
sl@0
    27
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    28
#include "DriveInfo.h"
sl@0
    29
#include "RegistryResolveTransaction.h"
sl@0
    30
sl@0
    31
sl@0
    32
#include <e32test.h>
sl@0
    33
#include <f32file.h>
sl@0
    34
#include <bautils.h>
sl@0
    35
#include <startup.hrh>
sl@0
    36
sl@0
    37
// Used for suppressing warning in OOM tests
sl@0
    38
#define __UNUSED_VAR(var) var = var
sl@0
    39
sl@0
    40
// Used for OOM test
sl@0
    41
#define TEST_OOM_ERR if(err == KErrNoMemory) User::Leave(err)
sl@0
    42
sl@0
    43
// Interface Uids used within tests
sl@0
    44
const TUid KCExampleInterfaceUid = {0x10009DC0};
sl@0
    45
const TUid KCExampleInterfaceImp = {0x10009DC1};
sl@0
    46
const TInt KOneSecond = 1000000;
sl@0
    47
sl@0
    48
// Interface Implementation Uids used for testing
sl@0
    49
const TInt KUidImplementation1 = 0x10009DC3;
sl@0
    50
const TInt KUidImplementation2 = 0x10009DC4;
sl@0
    51
sl@0
    52
// Dlls copied to RAM for testing purpose
sl@0
    53
_LIT(KEComExDllOnZ, "z:\\RAMOnly\\EComExample5.dll");
sl@0
    54
sl@0
    55
// Contains .rsc files of dlls that be copied to RAM
sl@0
    56
// for testing purpose
sl@0
    57
_LIT(KEComExDllOnC, "c:\\sys\\bin\\EComExample5.dll");
sl@0
    58
_LIT(KEComRscFileOnZ, "z:\\RAMOnly\\EComExample5.rsc");
sl@0
    59
_LIT(KEComRscFileOnC, "c:\\resource\\plugins\\EComExample5.rsc");
sl@0
    60
sl@0
    61
_LIT(KEComExampleDllOnC,		"C:\\sys\\bin\\EComExample.dll");
sl@0
    62
_LIT(KEComExample2DllOnC,		"C:\\sys\\bin\\EComExample2.dll");
sl@0
    63
_LIT(KEComExample3DllOnC,		"C:\\sys\\bin\\EComExample3.dll");
sl@0
    64
sl@0
    65
_LIT(KEComExampleRscOnC,		"C:\\resource\\plugins\\EComExample.rsc");
sl@0
    66
_LIT(KEComExample2RscOnC,		"C:\\resource\\plugins\\EComExample2.rsc");
sl@0
    67
_LIT(KEComExample3RscOnC,		"C:\\resource\\plugins\\EComExample3.rsc");
sl@0
    68
sl@0
    69
_LIT(KEComExampleRscOnZ,		"Z:\\RAMOnly\\EComExample.rsc");
sl@0
    70
_LIT(KEComExample2RscOnZ,		"Z:\\RAMOnly\\EComExample2.rsc");
sl@0
    71
_LIT(KEComExample3RscOnZ,		"Z:\\RAMOnly\\EComExample3.rsc");
sl@0
    72
sl@0
    73
sl@0
    74
_LIT(KEComExampleDllOnZ,			"Z:\\RAMOnly\\EComExample.dll");
sl@0
    75
_LIT(KEComExample2DllOnZ,		"Z:\\RAMOnly\\EComExample2.dll");
sl@0
    76
_LIT(KEComExample3DllOnZ,		"Z:\\RAMOnly\\EComExample3.dll");
sl@0
    77
sl@0
    78
// Datatype on implementations that .rsc file contains
sl@0
    79
_LIT8(KResolveMatchType, "text/wml");
sl@0
    80
// Datatype to look for
sl@0
    81
_LIT8(KResolveImplementationType, "text/wml||data");
sl@0
    82
sl@0
    83
LOCAL_D CTrapCleanup*		TheTrapCleanup=NULL;
sl@0
    84
sl@0
    85
LOCAL_D CActiveScheduler*	TheActiveScheduler=NULL;
sl@0
    86
sl@0
    87
LOCAL_D RFs					TheFs;
sl@0
    88
sl@0
    89
LOCAL_D RTest				test(_L("t_resolver.exe"));
sl@0
    90
sl@0
    91
//LOCAL_D TCapabilitySet		dummycaps;
sl@0
    92
// Utility clean up function
sl@0
    93
LOCAL_C void CleanupEComPtrArray(TAny* aArray);
sl@0
    94
sl@0
    95
/**
sl@0
    96
This friend class allows us to access private and protected members of production
sl@0
    97
code class CDefaultResolver
sl@0
    98
*/
sl@0
    99
class TDefaultResolver_StateAccessor
sl@0
   100
	{
sl@0
   101
public:
sl@0
   102
	//Auxiliary methods that provide access to private members
sl@0
   103
	TBool Match(CDefaultResolver& aResolver,
sl@0
   104
				const TDesC8& aImplementationType,
sl@0
   105
				const TDesC8& aMatchType,
sl@0
   106
				TBool aIsGeneric) const;
sl@0
   107
sl@0
   108
	TUid Resolve(CDefaultResolver& aResolver,
sl@0
   109
				 RImplInfoArray& aImplementationInfo,
sl@0
   110
				 const TEComResolverParams& aAdditionalParameters) const;
sl@0
   111
	};
sl@0
   112
sl@0
   113
/**
sl@0
   114
Searches for a match of a data type on an implementation type.
sl@0
   115
Match returns ETrue if aMatchType is found within aImplementationType
sl@0
   116
@param		aResolver resolver object on which implementations are matched
sl@0
   117
@param		aImplementationType The implementation data type to search for a match
sl@0
   118
@param		aMatchType Search data that identifies/matches to  implementations
sl@0
   119
@param		aIsGeneric ETrue if wildcard matching is allowed
sl@0
   120
@return		TBool ETrue if a match is found, EFalse if match is not found
sl@0
   121
*/
sl@0
   122
TBool TDefaultResolver_StateAccessor::Match(CDefaultResolver& aResolver,
sl@0
   123
											const TDesC8& aImplementationType,
sl@0
   124
											const TDesC8& aMatchType,
sl@0
   125
											TBool aIsGeneric) const
sl@0
   126
	{
sl@0
   127
	return aResolver.Match(aImplementationType, aMatchType, aIsGeneric);
sl@0
   128
	}
sl@0
   129
sl@0
   130
/**
sl@0
   131
Selects	an appropriate implementation from a list of possibles
sl@0
   132
@param		aResolver resolver object on which implementations are resolved
sl@0
   133
@param		aImplementationInfo Information on the potential implementations
sl@0
   134
@param		aAdditionalParameters The data to match against to determine the
sl@0
   135
			implementation
sl@0
   136
@return		The Uid of a suitable implementation
sl@0
   137
*/
sl@0
   138
TUid TDefaultResolver_StateAccessor::Resolve(CDefaultResolver& aResolver,
sl@0
   139
											 RImplInfoArray& aImplementationInfo,
sl@0
   140
											 const TEComResolverParams& aAdditionalParameters) const
sl@0
   141
	{
sl@0
   142
	return aResolver.Resolve(aImplementationInfo, aAdditionalParameters);
sl@0
   143
	}
sl@0
   144
sl@0
   145
/**
sl@0
   146
The implementation of the abstract Registrar Observer class,
sl@0
   147
used for recieving notifications of registry changes.
sl@0
   148
Stub class(for CEComServer) used for the creation of CRegistrar class object.
sl@0
   149
CEComServer class acts as observer for CRegistrar.
sl@0
   150
*/
sl@0
   151
class CTestRegistrarObserver : public MRegistrarObserver // codescanner::missingcclass
sl@0
   152
	{
sl@0
   153
public:
sl@0
   154
	// This function is used by RegistrarObserver (i.e.CEComServer) to notify its
sl@0
   155
	// clients(REComSession objects) that some change has happened in Registry.
sl@0
   156
	// Here we have no clients to notify, so no implementaion.
sl@0
   157
	void Notification( TInt /*aNotification*/ ) {}
sl@0
   158
	};
sl@0
   159
sl@0
   160
/**
sl@0
   161
Test class encloses necessary members that aid to test CDefaultResolver
sl@0
   162
*/
sl@0
   163
class CResolverTest: public CBase
sl@0
   164
	{
sl@0
   165
public:
sl@0
   166
	static CResolverTest* NewL();
sl@0
   167
	virtual ~CResolverTest();
sl@0
   168
sl@0
   169
	void IdentifyImplementationTestL();
sl@0
   170
	void ListAllTestL();
sl@0
   171
	void MatchTest();
sl@0
   172
	void ResolveTestL();
sl@0
   173
sl@0
   174
private:
sl@0
   175
	CResolverTest();
sl@0
   176
	void ConstructL();
sl@0
   177
sl@0
   178
public:
sl@0
   179
	/** The instance of the class under test */
sl@0
   180
	CDefaultResolver*	iDefaultResolver;
sl@0
   181
	/** The data store which is used by the resolver */
sl@0
   182
	CRegistryData*		iRegistryData;
sl@0
   183
	/** Friend class pointer used for accessing private members */
sl@0
   184
	TDefaultResolver_StateAccessor*	iStateAccessor;
sl@0
   185
	/** An array of potential implementations to resolve between */
sl@0
   186
	RImplInfoArray		iImplementationData;
sl@0
   187
	/** ECom example interface Uid */
sl@0
   188
	TUid				iInterfaceUid;
sl@0
   189
	/** The Uid returned by IdentifyImplementationL(), used to resolve
sl@0
   190
	the implementation. */
sl@0
   191
	TUid				iResolvedImpUid;
sl@0
   192
	/** Additional parameters used for resolving between implementations */
sl@0
   193
	TEComResolverParams	iAdditionalParameters;
sl@0
   194
	/** CRegistrar */
sl@0
   195
	CRegistrar* iRegistrar;
sl@0
   196
	/** Registrar observer test class */
sl@0
   197
	CTestRegistrarObserver* iRegistrarObserver;
sl@0
   198
	/** CRegistryResolveTransaction */
sl@0
   199
	CRegistryResolveTransaction* iRegistryResolveTransaction;
sl@0
   200
	/** ExtendedInterfaces List*/
sl@0
   201
	RArray<TUid> iExtendedInterfaces;
sl@0
   202
	/** Client Request*/
sl@0
   203
	TClientRequest iClientReq;
sl@0
   204
	};
sl@0
   205
sl@0
   206
/**
sl@0
   207
Create a CResolverTest object on the CleanupStack
sl@0
   208
@return			A pointer to the newly created class.
sl@0
   209
*/
sl@0
   210
CResolverTest* CResolverTest::NewL()
sl@0
   211
	{
sl@0
   212
	CResolverTest* self = new (ELeave) CResolverTest();
sl@0
   213
	CleanupStack::PushL(self);
sl@0
   214
	self->ConstructL();
sl@0
   215
	CleanupStack::Pop();
sl@0
   216
	return self;
sl@0
   217
	}
sl@0
   218
sl@0
   219
/**
sl@0
   220
Standardized default constructor
sl@0
   221
@post		CRegistrarTest is fully constructed.
sl@0
   222
*/
sl@0
   223
CResolverTest::CResolverTest()
sl@0
   224
:	CBase()
sl@0
   225
	{
sl@0
   226
	// Interface uid to find implemenations
sl@0
   227
	iInterfaceUid.iUid = KCExampleInterfaceUid.iUid;
sl@0
   228
	}
sl@0
   229
sl@0
   230
/**
sl@0
   231
Standardized 2nd(Initialization) phase of two phase construction.
sl@0
   232
Completes the safe construction of the CResolverTest object
sl@0
   233
@post		CRegistrarTest is fully constructed.
sl@0
   234
@leave		KErrNoMemory.
sl@0
   235
*/
sl@0
   236
void CResolverTest::ConstructL()
sl@0
   237
	{
sl@0
   238
	iStateAccessor = new(ELeave) TDefaultResolver_StateAccessor;
sl@0
   239
	iRegistryData = CRegistryData::NewL(TheFs);
sl@0
   240
	iRegistrarObserver=new (ELeave) CTestRegistrarObserver;
sl@0
   241
	// construct the registry resolve transaction object here
sl@0
   242
	TBool capability= ETrue;
sl@0
   243
	iRegistryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,iExtendedInterfaces,iClientReq,capability);
sl@0
   244
	iRegistrar=CRegistrar::NewL(*iRegistryData, *iRegistrarObserver, TheFs);
sl@0
   245
	iRegistrar->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
   246
	// next the default resolver
sl@0
   247
	iDefaultResolver = CDefaultResolver::NewL(*iRegistryResolveTransaction);
sl@0
   248
	}
sl@0
   249
sl@0
   250
/**
sl@0
   251
Standardized default destructor
sl@0
   252
@post		This object is properly destroyed.
sl@0
   253
*/
sl@0
   254
CResolverTest::~CResolverTest()
sl@0
   255
	{
sl@0
   256
	delete iStateAccessor;
sl@0
   257
	delete iDefaultResolver;
sl@0
   258
	delete iRegistrar;
sl@0
   259
	delete iRegistrarObserver;
sl@0
   260
	delete iRegistryData;
sl@0
   261
	delete iRegistryResolveTransaction;
sl@0
   262
	iExtendedInterfaces.Close();
sl@0
   263
	}
sl@0
   264
sl@0
   265
/**
sl@0
   266
@SYMTestCaseID          SYSLIB-ECOM-CT-0659
sl@0
   267
@SYMTestCaseDesc	    Create and delete Resolver object test
sl@0
   268
@SYMTestPriority 	    High
sl@0
   269
@SYMTestActions  	    Creates and deletes the resolver object
sl@0
   270
@SYMTestExpectedResults The test must not fail.
sl@0
   271
@SYMREQ                 REQ0000
sl@0
   272
*/
sl@0
   273
LOCAL_C void CreateDeleteTestL()
sl@0
   274
	{
sl@0
   275
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0659 CreateDeleteTestL "));
sl@0
   276
	//
sl@0
   277
	// Creates and deletes resolver object
sl@0
   278
	// ------------------------------------------------------------------
sl@0
   279
	//
sl@0
   280
	// Set up for heap leak checking
sl@0
   281
	__UHEAP_MARK;
sl@0
   282
	// and leaking thread handles
sl@0
   283
	TInt startProcessHandleCount;
sl@0
   284
	TInt startThreadHandleCount;
sl@0
   285
	TInt endProcessHandleCount;
sl@0
   286
	TInt endThreadHandleCount;
sl@0
   287
sl@0
   288
	// Test Starts...
sl@0
   289
	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   290
sl@0
   291
	CResolverTest* theTest=NULL;
sl@0
   292
sl@0
   293
	TRAPD(err, theTest = CResolverTest::NewL());
sl@0
   294
	test(err == KErrNone);
sl@0
   295
	delete theTest;
sl@0
   296
sl@0
   297
	// Check for open handles
sl@0
   298
	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   299
	test(startThreadHandleCount == endThreadHandleCount);
sl@0
   300
sl@0
   301
	// Test Ends...
sl@0
   302
	__UHEAP_MARKEND;
sl@0
   303
	}
sl@0
   304
sl@0
   305
/**
sl@0
   306
@SYMTestCaseID          SYSLIB-ECOM-CT-1324
sl@0
   307
@SYMTestCaseDesc	    Tests for CDefaultResolver::IdentifyImplementationL() function
sl@0
   308
@SYMTestPriority 	    High
sl@0
   309
@SYMTestActions  	    Tests that the resolver identifies most appropriate
sl@0
   310
						interface implementation
sl@0
   311
@SYMTestExpectedResults The test must not fail.
sl@0
   312
@SYMREQ                 REQ0000
sl@0
   313
*/
sl@0
   314
void CResolverTest::IdentifyImplementationTestL()
sl@0
   315
	{
sl@0
   316
	// Tests that the resolver identifies most appropriate
sl@0
   317
	// interface implementation
sl@0
   318
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1324 "));
sl@0
   319
	iAdditionalParameters.SetDataType(KResolveMatchType);
sl@0
   320
	iAdditionalParameters.SetGenericMatch(ETrue);//Allow wildcard matching
sl@0
   321
	TRAPD(err, iResolvedImpUid =
sl@0
   322
		iDefaultResolver->IdentifyImplementationL(iInterfaceUid, iAdditionalParameters));
sl@0
   323
	TEST_OOM_ERR;
sl@0
   324
	test(err == KErrNone);
sl@0
   325
	// Check the Appropriate implementation id that should be identified
sl@0
   326
	test(iResolvedImpUid.iUid == KUidImplementation1);
sl@0
   327
sl@0
   328
	test.Printf(_L("Interface Uid 0x%08x\n"), iInterfaceUid);
sl@0
   329
	test.Printf(_L("Resolved Implementation Uid = 0x%08x\n"), iResolvedImpUid);
sl@0
   330
sl@0
   331
	}
sl@0
   332
sl@0
   333
/**
sl@0
   334
@SYMTestCaseID          SYSLIB-ECOM-CT-1325
sl@0
   335
@SYMTestCaseDesc	    Tests for CDefaultResolver::ListAllL() function
sl@0
   336
@SYMTestPriority 	    High
sl@0
   337
@SYMTestActions  	    The test executes by sending an interface id and data type to match.
sl@0
   338
						Prints all the implementation for the interface id
sl@0
   339
@SYMTestExpectedResults The test must not fail.
sl@0
   340
@SYMREQ                 REQ0000
sl@0
   341
*/
sl@0
   342
void CResolverTest::ListAllTestL()
sl@0
   343
	{
sl@0
   344
	// Tests that ListAll() lists implementations for a specified interface
sl@0
   345
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1325 "));
sl@0
   346
sl@0
   347
	// set datatype to text/wml and enable wildcard match
sl@0
   348
	iAdditionalParameters.SetDataType(KResolveMatchType);
sl@0
   349
	iAdditionalParameters.SetGenericMatch(ETrue);
sl@0
   350
	RImplInfoArray*	implData=NULL;
sl@0
   351
sl@0
   352
	/* This should list two implementations given below
sl@0
   353
	depending on additional parameter and wildcard match
sl@0
   354
	10009DC3	Ver 2/"text/ wml"/10009DB3
sl@0
   355
	10009DC4	Ver 2/"text/ *"/10009DB3
sl@0
   356
	*/
sl@0
   357
	TRAPD(err, implData = iDefaultResolver->ListAllL(iInterfaceUid,	iAdditionalParameters));
sl@0
   358
sl@0
   359
	TEST_OOM_ERR;
sl@0
   360
	test(err == KErrNone);
sl@0
   361
	CleanupStack::PushL(TCleanupItem(CleanupEComPtrArray, implData));
sl@0
   362
sl@0
   363
	const TInt availCount = implData->Count();
sl@0
   364
	test(availCount == 2);
sl@0
   365
sl@0
   366
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   367
sl@0
   368
	for (TInt count=0;count<availCount;++count)
sl@0
   369
		{
sl@0
   370
		const CImplementationInformation* info = (*implData)[count];
sl@0
   371
sl@0
   372
		TDriveName driveName = info->Drive().Name();
sl@0
   373
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1,
sl@0
   374
			info->ImplementationUid(), info->Version(), &driveName);
sl@0
   375
sl@0
   376
		switch(info->ImplementationUid().iUid)
sl@0
   377
			{
sl@0
   378
			case KUidImplementation1:
sl@0
   379
				test(info->Version()==2);
sl@0
   380
				test(info->Drive()==EDriveC);
sl@0
   381
				break;
sl@0
   382
sl@0
   383
			case KUidImplementation2:
sl@0
   384
				test(info->Version()==2);
sl@0
   385
				test(info->Drive()==EDriveC);
sl@0
   386
				break;
sl@0
   387
sl@0
   388
			default:
sl@0
   389
				test.Printf(_L("Mismatched implementation Uid\n"));
sl@0
   390
				test(EFalse);
sl@0
   391
			}
sl@0
   392
		}
sl@0
   393
	// Empty the array of implementations
sl@0
   394
	CleanupStack::PopAndDestroy();//ifArray, results in a call to CleanupEComPtrArray
sl@0
   395
sl@0
   396
	}
sl@0
   397
sl@0
   398
/**
sl@0
   399
@SYMTestCaseID          SYSLIB-ECOM-CT-1326
sl@0
   400
@SYMTestCaseDesc	    Tests for TDefaultResolver_StateAccessor::Match() function
sl@0
   401
@SYMTestPriority 	    High
sl@0
   402
@SYMTestActions  	    The test executes by searching for a match of a data type on an implementation type
sl@0
   403
@SYMTestExpectedResults The test must not fail.
sl@0
   404
@SYMREQ                 REQ0000
sl@0
   405
*/
sl@0
   406
void CResolverTest::MatchTest()
sl@0
   407
	{
sl@0
   408
	// 1.Search using search parameters that result in a Match to a particular
sl@0
   409
	// Implementation.
sl@0
   410
	// 2.Search using search parameters that result in a mismatch.
sl@0
   411
	// 3.Finally, search using search parameters with wildcards that result in a Match
sl@0
   412
sl@0
   413
	// Searches for KResolveMatchType (text/wml) on implementations
sl@0
   414
	// KResolveImplementationType(text/wml||data)
sl@0
   415
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1326 "));
sl@0
   416
	TBool matchResult = iStateAccessor->Match(*iDefaultResolver,
sl@0
   417
											  KResolveImplementationType,
sl@0
   418
										      KResolveMatchType,
sl@0
   419
										      EFalse);
sl@0
   420
	test(matchResult);
sl@0
   421
sl@0
   422
	_LIT8(KUnResolveableImplType, "Abc||xyz");
sl@0
   423
	// Pass data "Abc||xyz" which is not present on implementation type
sl@0
   424
	// to look for and test for failure
sl@0
   425
	matchResult = iStateAccessor->Match(*iDefaultResolver,
sl@0
   426
										KUnResolveableImplType,
sl@0
   427
										KResolveMatchType,
sl@0
   428
										EFalse);
sl@0
   429
	test(!matchResult);
sl@0
   430
sl@0
   431
	// Wild card in data type
sl@0
   432
	_LIT8(KResolveWildImplType, "text*||xyz");
sl@0
   433
sl@0
   434
	// Set to enable wild card search and test for success
sl@0
   435
	matchResult = iStateAccessor->Match(*iDefaultResolver,
sl@0
   436
										KResolveWildImplType,
sl@0
   437
										KResolveMatchType,
sl@0
   438
										ETrue);
sl@0
   439
	test(matchResult);
sl@0
   440
sl@0
   441
	}
sl@0
   442
sl@0
   443
/**
sl@0
   444
@SYMTestCaseID          SYSLIB-ECOM-CT-1327
sl@0
   445
@SYMTestCaseDesc	    Tests the TDefaultResolver_StateAccessor::Resolve() function
sl@0
   446
@SYMTestPriority 	    High
sl@0
   447
@SYMTestActions  	    The test executes by sending an implementation data with additional parameter
sl@0
   448
@SYMTestExpectedResults The test must not fail.
sl@0
   449
@SYMREQ                 REQ0000
sl@0
   450
*/
sl@0
   451
void CResolverTest::ResolveTestL()
sl@0
   452
	{
sl@0
   453
	// Resolves a appropriate implementation from a list of possibles
sl@0
   454
sl@0
   455
	// Create iImplementationType on heap so that address can be passed to
sl@0
   456
	// CImplementationInformation::NewL method
sl@0
   457
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1327 "));
sl@0
   458
	HBufC8* implementationType = HBufC8::NewL(KResolveImplementationType().Length());
sl@0
   459
	CleanupStack::PushL(implementationType);
sl@0
   460
	TPtr8 impPtr = implementationType->Des();
sl@0
   461
	impPtr = KResolveImplementationType;
sl@0
   462
sl@0
   463
	// Interface Uid to create an item of implementation data
sl@0
   464
	iResolvedImpUid.iUid=KCExampleInterfaceImp.iUid;
sl@0
   465
sl@0
   466
	TDriveUnit drive(EDriveC);
sl@0
   467
	CImplementationInformation* impData = CImplementationInformation::NewL(iResolvedImpUid,
sl@0
   468
																		  0,
sl@0
   469
																		  NULL,
sl@0
   470
																		  implementationType,
sl@0
   471
																		  NULL,
sl@0
   472
																		  drive,
sl@0
   473
																		  EFalse,
sl@0
   474
																		  EFalse);
sl@0
   475
	// Pop now before pushing impData since ownership is not with it
sl@0
   476
	CleanupStack::Pop(implementationType);
sl@0
   477
	CleanupStack::PushL(impData);
sl@0
   478
	// Add implementation data so that you can resolve the same
sl@0
   479
	User::LeaveIfError(iImplementationData.Append(impData));
sl@0
   480
	CleanupStack::Pop(impData);
sl@0
   481
sl@0
   482
	// set datatype to text/wml and enable wildcard match
sl@0
   483
	iAdditionalParameters.SetDataType(KResolveMatchType);
sl@0
   484
	iAdditionalParameters.SetGenericMatch(ETrue);
sl@0
   485
sl@0
   486
	// Newly resolved id
sl@0
   487
	TUid resolvedUid;
sl@0
   488
	TRAPD(err, resolvedUid = iStateAccessor->Resolve(*iDefaultResolver,
sl@0
   489
													 iImplementationData,
sl@0
   490
													 iAdditionalParameters));
sl@0
   491
	TEST_OOM_ERR;
sl@0
   492
	test(err == KErrNone);
sl@0
   493
	// confirm newly created interface id
sl@0
   494
	test(resolvedUid == iResolvedImpUid);
sl@0
   495
sl@0
   496
	// Logging and cleaning up the array elements
sl@0
   497
	while(iImplementationData.Count())
sl@0
   498
		{
sl@0
   499
		// Fetch the address at first location and empty it
sl@0
   500
		CImplementationInformation* impInfo = iImplementationData[0];
sl@0
   501
		test.Printf(_L("Resolved Uid is 0x%x \n"), impInfo->ImplementationUid());
sl@0
   502
		iImplementationData.Remove(0);
sl@0
   503
		delete impInfo;
sl@0
   504
		}
sl@0
   505
	iImplementationData.Reset();
sl@0
   506
	}
sl@0
   507
sl@0
   508
/**
sl@0
   509
@SYMTestCaseID          SYSLIB-ECOM-CT-0660
sl@0
   510
@SYMTestCaseDesc	    Tests for OOM while create and delete test
sl@0
   511
@SYMTestPriority 	    High
sl@0
   512
@SYMTestActions  	    Calls the CResolverTest test function
sl@0
   513
@SYMTestExpectedResults The test must not fail.
sl@0
   514
@SYMREQ                 REQ0000
sl@0
   515
*/
sl@0
   516
LOCAL_C void OOMCreateDeleteTest()
sl@0
   517
	{
sl@0
   518
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0660 OOM CreateDeleteTest"));
sl@0
   519
	TInt err;
sl@0
   520
	TInt failAt = 1;
sl@0
   521
	__UNUSED_VAR(failAt);
sl@0
   522
sl@0
   523
	CResolverTest* resolverTest = NULL;
sl@0
   524
sl@0
   525
	do
sl@0
   526
		{
sl@0
   527
		__UHEAP_MARK;
sl@0
   528
  		// find out the number of open handles
sl@0
   529
		TInt startProcessHandleCount;
sl@0
   530
		TInt startThreadHandleCount;
sl@0
   531
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   532
sl@0
   533
		__UHEAP_SETFAIL(RHeap::EDeterministic, failAt+=100);
sl@0
   534
sl@0
   535
		TRAP(err, resolverTest = CResolverTest::NewL());
sl@0
   536
sl@0
   537
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   538
sl@0
   539
		delete resolverTest;
sl@0
   540
		resolverTest = NULL;
sl@0
   541
sl@0
   542
		// check that no handles have leaked
sl@0
   543
		TInt endProcessHandleCount;
sl@0
   544
		TInt endThreadHandleCount;
sl@0
   545
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   546
sl@0
   547
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   548
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   549
sl@0
   550
		__UHEAP_MARKEND;
sl@0
   551
		}
sl@0
   552
	while(err == KErrNoMemory);
sl@0
   553
sl@0
   554
	test.Printf(_L("- Succeeded at heap failure rate of %i\n"), failAt);
sl@0
   555
	test(err == KErrNone);
sl@0
   556
	}
sl@0
   557
sl@0
   558
// Type definition for pointer to member function.
sl@0
   559
// Used in calling the CResolverTest member function for testing.
sl@0
   560
typedef void (CResolverTest::*ClassFuncPtrL) (void);
sl@0
   561
sl@0
   562
/**
sl@0
   563
This function is used to force a discovery prior to the tests commencing.
sl@0
   564
*/
sl@0
   565
LOCAL_C void ForceDiscovery()
sl@0
   566
    {
sl@0
   567
	CTestRegistrarObserver* registrarObserver = new (ELeave) CTestRegistrarObserver;
sl@0
   568
	CleanupStack::PushL(registrarObserver);
sl@0
   569
	CRegistryData* registryData = CRegistryData::NewL(TheFs);
sl@0
   570
	CleanupStack::PushL(registryData);
sl@0
   571
	CRegistrar* registrar = CRegistrar::NewL(*registryData, *registrarObserver, TheFs);
sl@0
   572
	CleanupStack::PushL(registrar);
sl@0
   573
	registrar->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
   574
sl@0
   575
	CleanupStack::PopAndDestroy(registrar);
sl@0
   576
	CleanupStack::PopAndDestroy(registryData);
sl@0
   577
	CleanupStack::PopAndDestroy(registrarObserver);
sl@0
   578
    }
sl@0
   579
sl@0
   580
/**
sl@0
   581
@SYMTestCaseID          SYSLIB-ECOM-CT-0661
sl@0
   582
@SYMTestCaseDesc	    Wrapper function which calls other test functions
sl@0
   583
@SYMTestPriority 	    High
sl@0
   584
@SYMTestActions  	    Calls the CResolverTest test function
sl@0
   585
@SYMTestExpectedResults The test must not fail.
sl@0
   586
@SYMREQ                 REQ0000
sl@0
   587
*/
sl@0
   588
/**
sl@0
   589
Wrapper function to call all test functions
sl@0
   590
sl@0
   591
@param		testFunc pointer to test function
sl@0
   592
@param		aTestDesc test function name
sl@0
   593
*/
sl@0
   594
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
sl@0
   595
	{
sl@0
   596
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0661 "));
sl@0
   597
	test.Next(aTestDesc);
sl@0
   598
sl@0
   599
	__UHEAP_MARK;
sl@0
   600
  	// find out the number of open handles
sl@0
   601
	TInt startProcessHandleCount;
sl@0
   602
	TInt startThreadHandleCount;
sl@0
   603
	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   604
sl@0
   605
	CResolverTest* resolverTest = CResolverTest::NewL();
sl@0
   606
	CleanupStack::PushL(resolverTest);
sl@0
   607
sl@0
   608
	(resolverTest->*testFuncL)();
sl@0
   609
sl@0
   610
	CleanupStack::PopAndDestroy(resolverTest);
sl@0
   611
sl@0
   612
	// check that no handles have leaked
sl@0
   613
	TInt endProcessHandleCount;
sl@0
   614
	TInt endThreadHandleCount;
sl@0
   615
	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   616
sl@0
   617
	test(startProcessHandleCount == endProcessHandleCount);
sl@0
   618
	test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   619
sl@0
   620
	__UHEAP_MARKEND;
sl@0
   621
	}
sl@0
   622
sl@0
   623
/**
sl@0
   624
@SYMTestCaseID          SYSLIB-ECOM-CT-0662
sl@0
   625
@SYMTestCaseDesc	    Function to call all OOM test functions
sl@0
   626
@SYMTestPriority 	    High
sl@0
   627
@SYMTestActions  	    Calls the CResolverTest test function
sl@0
   628
@SYMTestExpectedResults The test must not fail.
sl@0
   629
@SYMREQ                 REQ0000
sl@0
   630
*/
sl@0
   631
/**
sl@0
   632
Wrapper function to call all OOM test functions
sl@0
   633
sl@0
   634
@param		testFuncL pointer to OOM test function
sl@0
   635
@param		aTestDesc test function name
sl@0
   636
*/
sl@0
   637
LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
sl@0
   638
	{
sl@0
   639
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0662 "));
sl@0
   640
	test.Next(aTestDesc);
sl@0
   641
sl@0
   642
	TInt err;
sl@0
   643
	TInt tryCount = 0;
sl@0
   644
	do
sl@0
   645
		{
sl@0
   646
		__UHEAP_MARK;
sl@0
   647
  		// find out the number of open handles
sl@0
   648
		TInt startProcessHandleCount;
sl@0
   649
		TInt startThreadHandleCount;
sl@0
   650
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   651
sl@0
   652
		CResolverTest* resolverTest = CResolverTest::NewL();
sl@0
   653
		CleanupStack::PushL(resolverTest);
sl@0
   654
sl@0
   655
		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
sl@0
   656
sl@0
   657
		TRAP(err, (resolverTest->*testFuncL)());
sl@0
   658
sl@0
   659
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   660
sl@0
   661
		CleanupStack::PopAndDestroy(resolverTest);
sl@0
   662
		resolverTest = NULL;
sl@0
   663
		// check that no handles have leaked
sl@0
   664
		TInt endProcessHandleCount;
sl@0
   665
		TInt endThreadHandleCount;
sl@0
   666
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   667
sl@0
   668
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   669
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   670
sl@0
   671
		__UHEAP_MARKEND;
sl@0
   672
		} while(err == KErrNoMemory);
sl@0
   673
sl@0
   674
	test(err == KErrNone);
sl@0
   675
	test.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
sl@0
   676
	}
sl@0
   677
sl@0
   678
LOCAL_C void DoTestsL()
sl@0
   679
	{
sl@0
   680
	__UHEAP_MARK;
sl@0
   681
sl@0
   682
	// Force a discovery to ensure that the ecom.dat file is updated with the data from the plugins
sl@0
   683
	// required for this test. The plugins for this test are copied by calling CopyPlugins() from E32Main().
sl@0
   684
	// They are deleted by calling DeleteTestPlugin() also from E32Main().
sl@0
   685
	ForceDiscovery();
sl@0
   686
sl@0
   687
	// Basic tests
sl@0
   688
	CreateDeleteTestL();
sl@0
   689
	DoBasicTestL(&CResolverTest::IdentifyImplementationTestL, _L("Identify implementation test"));
sl@0
   690
	DoBasicTestL(&CResolverTest::ListAllTestL, _L("ListAllTestL"));
sl@0
   691
	DoBasicTestL(&CResolverTest::MatchTest, _L("MatchTest"));
sl@0
   692
	DoBasicTestL(&CResolverTest::ResolveTestL, _L("ResolveTestL"));
sl@0
   693
sl@0
   694
	// OOM tests
sl@0
   695
	OOMCreateDeleteTest();
sl@0
   696
	DoOOMTestL(&CResolverTest::IdentifyImplementationTestL, _L("OOM IdentifyImplementationTestL"));
sl@0
   697
	DoOOMTestL(&CResolverTest::ListAllTestL, _L("OOM ListAllTestL"));
sl@0
   698
	DoOOMTestL(&CResolverTest::MatchTest, _L("OOM MatchTest"));
sl@0
   699
	DoOOMTestL(&CResolverTest::ResolveTestL, _L("OOM ResolveTestL"));
sl@0
   700
sl@0
   701
	__UHEAP_MARKEND;
sl@0
   702
	}
sl@0
   703
sl@0
   704
/**
sl@0
   705
This function is used for cleanup support of locally declared arrays
sl@0
   706
*/
sl@0
   707
LOCAL_C void CleanupEComPtrArray(TAny* aArray)
sl@0
   708
	{
sl@0
   709
sl@0
   710
	(static_cast<RImplInfoArray*>(aArray))->Reset();
sl@0
   711
	delete aArray;// delete here
sl@0
   712
sl@0
   713
	}
sl@0
   714
sl@0
   715
/**
sl@0
   716
Copies the Plugins to specific folder for testing purpose
sl@0
   717
*/
sl@0
   718
LOCAL_C void CopyPlugins()
sl@0
   719
    {
sl@0
   720
	// Copy the dlls and .rsc files on to RAM
sl@0
   721
	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
sl@0
   722
	test(err==KErrNone);
sl@0
   723
sl@0
   724
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
sl@0
   725
	test(err==KErrNone);
sl@0
   726
sl@0
   727
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleDllOnZ, KEComExampleDllOnC));
sl@0
   728
	test(err==KErrNone);
sl@0
   729
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2DllOnZ, KEComExample2DllOnC));
sl@0
   730
	test(err==KErrNone);
sl@0
   731
 	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3DllOnZ, KEComExample3DllOnC));
sl@0
   732
	test(err==KErrNone);
sl@0
   733
sl@0
   734
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleRscOnZ, KEComExampleRscOnC));
sl@0
   735
	test(err==KErrNone);
sl@0
   736
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2RscOnZ, KEComExample2RscOnC));
sl@0
   737
	test(err==KErrNone);
sl@0
   738
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3RscOnZ, KEComExample3RscOnC));
sl@0
   739
	test(err==KErrNone);
sl@0
   740
	}
sl@0
   741
sl@0
   742
// Deleting plugin from the RAM for cleanup purpose
sl@0
   743
inline LOCAL_C void DeleteTestPlugin()
sl@0
   744
	{
sl@0
   745
	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
sl@0
   746
	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
sl@0
   747
 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExampleDllOnC));
sl@0
   748
 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample2DllOnC));
sl@0
   749
 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample3DllOnC));
sl@0
   750
 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExampleRscOnC));
sl@0
   751
 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample2RscOnC));
sl@0
   752
 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample3RscOnC));
sl@0
   753
	}
sl@0
   754
sl@0
   755
//Initialise the Active Scheduler
sl@0
   756
LOCAL_C void SetupL()
sl@0
   757
    {
sl@0
   758
	// Construct and install the Active Scheduler. The Active Schedular is needed
sl@0
   759
	// by components used by this test as they are ActiveObjects.
sl@0
   760
	TheActiveScheduler = new(ELeave)CActiveScheduler;
sl@0
   761
	CActiveScheduler::Install(TheActiveScheduler);
sl@0
   762
	}
sl@0
   763
sl@0
   764
sl@0
   765
GLDEF_C TInt E32Main()
sl@0
   766
	{
sl@0
   767
	__UHEAP_MARK;
sl@0
   768
sl@0
   769
	test.Printf(_L("\n"));
sl@0
   770
	test.Title();
sl@0
   771
	test.Start(_L("Resolver Tests"));
sl@0
   772
sl@0
   773
	TheTrapCleanup = CTrapCleanup::New();
sl@0
   774
sl@0
   775
	TRAPD(err, SetupL());
sl@0
   776
	test(err == KErrNone);
sl@0
   777
sl@0
   778
	// Connect the file server instance
sl@0
   779
	User::LeaveIfError(TheFs.Connect());
sl@0
   780
sl@0
   781
	CopyPlugins();
sl@0
   782
sl@0
   783
	// Wait, so that ECom server looks for plugins copied from Z: to C drive
sl@0
   784
	// ECOM server could be already started. It means that when we copy some
sl@0
   785
	// ECOM plugins from Z: to C: drive - ECOM server should look for and
sl@0
   786
	// find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
sl@0
   787
	// which is an active object. So the discovering service is asynchronous. We have to
sl@0
   788
	// wait some time until it finishes. Otherwise ListImplementationsL could fail to find
sl@0
   789
	// requested implementations.
sl@0
   790
	User::After(KOneSecond * 3);
sl@0
   791
sl@0
   792
	TRAP(err, DoTestsL());
sl@0
   793
	test(err == KErrNone);
sl@0
   794
sl@0
   795
	// Cleanup files. If the cleanup fails that is no problem,
sl@0
   796
	// as any subsequent tests will replace them. The only downside
sl@0
   797
	// would be the disk not being tidied
sl@0
   798
	DeleteTestPlugin();
sl@0
   799
sl@0
   800
	TheFs.Close();
sl@0
   801
	delete TheTrapCleanup;
sl@0
   802
	delete TheActiveScheduler;
sl@0
   803
	test.End();
sl@0
   804
	test.Close();
sl@0
   805
sl@0
   806
	__UHEAP_MARKEND;
sl@0
   807
	return(KErrNone);
sl@0
   808
	}