os/ossrv/lowlevellibsandfws/pluginfw/Framework/RomResolverTest/t_romresolver.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) 1997-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 test assumes the following setup:
sl@0
    15
// EComRomRslvrExampleOnC on C:
sl@0
    16
// EComRomRslvrExampleOnZ on Z:
sl@0
    17
// The tests work by checking that the correct implementations are chosen from two plug-ins, one on C:, one on Z:
sl@0
    18
// Implementation:		On C:					On Z:								Expected result:
sl@0
    19
// 10009DC6			version 2				version 1							ROM resolver selects version 2 on C:
sl@0
    20
// 10009DC7			version 1				version 2							ROM resolver selects version 2 on Z:
sl@0
    21
// 10009DCF			version 1				-									ROM resolver does not return this
sl@0
    22
// 
sl@0
    23
//
sl@0
    24
sl@0
    25
#include <e32test.h>
sl@0
    26
#include <f32file.h>
sl@0
    27
#include <bautils.h>
sl@0
    28
sl@0
    29
#include <ecom/ecom.h>
sl@0
    30
#include "EComUidCodes.h"
sl@0
    31
#include "Interface.h" // interface to Plugins
sl@0
    32
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    33
sl@0
    34
TUid KUidInterface = {0x10009DC8};
sl@0
    35
const TInt KUidImplementationAValue = 0x10009DC6;
sl@0
    36
const TInt KUidImplementationBValue = 0x10009DC7;
sl@0
    37
const TInt KUidImplementationCValue = 0x10009DCF;
sl@0
    38
const TInt KOneSecond = 1000000;
sl@0
    39
sl@0
    40
LOCAL_D RTest test(_L("t_romresolver.exe"));
sl@0
    41
sl@0
    42
_LIT(KEComPlugin2OnZ, "z:\\RAMOnly\\EComRomRslvrExampleOnC.dll");
sl@0
    43
sl@0
    44
_LIT(KEComPluginRsc2OnZ, "z:\\RAMOnly\\EComRomRslvrExampleOnC.rsc");
sl@0
    45
_LIT(KEComPlugin2OnC, "c:\\sys\\bin\\EComRomRslvrExampleOnC.dll");
sl@0
    46
_LIT(KEComPluginRsc2OnC, "c:\\resource\\plugins\\EComRomRslvrExampleOnC.rsc");
sl@0
    47
sl@0
    48
sl@0
    49
class TheTest
sl@0
    50
	{
sl@0
    51
public:
sl@0
    52
	void StartTestL();
sl@0
    53
	};
sl@0
    54
sl@0
    55
/**
sl@0
    56
@SYMTestCaseID          SYSLIB-ECOM-CT-0663
sl@0
    57
@SYMTestCaseDesc	    Tests for REComSession::ListImplementationsL() function
sl@0
    58
@SYMTestPriority 	    High
sl@0
    59
@SYMTestActions  	    Tests for interface implementation data
sl@0
    60
@SYMTestExpectedResults The test must not fail.
sl@0
    61
@SYMREQ                 REQ0000
sl@0
    62
*/
sl@0
    63
LOCAL_C void TestDefaultResolverL()
sl@0
    64
	{
sl@0
    65
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0663 TestDefaultResolverL "));
sl@0
    66
sl@0
    67
	//
sl@0
    68
	// Testing a overloaded method for ListImplementationsL
sl@0
    69
	// ------------------------------------------------------------------
sl@0
    70
	//
sl@0
    71
sl@0
    72
	// Set up for heap leak checking
sl@0
    73
	__UHEAP_MARK;
sl@0
    74
sl@0
    75
	// and leaking thread handles
sl@0
    76
	TInt startProcessHandleCount;
sl@0
    77
	TInt startThreadHandleCount;
sl@0
    78
	TInt endProcessHandleCount;
sl@0
    79
	TInt endThreadHandleCount;
sl@0
    80
	// Test Starts...
sl@0
    81
sl@0
    82
	RThread thisThread;
sl@0
    83
	thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
    84
sl@0
    85
	RImplInfoPtrArray ifArray;
sl@0
    86
sl@0
    87
	TEComResolverParams ResolverParams;
sl@0
    88
	_LIT8(KImplementationTest,"text/wml");
sl@0
    89
	ResolverParams.SetDataType(KImplementationTest());
sl@0
    90
	ResolverParams.SetWildcardMatch(ETrue);	// Allow wildcard matching
sl@0
    91
sl@0
    92
	REComSession::ListImplementationsL(
sl@0
    93
			KUidInterface,
sl@0
    94
			ResolverParams,
sl@0
    95
			KDefaultResolverUid,
sl@0
    96
			ifArray);
sl@0
    97
sl@0
    98
	const TInt availCount = ifArray.Count();
sl@0
    99
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   100
	test(availCount==3);
sl@0
   101
sl@0
   102
	for (TInt count=0;count<availCount;++count)
sl@0
   103
		{
sl@0
   104
		const CImplementationInformation* info = ifArray[count];
sl@0
   105
sl@0
   106
		TDriveName driveName = info->Drive().Name();
sl@0
   107
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   108
sl@0
   109
		switch(info->ImplementationUid().iUid)
sl@0
   110
			{
sl@0
   111
			case KUidImplementationAValue:
sl@0
   112
				test(info->Version()==1);
sl@0
   113
				test(info->Drive()==EDriveZ);
sl@0
   114
				break;
sl@0
   115
sl@0
   116
			case KUidImplementationBValue:
sl@0
   117
				test(info->Version()==2);
sl@0
   118
				test(info->Drive()==EDriveZ);
sl@0
   119
				break;
sl@0
   120
sl@0
   121
			case KUidImplementationCValue:
sl@0
   122
				test(info->Version()==1);
sl@0
   123
				test(info->Drive()==EDriveC);
sl@0
   124
				break;
sl@0
   125
sl@0
   126
			default:
sl@0
   127
				test.Printf(_L("Unknown implementation UID\n"));
sl@0
   128
				test(0);
sl@0
   129
			}
sl@0
   130
		}
sl@0
   131
sl@0
   132
	// Empty the array of implementations
sl@0
   133
	test.Printf(_L("Destroying List..."));
sl@0
   134
	ifArray.ResetAndDestroy();
sl@0
   135
sl@0
   136
	REComSession::FinalClose(); // Don't want leaks outside the test
sl@0
   137
sl@0
   138
	// Check for open handles
sl@0
   139
	thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   140
sl@0
   141
	test(startThreadHandleCount == endThreadHandleCount);
sl@0
   142
	test.Printf(_L("Great ! No handle mismatch."));
sl@0
   143
sl@0
   144
	// Test Ends...
sl@0
   145
sl@0
   146
	__UHEAP_MARKEND;								}
sl@0
   147
sl@0
   148
/**
sl@0
   149
@SYMTestCaseID          SYSLIB-ECOM-CT-0664
sl@0
   150
@SYMTestCaseDesc	    Tests for REComSession::ListImplementationsL() function
sl@0
   151
@SYMTestPriority 	    High
sl@0
   152
@SYMTestActions  	    Tests for interface implementation data
sl@0
   153
@SYMTestExpectedResults The test must not fail.
sl@0
   154
@SYMREQ                 REQ0000
sl@0
   155
*/
sl@0
   156
LOCAL_C void TestRomResolverL()
sl@0
   157
	{
sl@0
   158
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0664 TestRomResolverL "));
sl@0
   159
sl@0
   160
	//
sl@0
   161
	// Testing a overloaded method for ListImplementationsL
sl@0
   162
	// ------------------------------------------------------------------
sl@0
   163
	//
sl@0
   164
sl@0
   165
	// Set up for heap leak checking
sl@0
   166
	__UHEAP_MARK;
sl@0
   167
sl@0
   168
	// and leaking thread handles
sl@0
   169
	TInt startProcessHandleCount;
sl@0
   170
	TInt startThreadHandleCount;
sl@0
   171
	TInt endProcessHandleCount;
sl@0
   172
	TInt endThreadHandleCount;
sl@0
   173
	// Test Starts...
sl@0
   174
sl@0
   175
	RThread thisThread;
sl@0
   176
	thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   177
sl@0
   178
	RImplInfoPtrArray ifArray;
sl@0
   179
sl@0
   180
	TEComResolverParams ResolverParams;
sl@0
   181
	_LIT8(KImplementationTest,"text/wml");
sl@0
   182
	ResolverParams.SetDataType(KImplementationTest());
sl@0
   183
	ResolverParams.SetWildcardMatch(ETrue);	// Allow wildcard matching
sl@0
   184
sl@0
   185
	REComSession::ListImplementationsL(
sl@0
   186
			KUidInterface,
sl@0
   187
			ResolverParams,
sl@0
   188
			KRomOnlyResolverUid,
sl@0
   189
			ifArray);
sl@0
   190
sl@0
   191
	const TInt availCount = ifArray.Count();
sl@0
   192
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   193
	test(availCount == 2);
sl@0
   194
sl@0
   195
	for (TInt count=0;count<availCount;++count)
sl@0
   196
		{
sl@0
   197
		const CImplementationInformation* info = ifArray[count];
sl@0
   198
sl@0
   199
		TDriveName driveName = info->Drive().Name();
sl@0
   200
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   201
sl@0
   202
		switch(info->ImplementationUid().iUid)
sl@0
   203
			{
sl@0
   204
			case KUidImplementationAValue:
sl@0
   205
				test(info->Version()==1);
sl@0
   206
				test(info->Drive()==EDriveZ);
sl@0
   207
				break;
sl@0
   208
sl@0
   209
			case KUidImplementationBValue:
sl@0
   210
				test(info->Version()==2);
sl@0
   211
				test(info->Drive()==EDriveZ);
sl@0
   212
				break;
sl@0
   213
sl@0
   214
			default:
sl@0
   215
				test.Printf(_L("Unknown implementation UID\n"));
sl@0
   216
				test(0);
sl@0
   217
			}
sl@0
   218
		}
sl@0
   219
sl@0
   220
	// Empty the array of implementations
sl@0
   221
	test.Printf(_L("Destroying List..."));
sl@0
   222
	ifArray.ResetAndDestroy();
sl@0
   223
sl@0
   224
	REComSession::FinalClose(); // Don't want leaks outside the test
sl@0
   225
sl@0
   226
	// Check for open handles
sl@0
   227
	thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   228
sl@0
   229
	test(startThreadHandleCount == endThreadHandleCount);
sl@0
   230
	test.Printf(_L("Great ! No handle mismatch."));
sl@0
   231
sl@0
   232
	// Test Ends...
sl@0
   233
sl@0
   234
	__UHEAP_MARKEND;								}
sl@0
   235
sl@0
   236
LOCAL_C void TestListImplementationL()
sl@0
   237
	{
sl@0
   238
	TestDefaultResolverL();
sl@0
   239
	TestRomResolverL();
sl@0
   240
	}
sl@0
   241
sl@0
   242
void TheTest::StartTestL()
sl@0
   243
	{
sl@0
   244
	TestListImplementationL();
sl@0
   245
	}
sl@0
   246
sl@0
   247
TInt DoTestsL()
sl@0
   248
	{
sl@0
   249
	// Should any tests leave past the lowest level???
sl@0
   250
	TheTest theT;
sl@0
   251
	theT.StartTestL();
sl@0
   252
	return KErrNone;
sl@0
   253
	}
sl@0
   254
sl@0
   255
void CopyFiles()
sl@0
   256
	{
sl@0
   257
	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComPlugin2OnZ, KEComPlugin2OnC));
sl@0
   258
	test(err==KErrNone);
sl@0
   259
sl@0
   260
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRsc2OnZ, KEComPluginRsc2OnC));
sl@0
   261
	test(err==KErrNone);
sl@0
   262
	}
sl@0
   263
sl@0
   264
void CleanupFiles()
sl@0
   265
	{
sl@0
   266
	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPlugin2OnC));
sl@0
   267
	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRsc2OnC));
sl@0
   268
	}
sl@0
   269
sl@0
   270
GLDEF_C TInt E32Main()
sl@0
   271
	{
sl@0
   272
	__UHEAP_MARK;
sl@0
   273
	test.Title();
sl@0
   274
	test.Start(_L("Rom resolver tests"));
sl@0
   275
sl@0
   276
	// get clean-up stack
sl@0
   277
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   278
sl@0
   279
	CopyFiles();
sl@0
   280
	//The reason for the folowing delay is:
sl@0
   281
	//ECOM server could be already started. It means that when we copy some
sl@0
   282
	//ECOM plugins from Z: to C: drive - ECOM server should look for and
sl@0
   283
	//find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
sl@0
   284
	//which is an active object. So the discovering service is asynchronous. We have to
sl@0
   285
	//wait some time until it finishes. Otherwise ListImplementationsL could fail to find
sl@0
   286
	//requested implementations.
sl@0
   287
	User::After(KOneSecond * 3);
sl@0
   288
sl@0
   289
	TRAPD(err,DoTestsL());
sl@0
   290
sl@0
   291
	delete cleanup;
sl@0
   292
sl@0
   293
	test(err==KErrNone);
sl@0
   294
sl@0
   295
	CleanupFiles();
sl@0
   296
sl@0
   297
	test.Next(_L("/n"));
sl@0
   298
	test.End();
sl@0
   299
	test.Close();
sl@0
   300
	__UHEAP_MARKEND;
sl@0
   301
	return(0);
sl@0
   302
	}