os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_capcheck.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
//
sl@0
    15
sl@0
    16
#include <e32test.h>
sl@0
    17
#include <e32panic.h>
sl@0
    18
#include <f32file.h>
sl@0
    19
#include <bautils.h>
sl@0
    20
sl@0
    21
#include <ecom/ecom.h>
sl@0
    22
#include "EComUidCodes.h"
sl@0
    23
#include "Interface.h"
sl@0
    24
#include "T_PlatSecInterface.h"
sl@0
    25
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    26
#include "LoadManager.h"
sl@0
    27
sl@0
    28
/**----------------------------Client CAP-----------------------------------------
sl@0
    29
             Client Capability Set="ReadUserData" "WriteUserData"
sl@0
    30
*/
sl@0
    31
/** ---------------------------Plugins used in this test case----------------------
sl@0
    32
- T_PlatSecECom1.dll in DRIVE Z:
sl@0
    33
  Details:-Resource file=102026AB.rss
sl@0
    34
		  -Capability Set="ReadUserData" "WriteUserData"
sl@0
    35
		  -ImplementationUid=0x102026AA based on InterfaceUid=0x102026A8
sl@0
    36
sl@0
    37
- T_PlatSecECom2.dll in DRIVE Z:
sl@0
    38
  Details:-Resource file=102026AD.rss
sl@0
    39
  		  -Capability Set="ReadUserData"
sl@0
    40
  		  -ImplementationUid=0x102026AC based on InterfaceUid=0x102026A9
sl@0
    41
sl@0
    42
- T_PlatSecECom3.dll in DRIVE Z:
sl@0
    43
  Details:-Resource file=102026AF.rss
sl@0
    44
          -Capability Set="ReaderUserData" "WriteUserData" "AllFiles"
sl@0
    45
          -ImplementationUid=0x102026AE based on InterfaceUid=0x102026A9
sl@0
    46
sl@0
    47
- T_PlatSecECom4.dll in DRIVE C:
sl@0
    48
  Details:-Resource file=10202666.rss
sl@0
    49
  		  -Capability Set="ReadUserData" "WriteUserData" "ProtServ"
sl@0
    50
  		  -ImplementationUid=0x102026B1 based on InterfaceUid=0x102026A8
sl@0
    51
sl@0
    52
- T_PlatSecResolver.dll in DRIVE Z:
sl@0
    53
  Details:-Resource file=10202777.rss
sl@0
    54
  		  -Capability Set="ReadUserData"
sl@0
    55
  		  -ImplementationUid=0x10202747 based on InterfaceUid=0x102027E7
sl@0
    56
sl@0
    57
- EComExample.dll in Drive Z:
sl@0
    58
  Details:-Contain two implementation and one Resolver, only interested in the resolver
sl@0
    59
  		  -Resource file=10009DB1.RSS
sl@0
    60
  		  -Capability Set="All -Tcb"
sl@0
    61
  		  -ImplementationUid=0x10009DD0 based on InterfaceUid=0x10009D90
sl@0
    62
-------------------------------------------------------------------------------------
sl@0
    63
*/
sl@0
    64
sl@0
    65
/** Test cases covered in this test code:
sl@0
    66
1.	Testing Client API capability filtering in ListImplementation(TUid aInterfaceUid) in Z,C;
sl@0
    67
2.	Testing Client API capability filtering in CreateImplementation(TUid aImplementationUid) in Z,C;
sl@0
    68
3.	Testing Client API capability checking in Loading a non-default resolver in the server side
sl@0
    69
*/
sl@0
    70
sl@0
    71
class RCapCheckTest
sl@0
    72
	{
sl@0
    73
public:
sl@0
    74
	static TBool IsPlatSecEnforcementOn();
sl@0
    75
	//Test case 1
sl@0
    76
	static void ListImpl_InterfaceL();
sl@0
    77
	//Test case 2
sl@0
    78
	static void CreateImpl_Implementation();
sl@0
    79
	//Test case 3
sl@0
    80
	static void ListImpl_NonDefaultResolverL();
sl@0
    81
	//Test case 4
sl@0
    82
	static void ListImpl_InterfaceWithoutCapCheckL();
sl@0
    83
	};
sl@0
    84
sl@0
    85
sl@0
    86
/**--------------------Utility Functions--------------------------------------------*/
sl@0
    87
// Plugins files that need to be copied from Z: to C:
sl@0
    88
_LIT(KResourceFileNameC,	 "C:\\resource\\plugins\\T_PlatSecECom4.rsc");
sl@0
    89
_LIT(KExampleDllFileNameC,	 "C:\\sys\\bin\\T_PlatSecECom4.dll");
sl@0
    90
_LIT(KResourceFileNameZ,	 "Z:\\RAMONLY\\T_PlatSecECom4.rsc");
sl@0
    91
sl@0
    92
_LIT(KExampleDllFileNameZ,	 "Z:\\RAMONLY\\T_PlatSecECom4.dll");
sl@0
    93
sl@0
    94
const TInt KOneSecond = 1000000;
sl@0
    95
sl@0
    96
LOCAL_D RFs	TheFs;
sl@0
    97
sl@0
    98
LOCAL_D RTest test(_L("Capability Checking Test"));
sl@0
    99
sl@0
   100
// Copy the Plugins to specific folder for testing purpose
sl@0
   101
LOCAL_C void CopyPluginsL()
sl@0
   102
	{
sl@0
   103
	// Copy the dlls and .rsc files on to RAM
sl@0
   104
	TRAPD(err, EComTestUtils::FileManCopyFileL(KResourceFileNameZ,KResourceFileNameC));
sl@0
   105
	test(err == KErrNone);
sl@0
   106
	TRAP(err, EComTestUtils::FileManCopyFileL(KExampleDllFileNameZ,KExampleDllFileNameC));
sl@0
   107
	test(err == KErrNone);
sl@0
   108
	// Wait, so that ECom server looks for plugins copied from Z: to C drive
sl@0
   109
	// ECOM server could be already started. It means that when we copy some
sl@0
   110
	// ECOM plugins from Z: to C: drive - ECOM server should look for and
sl@0
   111
	// find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
sl@0
   112
	// which is an active object. So the discovering service is asynchronous. We have to
sl@0
   113
	// wait some time until it finishes. Otherwise ListImplementationsL could fail to find
sl@0
   114
	// requested implementations.
sl@0
   115
	User::After(KOneSecond * 3);
sl@0
   116
	}
sl@0
   117
sl@0
   118
// Deleting plugin from the RAM for cleanup purpose
sl@0
   119
inline LOCAL_C void DeleteTestPlugin()
sl@0
   120
	{
sl@0
   121
	TRAPD(err, EComTestUtils::FileManDeleteFileL(KResourceFileNameC));
sl@0
   122
	test(err == KErrNone);
sl@0
   123
sl@0
   124
	TRAP(err, EComTestUtils::FileManDeleteFileL(KExampleDllFileNameC));
sl@0
   125
#if defined(__WINS__) || defined (__WINSCW__)
sl@0
   126
    if (err != KErrNone)
sl@0
   127
   	    {
sl@0
   128
        TESTC(test, err, KErrAccessDenied); // DLL File locked under Windows emulator due to it being demand paged
sl@0
   129
        }
sl@0
   130
    else
sl@0
   131
       	TESTC(test, err, KErrNone); // DLL File not locked on Windows
sl@0
   132
#elif defined(__EPOC32__)
sl@0
   133
   	TESTC(test, err, KErrNone); // DLL File not locked on target hardware
sl@0
   134
#endif
sl@0
   135
    // Do no test at all as its an unexpected platform.
sl@0
   136
}
sl@0
   137
sl@0
   138
TBool RCapCheckTest::IsPlatSecEnforcementOn()
sl@0
   139
	{
sl@0
   140
	return PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement);
sl@0
   141
	}
sl@0
   142
/**
sl@0
   143
--------------------------Test case 1---------------------------------------------
sl@0
   144
Testing Client API capability filtering in ListImplementation(TUid aInterfaceUid);
sl@0
   145
-Client CapSet listing implemenation with InterfaceUid=0x102026A9
sl@0
   146
 *Two existing Impl based on that Interface T_PlatSecECom2.dll & T_PlatSecEcom3.dll
sl@0
   147
  one with lower capability set than the client
sl@0
   148
 *Expected array count=1 as it wont be able to load T_PlatSecECom2.dll
sl@0
   149
  when PlatSec is enforced, count=2 otherwise.
sl@0
   150
-Client Capset listing implementation with InterfaceUid=0x102026A8
sl@0
   151
 *Test to ensure it pick up plugins in other drive else than Z
sl@0
   152
sl@0
   153
sl@0
   154
@SYMTestCaseID          SYSLIB-ECOM-CT-0771
sl@0
   155
@SYMTestCaseDesc	    Testing Client API capability filtering in ListImplementation(TUid aInterfaceUid)
sl@0
   156
@SYMTestPriority 	    High
sl@0
   157
@SYMTestActions  	    Ensure it picks up plugins in other drive else than Z
sl@0
   158
                        List of all available implementations which
sl@0
   159
	                    satisfy this given interface and check for the validity.
sl@0
   160
@SYMTestExpectedResults The test must not fail.
sl@0
   161
@SYMREQ                 REQ0000
sl@0
   162
*/
sl@0
   163
void RCapCheckTest::ListImpl_InterfaceL()
sl@0
   164
	{
sl@0
   165
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0771 List Implementation Capability checking\n "));
sl@0
   166
	// Input parameter
sl@0
   167
	const TUid interfaceUid = {0x102026A9};
sl@0
   168
	// Output parameters
sl@0
   169
	TInt err = KErrNone;
sl@0
   170
	RImplInfoPtrArray* implementationArray=new (ELeave) RImplInfoPtrArray;
sl@0
   171
sl@0
   172
	//Listing implementation from interface=0x102026A9
sl@0
   173
	TRAP(err, REComSession::ListImplementationsL(interfaceUid, *implementationArray));
sl@0
   174
	test(KErrNone == err);
sl@0
   175
	if (RCapCheckTest::IsPlatSecEnforcementOn())
sl@0
   176
		{
sl@0
   177
		//Only will return one implementation in T_PlatSecECom3.dll
sl@0
   178
		test(1 == implementationArray->Count());
sl@0
   179
		const TUid expectedImplUid = {0x102026AE};
sl@0
   180
		test(expectedImplUid == (*implementationArray)[0]->ImplementationUid());
sl@0
   181
		}
sl@0
   182
	else
sl@0
   183
		{
sl@0
   184
		//Return two implementations from T_PlatSecECom2.dll and T_PlatSecECom3.dll
sl@0
   185
		test(2 == implementationArray->Count());
sl@0
   186
		}
sl@0
   187
	implementationArray->ResetAndDestroy();
sl@0
   188
sl@0
   189
	//Listing implementation from interface=0x102026A8
sl@0
   190
	const TUid interfaceUid2 = {0x102026A8};
sl@0
   191
	TRAP(err, REComSession::ListImplementationsL(interfaceUid2, *implementationArray));
sl@0
   192
	test(KErrNone == err);
sl@0
   193
	test(2 == implementationArray->Count());
sl@0
   194
	implementationArray->ResetAndDestroy();
sl@0
   195
sl@0
   196
	delete implementationArray;
sl@0
   197
	}
sl@0
   198
sl@0
   199
/**
sl@0
   200
--------------------------Test case 2----------------------------------------------------
sl@0
   201
Testing Client API capability filtering in CreateImplementation(TUid aImplementationUid);
sl@0
   202
- Client try to create Implementation with different capset
sl@0
   203
- If Client.CAPS > Plugin.CAPS Expected Result=FAIL
sl@0
   204
- If Client.CAPS < Plugin.CAPS Expected Result=OK
sl@0
   205
- If Client.CAPS = Plugin.CAPS Expected Result=OK
sl@0
   206
sl@0
   207
@SYMTestCaseID          SYSLIB-ECOM-CT-0772
sl@0
   208
@SYMTestCaseDesc	    Testing Client API capability filtering in CreateImplementation(TUid aImplementationUid)
sl@0
   209
@SYMTestPriority 	    High
sl@0
   210
@SYMTestActions  	    Create Implementation with different capsets
sl@0
   211
@SYMTestExpectedResults The test must not fail.
sl@0
   212
@SYMREQ                 REQ0000
sl@0
   213
*/
sl@0
   214
void RCapCheckTest::CreateImpl_Implementation()
sl@0
   215
	{
sl@0
   216
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0772 Create Implementation Capability filtering\n "));
sl@0
   217
	// Output parameters
sl@0
   218
	TInt ret=KErrNone;
sl@0
   219
	TUid returnedimplUid;
sl@0
   220
	TAny* ImplCreation=NULL;
sl@0
   221
sl@0
   222
	//Creating Implementation with CAPS="ReadUserData"
sl@0
   223
	const TUid ImplUid2 = {0x102026AC};
sl@0
   224
	TRAP(ret,ImplCreation=REComSession::CreateImplementationL(ImplUid2,returnedimplUid));
sl@0
   225
	if (RCapCheckTest::IsPlatSecEnforcementOn())
sl@0
   226
		{
sl@0
   227
		test(KErrPermissionDenied == ret);
sl@0
   228
		test(NULL == ImplCreation);
sl@0
   229
		}
sl@0
   230
	else
sl@0
   231
		{
sl@0
   232
		test(KErrNone == ret);
sl@0
   233
		test(NULL != ImplCreation);
sl@0
   234
		test(ImplUid2 == returnedimplUid);
sl@0
   235
		//Cast to CPlatSecInterface2
sl@0
   236
		CPlatSecInterface2* impl2=reinterpret_cast <CPlatSecInterface2*> (ImplCreation);
sl@0
   237
		test(ImplUid2 == impl2->ImplId());
sl@0
   238
		REComSession::DestroyedImplementation(returnedimplUid);
sl@0
   239
sl@0
   240
		delete ImplCreation;
sl@0
   241
		ImplCreation = NULL;
sl@0
   242
		}
sl@0
   243
sl@0
   244
	//Creating Implementation with CAPS="ReadUserData WriteUserData AllFiles"
sl@0
   245
	const TUid ImplUid3 = {0x102026AE};
sl@0
   246
	TUid instanceKey;
sl@0
   247
	TRAP(ret,ImplCreation=REComSession::CreateImplementationL(ImplUid3,instanceKey));
sl@0
   248
	CInstanceInfoSimple* instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (instanceKey.iUid);
sl@0
   249
	returnedimplUid = instanceInfo->ImplementationUid();
sl@0
   250
sl@0
   251
	test(KErrNone == ret);
sl@0
   252
	test(NULL != ImplCreation);
sl@0
   253
sl@0
   254
	test(ImplUid3 == returnedimplUid);
sl@0
   255
	//Cast to CPlatSecInterface3
sl@0
   256
	CPlatSecInterface3* impl3=reinterpret_cast <CPlatSecInterface3*> (ImplCreation);
sl@0
   257
	test(ImplUid3 == impl3->ImplId());
sl@0
   258
	REComSession::DestroyedImplementation(instanceKey);
sl@0
   259
sl@0
   260
	delete ImplCreation;
sl@0
   261
	ImplCreation = NULL;
sl@0
   262
sl@0
   263
	//Creating Implementation with CAPS="ReadUserData WriteUserData"
sl@0
   264
	const TUid ImplUid1 = {0x102026AA};
sl@0
   265
	TRAP(ret,ImplCreation=REComSession::CreateImplementationL(ImplUid1,instanceKey));
sl@0
   266
	instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (instanceKey.iUid);
sl@0
   267
	returnedimplUid = instanceInfo->ImplementationUid();
sl@0
   268
	test(KErrNone == ret);
sl@0
   269
	test(NULL != ImplCreation);
sl@0
   270
	test(ImplUid1 == returnedimplUid);
sl@0
   271
	//Cast to CPlatSecInterface1
sl@0
   272
	CPlatSecInterface1* impl1=reinterpret_cast <CPlatSecInterface1*> (ImplCreation);
sl@0
   273
	test(ImplUid1 == impl1->ImplId());
sl@0
   274
	REComSession::DestroyedImplementation(instanceKey);
sl@0
   275
sl@0
   276
	delete ImplCreation;
sl@0
   277
	ImplCreation = NULL;
sl@0
   278
sl@0
   279
	//Creating Implementation in C:\ with CAPS="ReadUserData WriteUserData ProtServ"
sl@0
   280
	const TUid ImplUid4 = {0x102026B1};
sl@0
   281
	TRAP(ret,ImplCreation=REComSession::CreateImplementationL(ImplUid4,instanceKey));
sl@0
   282
	instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (instanceKey.iUid);
sl@0
   283
	returnedimplUid = instanceInfo->ImplementationUid();
sl@0
   284
	test(KErrNone == ret);
sl@0
   285
	test(NULL != ImplCreation);
sl@0
   286
	test(ImplUid4 == returnedimplUid);
sl@0
   287
	REComSession::DestroyedImplementation(instanceKey);
sl@0
   288
sl@0
   289
	delete ImplCreation;
sl@0
   290
	ImplCreation = NULL;
sl@0
   291
	}
sl@0
   292
sl@0
   293
/**
sl@0
   294
--------------------------Test case 3----------------------------------------------------
sl@0
   295
Testing Client API capability filtering in ListImplementation by specifying a non-default
sl@0
   296
resolver Uid.  The resolver is loaded in the server side.
sl@0
   297
If PlatSecEnforcement is ON, the non-default resolver should have at least the "ProtServ"
sl@0
   298
capability in order to be successfully loaded.
sl@0
   299
- Testing using a non-default resolver T_PlatSecResolver.dll with CAPS=ReadUserData
sl@0
   300
- Testing using a non-default resolver EComExample.dll with CAPS=All-Tcb
sl@0
   301
sl@0
   302
@SYMTestCaseID          SYSLIB-ECOM-CT-0773
sl@0
   303
@SYMTestCaseDesc	    Testing Client API capability filtering in CreateImplementation(TUid aImplementationUid)
sl@0
   304
@SYMTestPriority 	    High
sl@0
   305
@SYMTestActions  	    Tests for listing all available implementations using a non-default resolver  with CAPS=ReadUserData
sl@0
   306
                        Tests for listing all available implementations using a non-default resolver with CAPS=All-Tcb
sl@0
   307
@SYMTestExpectedResults The test must not fail.
sl@0
   308
@SYMREQ                 REQ0000
sl@0
   309
*/
sl@0
   310
void RCapCheckTest::ListImpl_NonDefaultResolverL()
sl@0
   311
	{
sl@0
   312
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0773 Capability checking in loading non-default resolver in server side\n "));
sl@0
   313
	// Input parameters
sl@0
   314
	const TUid interfaceUid = {0x102026A9};
sl@0
   315
	const TUid resolverUid	= {0x10202747};
sl@0
   316
	TEComResolverParams resolverparams;
sl@0
   317
	_LIT8(KDummyData,"dummy");
sl@0
   318
	//Set any resolver data type as it will never reach the resolving part
sl@0
   319
	resolverparams.SetDataType(KDummyData());
sl@0
   320
	// Output parameters
sl@0
   321
	TInt err=KErrNone;
sl@0
   322
	RImplInfoPtrArray* implementationArray=new (ELeave) RImplInfoPtrArray;
sl@0
   323
sl@0
   324
	//Listing implementation from interface=0x102026A9 using T_PlatSecResolver.dll
sl@0
   325
	TRAP(err,REComSession::ListImplementationsL(interfaceUid,resolverparams,resolverUid,*implementationArray));
sl@0
   326
	if (RCapCheckTest::IsPlatSecEnforcementOn())
sl@0
   327
		{
sl@0
   328
		//ensure that no resolver returned here because of lacking the capability ProtServ
sl@0
   329
		test(KErrPermissionDenied == err);
sl@0
   330
		}
sl@0
   331
	else
sl@0
   332
		{
sl@0
   333
		//No resolver should be found based on the dummy resolver data
sl@0
   334
		test(KEComErrNoResolver == err);
sl@0
   335
		}
sl@0
   336
	test(0 == implementationArray->Count());
sl@0
   337
sl@0
   338
	//Listing implementation from interface=0x10009DD0 using EComExample.dll
sl@0
   339
	const TUid resolverUid2 = {0x10009DD0};
sl@0
   340
	TRAP(err,REComSession::ListImplementationsL(interfaceUid,resolverparams,resolverUid2,*implementationArray));
sl@0
   341
	//ensure that no problem here as the resolver has the capability ProtServ
sl@0
   342
	test(KErrNone == err);
sl@0
   343
	if (RCapCheckTest::IsPlatSecEnforcementOn())
sl@0
   344
		{
sl@0
   345
		//Only will return one implementation in T_PlatSecECom3.dll
sl@0
   346
		test(1 == implementationArray->Count());
sl@0
   347
		const TUid expectedImplUid = {0x102026AE};
sl@0
   348
		test(expectedImplUid == (*implementationArray)[0]->ImplementationUid());
sl@0
   349
		}
sl@0
   350
	else
sl@0
   351
		{
sl@0
   352
		//Return two implementations from T_PlatSecECom2.dll and T_PlatSecECom3.dll
sl@0
   353
		test(2 == implementationArray->Count());
sl@0
   354
		}
sl@0
   355
	implementationArray->ResetAndDestroy();
sl@0
   356
sl@0
   357
	delete implementationArray;
sl@0
   358
	implementationArray = NULL;
sl@0
   359
	}
sl@0
   360
sl@0
   361
/**
sl@0
   362
--------------------------Test case 4---------------------------------------------
sl@0
   363
Testing Client API without capability filtering in ListImplementation(TUid aInterfaceUid);
sl@0
   364
-Client CapSet listing implemenation with InterfaceUid=0x102026A9
sl@0
   365
 *Two existing Impl based on that Interface T_PlatSecECom2.dll & T_PlatSecEcom3.dll
sl@0
   366
  one with lower capability set than the client
sl@0
   367
 *Expected array count=2 as it will be able to load T_PlatSecECom2.dll
sl@0
   368
  when PlatSec is enforced, count=2 otherwise.
sl@0
   369
-Client Capset listing implementation with InterfaceUid=0x102026A8
sl@0
   370
 *Test to ensure it pick up plugins in other drive else than Z
sl@0
   371
sl@0
   372
sl@0
   373
@SYMTestCaseID          BASESRVCS-ECOM-T-4026
sl@0
   374
@SYMTestCaseDesc	    Testing Client API without capability filtering in ListImplementation(TUid aInterfaceUid)
sl@0
   375
@SYMTestPriority 	    High
sl@0
   376
@SYMTestActions  	    Ensure it picks up plugins in other drive else than Z
sl@0
   377
                        List of all available implementations which
sl@0
   378
	                    satisfy this given interface and check for the validity.
sl@0
   379
@SYMTestExpectedResults The test must not fail.
sl@0
   380
@SYMREQ                 CR1573,REQ11641 and REQ11793
sl@0
   381
*/
sl@0
   382
void RCapCheckTest::ListImpl_InterfaceWithoutCapCheckL()
sl@0
   383
	{
sl@0
   384
	test.Next(_L(" @SYMTestCaseID:BASESRVCS-ECOM-T-4026 List Implementation Without Capability checking and trying to Create Implementation\n "));
sl@0
   385
	// Input parameter
sl@0
   386
	const TUid interfaceUid = {0x102026A9};
sl@0
   387
	// Output parameters
sl@0
   388
	TInt err = KErrNone;
sl@0
   389
	RImplInfoPtrArray* implementationArray=new (ELeave) RImplInfoPtrArray;
sl@0
   390
	TBool capability = EFalse;
sl@0
   391
sl@0
   392
	//Listing implementation from interface=0x102026A9
sl@0
   393
	TRAP(err, REComSession::ListImplementationsL(interfaceUid, *implementationArray,capability));
sl@0
   394
	test(KErrNone == err);
sl@0
   395
	if (RCapCheckTest::IsPlatSecEnforcementOn())
sl@0
   396
		{
sl@0
   397
		TInt count=implementationArray->Count();
sl@0
   398
		test(2 == implementationArray->Count());
sl@0
   399
		}
sl@0
   400
	
sl@0
   401
	TUid returnedimplUid;
sl@0
   402
	TAny* ImplCreation=NULL;
sl@0
   403
	//Creating Implementation with CAPS="ReadUserData"
sl@0
   404
	const TUid ImplUid2 = {0x102026AC};
sl@0
   405
	TRAP(err,ImplCreation=REComSession::CreateImplementationL(ImplUid2,returnedimplUid));
sl@0
   406
	if (RCapCheckTest::IsPlatSecEnforcementOn())
sl@0
   407
		{
sl@0
   408
		test(KErrPermissionDenied == err);
sl@0
   409
		test(NULL == ImplCreation);
sl@0
   410
		}	
sl@0
   411
	implementationArray->ResetAndDestroy();
sl@0
   412
sl@0
   413
	//Listing implementation from interface=0x102026A8
sl@0
   414
	const TUid interfaceUid2 = {0x102026A8};
sl@0
   415
	TRAP(err, REComSession::ListImplementationsL(interfaceUid2, *implementationArray));
sl@0
   416
	test(KErrNone == err);
sl@0
   417
	test(2 == implementationArray->Count());
sl@0
   418
	implementationArray->ResetAndDestroy();
sl@0
   419
sl@0
   420
	delete implementationArray;
sl@0
   421
	}
sl@0
   422
sl@0
   423
sl@0
   424
LOCAL_C void RunTestL()
sl@0
   425
	{
sl@0
   426
	__UHEAP_MARK;
sl@0
   427
sl@0
   428
	//Test case 1
sl@0
   429
	RCapCheckTest::ListImpl_InterfaceL();
sl@0
   430
sl@0
   431
	//Test case 2
sl@0
   432
	RCapCheckTest::CreateImpl_Implementation();
sl@0
   433
sl@0
   434
	//Test case 3
sl@0
   435
	RCapCheckTest::ListImpl_NonDefaultResolverL();
sl@0
   436
	
sl@0
   437
	//Test case 4
sl@0
   438
	RCapCheckTest::ListImpl_InterfaceWithoutCapCheckL();
sl@0
   439
sl@0
   440
	//We do not want any memory leak here
sl@0
   441
	REComSession::FinalClose();
sl@0
   442
sl@0
   443
	__UHEAP_MARKEND;
sl@0
   444
	}
sl@0
   445
sl@0
   446
GLDEF_C TInt E32Main()
sl@0
   447
	{
sl@0
   448
	TInt err=KErrNone;
sl@0
   449
	__UHEAP_MARK;
sl@0
   450
sl@0
   451
	test.Title();
sl@0
   452
	test.Start(_L("Capability Checking tests."));
sl@0
   453
sl@0
   454
	// This test is only applicable for secure ECom.
sl@0
   455
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   456
	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
sl@0
   457
	CActiveScheduler::Install(scheduler);
sl@0
   458
sl@0
   459
	TRAP(err, CopyPluginsL());
sl@0
   460
	test(err==KErrNone);
sl@0
   461
sl@0
   462
	TRAP(err,RunTestL());
sl@0
   463
	test(err==KErrNone);
sl@0
   464
sl@0
   465
	// Cleanup files. If the cleanup fails that is no problem,
sl@0
   466
	// as any subsequent tests will replace them. The only downside
sl@0
   467
	// would be the disk not being tidied
sl@0
   468
	DeleteTestPlugin();
sl@0
   469
sl@0
   470
	delete scheduler;
sl@0
   471
	delete cleanup;
sl@0
   472
sl@0
   473
	test.End();
sl@0
   474
	test.Close();
sl@0
   475
sl@0
   476
	__UHEAP_MARKEND;
sl@0
   477
	return(0);
sl@0
   478
	}