os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/t_suicide.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
// This file contains tests for testing resolver related
sl@0
    15
// functionality linking against ecom.lib, i.e. using public API
sl@0
    16
// Where necessary stubs are implemented to help in writing test
sl@0
    17
// harness using RTest.
sl@0
    18
// This test assumes the following setup:
sl@0
    19
// DLL			/Dll UID
sl@0
    20
// EComExample /10009DB1 on Z:
sl@0
    21
// EComExample2/10009DB3 on Z:
sl@0
    22
// EComExample3/101F8477 on Z:
sl@0
    23
// EComExample4/101F8479 on Z:
sl@0
    24
// EComExample5/101F847B on C:
sl@0
    25
// Suicidal    /10009DB2 on Z:
sl@0
    26
// EComExample6/0x101F847D on Z:
sl@0
    27
// The tests work by checking that the correct implementations are chosen
sl@0
    28
// for interface 0x10009DC0 depending on parameters passed
sl@0
    29
// Implementations:
sl@0
    30
// Impl ID		On C:		On Z: e.g:Version/Default_data/dll_uid
sl@0
    31
// 10009DC3	-			Ver 1/"text/ wml"/10009DB1, Ver 2/"text/ wml"/10009DB3
sl@0
    32
// 10009DC4	-			Ver 1/"text/ *"/10009DB1,   Ver 2/"text/ *"/10009DB3
sl@0
    33
// 101F8478	-			Ver 1/""/101F8477
sl@0
    34
// 101F847A	-			Ver 1/""/101F8479
sl@0
    35
// 101F847C	Ver 1/""/101F847B	-
sl@0
    36
// 10009DC5	-			Ver 1/"Suicide"/10009DB2
sl@0
    37
// 101F847E	on Z		Ver 1/""/101F847D
sl@0
    38
// 
sl@0
    39
//
sl@0
    40
sl@0
    41
#include <ecom/ecom.h>
sl@0
    42
#include "EComUidCodes.h"
sl@0
    43
#include "Interface.h" // interface to Plugins
sl@0
    44
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    45
sl@0
    46
#include <e32test.h>
sl@0
    47
#include <f32file.h>
sl@0
    48
#include <bautils.h>
sl@0
    49
sl@0
    50
LOCAL_D RTest test(_L("t_suicide.exe"));
sl@0
    51
sl@0
    52
LOCAL_D CTrapCleanup* 	  TheTrapCleanup 	 = NULL;
sl@0
    53
sl@0
    54
LOCAL_D CActiveScheduler* TheActiveScheduler = NULL;
sl@0
    55
sl@0
    56
// Used for supressing warning in OOM tests
sl@0
    57
#define __UNUSED_VAR(var) var = var
sl@0
    58
sl@0
    59
const TInt KOneSecond		= 1000000;
sl@0
    60
sl@0
    61
// Interface ID used for testing
sl@0
    62
const TUid KUidInterface	= {0x10009DC0};
sl@0
    63
sl@0
    64
// Resolver ID used for testing
sl@0
    65
const TUid KUidResolver		= {0x10009DD0};
sl@0
    66
sl@0
    67
// Implementaion ID used for testing
sl@0
    68
const TUid KUidTestImplementation = {0x10009DC5};
sl@0
    69
sl@0
    70
// Interface Implementation Uids used for testing
sl@0
    71
const TInt KUidImplementation1 = 0x10009DC3;
sl@0
    72
const TInt KUidImplementation2 = 0x10009DC4;
sl@0
    73
const TInt KUidImplementation3 = 0x10009DC5;
sl@0
    74
const TInt KUidImplementation4 = 0x101F8478;
sl@0
    75
const TInt KUidImplementation5 = 0x101F847A;
sl@0
    76
const TInt KUidImplementation6 = 0x101F847C;
sl@0
    77
const TInt KUidImplementation7 = 0x101F847E;
sl@0
    78
sl@0
    79
// Match string used for testing
sl@0
    80
_LIT8(KInterfaceResolveMatchStr,"suicidal");
sl@0
    81
sl@0
    82
_LIT(KSysBinDirectoryWildcard, "c:\\sys\\bin\\*.dll");
sl@0
    83
_LIT(KResourceDirectoryWildcard, "c:\\resource\\plugins\\*.rsc");
sl@0
    84
sl@0
    85
// Plugins used for this test program
sl@0
    86
_LIT(KEComExample5OnZ,		"z:\\RAMOnly\\EComExample5.dll");
sl@0
    87
sl@0
    88
_LIT(KEComExample5OnC,		"c:\\sys\\bin\\EComExample5.dll");
sl@0
    89
_LIT(KEComExample5RscOnC,	"c:\\resource\\plugins\\EComExample5.rsc");
sl@0
    90
_LIT(KEComExample4OnC,		"c:\\sys\\bin\\EComExample4.dll");
sl@0
    91
_LIT(KEComExample4RscOnC,	"c:\\resource\\plugins\\EComExample4.rsc");
sl@0
    92
// ROM file copied to the RAM for test purposes
sl@0
    93
_LIT(KEComExample5RscOnZ,	"z:\\RAMOnly\\EComExample5.rsc");
sl@0
    94
sl@0
    95
sl@0
    96
// Utility clean up function
sl@0
    97
LOCAL_C void CleanupEComArray(TAny* aArray);
sl@0
    98
sl@0
    99
//It is used by some test methods which are called two times:
sl@0
   100
//from normal test and from OOM test.
sl@0
   101
static void LeaveIfErrNoMemory(TInt aError)
sl@0
   102
	{
sl@0
   103
	if(aError == KErrNoMemory)
sl@0
   104
		{
sl@0
   105
		REComSession::FinalClose();
sl@0
   106
		User::Leave(aError);
sl@0
   107
		}
sl@0
   108
	}
sl@0
   109
sl@0
   110
/**
sl@0
   111
@SYMTestCaseID          SYSLIB-ECOM-CT-0709
sl@0
   112
@SYMTestCaseDesc	    Tests for creation of plugin with resolver match string
sl@0
   113
@SYMTestPriority 	    High
sl@0
   114
@SYMTestActions  	    Checks for no error condition
sl@0
   115
@SYMTestExpectedResults The test must not fail.
sl@0
   116
@SYMREQ                 REQ0000
sl@0
   117
*/
sl@0
   118
LOCAL_C void TestCreateImplSuicideL()
sl@0
   119
	{
sl@0
   120
	// Tests creation of plugin with resolver match string
sl@0
   121
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0709 "));
sl@0
   122
sl@0
   123
	/* This should pick
sl@0
   124
	10009DC5	Ver 1/"Suicide"/10009DB2
sl@0
   125
	*/
sl@0
   126
	CExampleInterface* interfaceimpl = NULL;
sl@0
   127
	TRAPD(err, interfaceimpl = CExampleInterface::NewL(KInterfaceResolveMatchStr()));
sl@0
   128
	::LeaveIfErrNoMemory(err);
sl@0
   129
	test(err == KErrNone);
sl@0
   130
	CleanupStack::PushL(interfaceimpl);
sl@0
   131
sl@0
   132
	test(KUidTestImplementation == interfaceimpl->ImplId());
sl@0
   133
sl@0
   134
	TRAP(err, interfaceimpl->DoMethodL());
sl@0
   135
	::LeaveIfErrNoMemory(err);
sl@0
   136
	test(err == KErrNone);
sl@0
   137
sl@0
   138
	CleanupStack::PopAndDestroy(interfaceimpl);
sl@0
   139
	}
sl@0
   140
sl@0
   141
/**
sl@0
   142
@SYMTestCaseID          SYSLIB-ECOM-CT-0710
sl@0
   143
@SYMTestCaseDesc	    Tests for Listing all Implementations for the Interface KUidInterface
sl@0
   144
@SYMTestPriority 	    High
sl@0
   145
@SYMTestActions  	    Calls up REComSession::ListImplementationsL with interface UID.Picks up 6 implementations.
sl@0
   146
                        Checks for no memory exceptions.
sl@0
   147
@SYMTestExpectedResults The test must not fail.
sl@0
   148
@SYMREQ                 REQ0000
sl@0
   149
*/
sl@0
   150
LOCAL_C void TestListAllImplL()
sl@0
   151
	{
sl@0
   152
	// Test for Listing all Implementations for the Interface KUidInterface
sl@0
   153
	//
sl@0
   154
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0710 "));
sl@0
   155
sl@0
   156
	RImplInfoPtrArray ifArray;
sl@0
   157
	CleanupStack::PushL(TCleanupItem(CleanupEComArray, &ifArray));
sl@0
   158
sl@0
   159
	TRAPD(err, REComSession::ListImplementationsL(KUidInterface, ifArray));
sl@0
   160
	::LeaveIfErrNoMemory(err);
sl@0
   161
	test(err == KErrNone);
sl@0
   162
sl@0
   163
	/* This should pick 6 implementations given below
sl@0
   164
	10009DC3	Ver 2/"text/ wml"/10009DB3
sl@0
   165
	10009DC4	Ver 2/"text/ *"/10009DB3
sl@0
   166
	101F8478	Ver 1/""/101F8477
sl@0
   167
	101F847A	Ver 1/""/101F8479
sl@0
   168
	101F847C	Ver 1/""/101F847B
sl@0
   169
	10009DC5	Ver 1/"Suicide"/10009DB2
sl@0
   170
	101F847E	Ver 1/""/101F847D
sl@0
   171
	*/
sl@0
   172
sl@0
   173
	const TInt availCount = ifArray.Count();
sl@0
   174
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   175
	test(availCount == 7);
sl@0
   176
sl@0
   177
	for (TInt count=0;count<availCount;++count)
sl@0
   178
		{
sl@0
   179
		const CImplementationInformation* info = ifArray[count];
sl@0
   180
sl@0
   181
		TDriveName driveName = info->Drive().Name();
sl@0
   182
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   183
sl@0
   184
		switch(info->ImplementationUid().iUid)
sl@0
   185
			{
sl@0
   186
			case KUidImplementation1:
sl@0
   187
				test(info->Version()==2);
sl@0
   188
				test(info->Drive()==EDriveZ);
sl@0
   189
				break;
sl@0
   190
sl@0
   191
			case KUidImplementation2:
sl@0
   192
				test(info->Version()==2);
sl@0
   193
				test(info->Drive()==EDriveZ);
sl@0
   194
				break;
sl@0
   195
sl@0
   196
			case KUidImplementation3:
sl@0
   197
				test(info->Version()==1);
sl@0
   198
				test(info->Drive()==EDriveZ);
sl@0
   199
				break;
sl@0
   200
sl@0
   201
			case KUidImplementation4:
sl@0
   202
				test(info->Version()==1);
sl@0
   203
				test(info->Drive()==EDriveZ);
sl@0
   204
				break;
sl@0
   205
sl@0
   206
			case KUidImplementation5:
sl@0
   207
				test(info->Version()==1);
sl@0
   208
				test(info->Drive()==EDriveZ);
sl@0
   209
				break;
sl@0
   210
sl@0
   211
			case KUidImplementation6:
sl@0
   212
				test(info->Version()==1);
sl@0
   213
				test(info->Drive()==EDriveC);
sl@0
   214
				break;
sl@0
   215
sl@0
   216
			case KUidImplementation7:
sl@0
   217
				test(info->Version()==1);
sl@0
   218
				test(info->Drive()==EDriveZ);
sl@0
   219
				break;
sl@0
   220
sl@0
   221
			default:
sl@0
   222
				test.Printf(_L("Unknown implementation Uid\n"));
sl@0
   223
				test(EFalse);
sl@0
   224
			}
sl@0
   225
		}
sl@0
   226
	// Empty the array of implementations
sl@0
   227
	CleanupStack::PopAndDestroy();//ifArray, results in a call to CleanupEComArray
sl@0
   228
	}
sl@0
   229
sl@0
   230
/**
sl@0
   231
@SYMTestCaseID          SYSLIB-ECOM-CT-0711
sl@0
   232
@SYMTestCaseDesc	    Tests to list all implementations for an interface with specified
sl@0
   233
						match string and wildcard match
sl@0
   234
@SYMTestPriority 	    High
sl@0
   235
@SYMTestActions  	    Calls up REComSession::ListImplementationsL with interface UID and resolver matching characteristics
sl@0
   236
                        Checks for no memory exceptions.
sl@0
   237
@SYMTestExpectedResults The test must not fail.
sl@0
   238
@SYMREQ                 REQ0000
sl@0
   239
*/
sl@0
   240
LOCAL_C void TestListImplMatchStrWildcardL()
sl@0
   241
	{
sl@0
   242
	// Test to list all implementations for an interface with match string
sl@0
   243
	// and wildcard match
sl@0
   244
	//
sl@0
   245
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0711 "));
sl@0
   246
sl@0
   247
	TEComResolverParams resolverParams;
sl@0
   248
	_LIT8(KImplementationTest,"text/wml");
sl@0
   249
	resolverParams.SetDataType(KImplementationTest());//Match string
sl@0
   250
	resolverParams.SetGenericMatch(ETrue);	// Allow wildcard matching
sl@0
   251
sl@0
   252
	RImplInfoPtrArray ifArray;
sl@0
   253
	CleanupStack::PushL(TCleanupItem(CleanupEComArray, &ifArray));
sl@0
   254
sl@0
   255
	TRAPD(err, REComSession::ListImplementationsL(KUidInterface, resolverParams, ifArray));
sl@0
   256
	::LeaveIfErrNoMemory(err);
sl@0
   257
	test(err == KErrNone);
sl@0
   258
sl@0
   259
	/* This should pick 2 implementations given below
sl@0
   260
	10009DC3	Ver 2/"text/ wml"/10009DB3
sl@0
   261
	10009DC4	Ver 2/"text/ *"/10009DB3
sl@0
   262
	*/
sl@0
   263
sl@0
   264
	const TInt availCount = ifArray.Count();
sl@0
   265
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   266
	test(availCount == 2);
sl@0
   267
sl@0
   268
	for (TInt count=0;count<availCount;++count)
sl@0
   269
		{
sl@0
   270
		const CImplementationInformation* info = ifArray[count];
sl@0
   271
sl@0
   272
		TDriveName driveName = info->Drive().Name();
sl@0
   273
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   274
sl@0
   275
		switch(info->ImplementationUid().iUid)
sl@0
   276
			{
sl@0
   277
			case KUidImplementation1:
sl@0
   278
				test(info->Version()==2);
sl@0
   279
				test(info->Drive()==EDriveZ);
sl@0
   280
				break;
sl@0
   281
sl@0
   282
			case KUidImplementation2:
sl@0
   283
				test(info->Version()==2);
sl@0
   284
				test(info->Drive()==EDriveZ);
sl@0
   285
				break;
sl@0
   286
sl@0
   287
			default:
sl@0
   288
				test.Printf(_L("Unknown implementation UID\n"));
sl@0
   289
				test(EFalse);
sl@0
   290
			}
sl@0
   291
		}
sl@0
   292
sl@0
   293
	// Empty the array of implementations
sl@0
   294
	CleanupStack::PopAndDestroy();//ifArray, results in a call to CleanupEComArray
sl@0
   295
	}
sl@0
   296
sl@0
   297
/**
sl@0
   298
@SYMTestCaseID          SYSLIB-ECOM-CT-0712
sl@0
   299
@SYMTestCaseDesc	    Tests to list all implementations for an interface with specified
sl@0
   300
						match string and no wildcard match
sl@0
   301
@SYMTestPriority 	    High
sl@0
   302
@SYMTestActions  	    Calls up REComSession::ListImplementationsL with interface UID and resolver matching characteristics
sl@0
   303
                        Checks for no memory exceptions.
sl@0
   304
@SYMTestExpectedResults The test must not fail.
sl@0
   305
@SYMREQ                 REQ0000
sl@0
   306
*/
sl@0
   307
LOCAL_C void TestListImplMatchStrL()
sl@0
   308
	{
sl@0
   309
	// Test to list all implementations for an interface with specified
sl@0
   310
	// match string and no wildcard match
sl@0
   311
	//
sl@0
   312
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0712 "));
sl@0
   313
sl@0
   314
	TEComResolverParams resolverParams;
sl@0
   315
	_LIT8(KImplementationTest,"text/wml");
sl@0
   316
	resolverParams.SetDataType(KImplementationTest());//Match string
sl@0
   317
	resolverParams.SetGenericMatch(EFalse);	// Don't allow wildcard matching
sl@0
   318
sl@0
   319
	RImplInfoPtrArray ifArray;
sl@0
   320
	CleanupStack::PushL(TCleanupItem(CleanupEComArray, &ifArray));
sl@0
   321
sl@0
   322
	TRAPD(err, REComSession::ListImplementationsL(KUidInterface, resolverParams, ifArray));
sl@0
   323
	::LeaveIfErrNoMemory(err);
sl@0
   324
	test(err == KErrNone);
sl@0
   325
sl@0
   326
	const TInt availCount = ifArray.Count();
sl@0
   327
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   328
	test(availCount == 1);
sl@0
   329
sl@0
   330
	/* This should pick
sl@0
   331
	10009DC3	Ver 2/"text/wml"/10009DB3
sl@0
   332
	*/
sl@0
   333
sl@0
   334
	for (TInt count=0;count<availCount;++count)
sl@0
   335
		{
sl@0
   336
		const CImplementationInformation* info = ifArray[count];
sl@0
   337
sl@0
   338
		TDriveName driveName = info->Drive().Name();
sl@0
   339
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"),
sl@0
   340
					count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   341
sl@0
   342
		switch(info->ImplementationUid().iUid)
sl@0
   343
			{
sl@0
   344
			case KUidImplementation1:
sl@0
   345
				test(info->Version()==2);
sl@0
   346
				test(info->Drive()==EDriveZ);
sl@0
   347
				break;
sl@0
   348
sl@0
   349
			default:
sl@0
   350
				test.Printf(_L("Unknown implementation Uid\n"));
sl@0
   351
				test(EFalse);
sl@0
   352
			}
sl@0
   353
		}
sl@0
   354
	// Empty the array of implementations
sl@0
   355
	CleanupStack::PopAndDestroy();//ifArray, results in a call to CleanupEComArray
sl@0
   356
	}
sl@0
   357
sl@0
   358
/**
sl@0
   359
@SYMTestCaseID          SYSLIB-ECOM-CT-0713
sl@0
   360
@SYMTestCaseDesc	    Tests to list all Implementations for an Interface with specified
sl@0
   361
						Resolver ID, Match String and Wildcard match
sl@0
   362
@SYMTestPriority 	    High
sl@0
   363
@SYMTestActions  	    Calls up REComSession::ListImplementationsL with interface UID Resolver ID, matching characteristics
sl@0
   364
                        Checks for no memory exceptions.
sl@0
   365
@SYMTestExpectedResults The test must not fail.
sl@0
   366
@SYMREQ                 REQ0000
sl@0
   367
*/
sl@0
   368
LOCAL_C void TestListAllImplResolverIDL()
sl@0
   369
	{
sl@0
   370
	// Test to list all Implementations for an Interface with specified
sl@0
   371
	// Resolver ID, Match String and Wildcard match
sl@0
   372
	//
sl@0
   373
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0713 "));
sl@0
   374
sl@0
   375
	TEComResolverParams resolverParams;
sl@0
   376
	resolverParams.SetDataType(KInterfaceResolveMatchStr());
sl@0
   377
	resolverParams.SetGenericMatch(ETrue);	// Allow wildcard matching
sl@0
   378
sl@0
   379
	RImplInfoPtrArray ifArray;
sl@0
   380
	CleanupStack::PushL(TCleanupItem(CleanupEComArray, &ifArray));
sl@0
   381
sl@0
   382
	TRAPD(err, REComSession::ListImplementationsL(KUidInterface,
sl@0
   383
												  resolverParams,
sl@0
   384
												  KUidResolver,
sl@0
   385
												  ifArray));
sl@0
   386
	::LeaveIfErrNoMemory(err);
sl@0
   387
	test(err == KErrNone);
sl@0
   388
sl@0
   389
	const TInt availCount = ifArray.Count();
sl@0
   390
	test.Printf(_L("Found %d implementations.\n"), availCount);
sl@0
   391
	test(availCount == 1);
sl@0
   392
sl@0
   393
	/* This should pick
sl@0
   394
	10009DC5	Ver 1/"Suicide"/10009DB2
sl@0
   395
	*/
sl@0
   396
sl@0
   397
	for (TInt count=0;count<availCount;++count)
sl@0
   398
		{
sl@0
   399
		const CImplementationInformation* info = ifArray[count];
sl@0
   400
sl@0
   401
		TDriveName driveName = info->Drive().Name();
sl@0
   402
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   403
sl@0
   404
		switch(info->ImplementationUid().iUid)
sl@0
   405
			{
sl@0
   406
			case KUidImplementation3:
sl@0
   407
				test(info->Version()==1);
sl@0
   408
				test(info->Drive()==EDriveZ);
sl@0
   409
				break;
sl@0
   410
sl@0
   411
			default:
sl@0
   412
				test.Printf(_L("Unknown implementation UID\n"));
sl@0
   413
				test(EFalse);
sl@0
   414
			}
sl@0
   415
		}
sl@0
   416
sl@0
   417
	// Empty the array of implementations
sl@0
   418
	CleanupStack::PopAndDestroy();//ifArray, results in a call to CleanupEComArray
sl@0
   419
	}
sl@0
   420
sl@0
   421
typedef void (*ClassFuncPtrL) (void);
sl@0
   422
sl@0
   423
/**
sl@0
   424
@SYMTestCaseID          SYSLIB-ECOM-CT-0714
sl@0
   425
@SYMTestCaseDesc	    Function to call all test functions
sl@0
   426
@SYMTestPriority 	    High
sl@0
   427
@SYMTestActions  	    Calls up test function and checks for handle counts.
sl@0
   428
@SYMTestExpectedResults The test must not fail.
sl@0
   429
@SYMREQ                 REQ0000
sl@0
   430
*/
sl@0
   431
/**
sl@0
   432
Wrapper function to call all test functions
sl@0
   433
sl@0
   434
@param		testFuncL pointer to test function
sl@0
   435
@param		aTestDesc test function name
sl@0
   436
*/
sl@0
   437
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
sl@0
   438
	{
sl@0
   439
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0714 "));
sl@0
   440
	test.Next(aTestDesc);
sl@0
   441
sl@0
   442
	__UHEAP_MARK;
sl@0
   443
  	// find out the number of open handles
sl@0
   444
	TInt startProcessHandleCount;
sl@0
   445
	TInt startThreadHandleCount;
sl@0
   446
	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   447
sl@0
   448
	//Call the test function
sl@0
   449
	(*testFuncL)();
sl@0
   450
sl@0
   451
	REComSession::FinalClose();
sl@0
   452
sl@0
   453
	// check that no handles have leaked
sl@0
   454
	TInt endProcessHandleCount;
sl@0
   455
	TInt endThreadHandleCount;
sl@0
   456
	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   457
sl@0
   458
	test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   459
sl@0
   460
	__UHEAP_MARKEND;
sl@0
   461
	}
sl@0
   462
sl@0
   463
/**
sl@0
   464
@SYMTestCaseID          SYSLIB-ECOM-CT-0715
sl@0
   465
@SYMTestCaseDesc	    Wrapper function to call all OOM test functions
sl@0
   466
@SYMTestPriority 	    High
sl@0
   467
@SYMTestActions  	    Calls up test function and checks for handle counts.
sl@0
   468
@SYMTestExpectedResults The test must not fail.
sl@0
   469
@SYMREQ                 REQ0000
sl@0
   470
*/
sl@0
   471
/**
sl@0
   472
Wrapper function to call all OOM test functions
sl@0
   473
sl@0
   474
@param		testFuncL pointer to OOM test function
sl@0
   475
@param		aTestDesc test function name
sl@0
   476
*/
sl@0
   477
LOCAL_C void DoOOMTest(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
sl@0
   478
	{
sl@0
   479
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0715 "));
sl@0
   480
	test.Next(aTestDesc);
sl@0
   481
sl@0
   482
	TInt err, tryCount = 0;
sl@0
   483
	do
sl@0
   484
		{
sl@0
   485
		__UHEAP_MARK;
sl@0
   486
  		// find out the number of open handles
sl@0
   487
		TInt startProcessHandleCount;
sl@0
   488
		TInt startThreadHandleCount;
sl@0
   489
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   490
sl@0
   491
		// Setting Heap failure for OOM test
sl@0
   492
		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
sl@0
   493
sl@0
   494
		TRAP(err, (*testFuncL)());
sl@0
   495
sl@0
   496
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   497
sl@0
   498
		// release handles
sl@0
   499
		if(err == KErrNone)
sl@0
   500
			{
sl@0
   501
			REComSession::FinalClose();
sl@0
   502
			}
sl@0
   503
sl@0
   504
		// check that no handles have leaked
sl@0
   505
		TInt endProcessHandleCount;
sl@0
   506
		TInt endThreadHandleCount;
sl@0
   507
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   508
sl@0
   509
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   510
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   511
sl@0
   512
		__UHEAP_MARKEND;
sl@0
   513
		} while(err == KErrNoMemory);
sl@0
   514
sl@0
   515
	test(err == KErrNone);
sl@0
   516
	test.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
sl@0
   517
	}
sl@0
   518
sl@0
   519
LOCAL_C void DoTestsL()
sl@0
   520
	{
sl@0
   521
	__UHEAP_MARK;
sl@0
   522
sl@0
   523
	// Basic tests
sl@0
   524
	DoBasicTestL(TestCreateImplSuicideL, _L("TestCreateImplSuicideL"));
sl@0
   525
	DoBasicTestL(TestListImplMatchStrL, _L("TestListImplMatchStrL"));
sl@0
   526
	DoBasicTestL(TestListImplMatchStrWildcardL, _L("TestListImplMatchStrWildcardL"));
sl@0
   527
	DoBasicTestL(TestListAllImplL, _L("TestListAllImplL"));
sl@0
   528
	DoBasicTestL(TestListAllImplResolverIDL, _L("TestListAllImplResolverIDL"));
sl@0
   529
sl@0
   530
	// OOM tests
sl@0
   531
	DoOOMTest(TestCreateImplSuicideL, _L("OOM TestCreateImplSuicide"));
sl@0
   532
	DoOOMTest(TestListImplMatchStrL, _L("OOM TestListImplMatchStr"));
sl@0
   533
	DoOOMTest(TestListImplMatchStrWildcardL, _L("OOM TestListImplMatchStrWildcard"));
sl@0
   534
	DoOOMTest(TestListAllImplL, _L("OOM TestListAllImpl"));
sl@0
   535
	DoOOMTest(TestListAllImplResolverIDL, _L("OOM TestListAllImplResolverID"));
sl@0
   536
sl@0
   537
	__UHEAP_MARKEND;
sl@0
   538
	}
sl@0
   539
sl@0
   540
// This function is used for cleanup support of locally declared arrays
sl@0
   541
LOCAL_C void CleanupEComArray(TAny* aArray)
sl@0
   542
	{
sl@0
   543
	(static_cast<RImplInfoPtrArray*>(aArray))->ResetAndDestroy();
sl@0
   544
	}
sl@0
   545
sl@0
   546
// Deleting plugin from the RAM for cleanup purpose
sl@0
   547
inline LOCAL_C void DeleteTestPlugins()
sl@0
   548
	{
sl@0
   549
	TRAPD(err, EComTestUtils::FileManDeleteFileL(KSysBinDirectoryWildcard));
sl@0
   550
	TRAP(err, EComTestUtils::FileManDeleteFileL(KResourceDirectoryWildcard));
sl@0
   551
	}
sl@0
   552
sl@0
   553
// Copies the Plugins to specific folder for testing purpose
sl@0
   554
LOCAL_C void CopyPlugins()
sl@0
   555
	{
sl@0
   556
	DeleteTestPlugins();
sl@0
   557
sl@0
   558
	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExample5OnZ, KEComExample5OnC));
sl@0
   559
	test(err==KErrNone);
sl@0
   560
sl@0
   561
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample5RscOnZ, KEComExample5RscOnC));
sl@0
   562
	test(err==KErrNone);
sl@0
   563
sl@0
   564
	// KEComExample4OnC & KEComExample4RscOnC are copied to C: Drive for
sl@0
   565
	// testing in t_listimplementation test program. These files should
sl@0
   566
	// be present in Z:. Please make sure these are present in Z only.
sl@0
   567
	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample4OnC));
sl@0
   568
	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample4RscOnC));
sl@0
   569
	}
sl@0
   570
sl@0
   571
sl@0
   572
//Initialise the Active Scheduler
sl@0
   573
//
sl@0
   574
LOCAL_C void SetupL()
sl@0
   575
	{
sl@0
   576
	// Construct and install the Active Scheduler. The Active Schedular is needed
sl@0
   577
	// by components used by this test as they are ActiveObjects.
sl@0
   578
	TheActiveScheduler = new(ELeave)CActiveScheduler;
sl@0
   579
	CActiveScheduler::Install(TheActiveScheduler);
sl@0
   580
	}
sl@0
   581
sl@0
   582
GLDEF_C TInt E32Main()
sl@0
   583
	{
sl@0
   584
	__UHEAP_MARK;
sl@0
   585
sl@0
   586
	test.Printf(_L("\n"));
sl@0
   587
	test.Title();
sl@0
   588
	test.Start(_L("Suicide Tests"));
sl@0
   589
sl@0
   590
	TheTrapCleanup = CTrapCleanup::New();
sl@0
   591
	TRAPD(err, SetupL());
sl@0
   592
	test(err == KErrNone);
sl@0
   593
sl@0
   594
	CopyPlugins();
sl@0
   595
	// The reason for the folowing delay is:
sl@0
   596
	// ECOM server could be already started. It means that when we copy some
sl@0
   597
	// ECOM plugins from Z: to C: drive - ECOM server should look for and
sl@0
   598
	// find the new ECOM plugins. The ECOM server uses for that an active object,
sl@0
   599
	// which scans plugin directories. So the discovering service is asynchronous.
sl@0
   600
	// We have to wait some time until it finishes.
sl@0
   601
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
   602
	User::After(KOneSecond * 3);
sl@0
   603
sl@0
   604
	TRAP(err,DoTestsL());
sl@0
   605
	test(err==KErrNone);
sl@0
   606
sl@0
   607
	// Cleanup files. If the cleanup fails that is no problem,
sl@0
   608
	// as any subsequent tests will replace them. The only downside
sl@0
   609
	// would be the disk not being tidied
sl@0
   610
	DeleteTestPlugins();
sl@0
   611
sl@0
   612
	delete TheActiveScheduler;
sl@0
   613
	delete TheTrapCleanup;
sl@0
   614
sl@0
   615
	test.End();
sl@0
   616
	test.Close();
sl@0
   617
sl@0
   618
	__UHEAP_MARKEND;
sl@0
   619
	return (KErrNone);
sl@0
   620
	}