os/ossrv/lowlevellibsandfws/pluginfw/Framework/RomOnlyTest/t_romonly.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) 2003-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
// EComRomOnlyExampleOnC/10009DB6 on C:
sl@0
    16
// EComRomOnlyExampleOnZ/10009DB5 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
// 10009DCA			version 2				version 1, not ROM-only				ECom selects version 2 on C:
sl@0
    20
// 10009DCB			version 2, ROM-only	f	version 1, not ROM-only				ECom selects version 1 on Z:
sl@0
    21
// 10009DCC			version 1				version 2, not ROM-only				ECom selects version 2 on Z:
sl@0
    22
// 10009DCD			version 2				version 1, ROM-only					ECom selects version 1 on Z:
sl@0
    23
// 10009DCE			version 1				version 2, ROM-only					ECom selects version 2 on Z:
sl@0
    24
// 10009DCF			version 3				version 1 & version 2, ROM-only		ECom selects version 2 on Z:
sl@0
    25
// 
sl@0
    26
//
sl@0
    27
sl@0
    28
sl@0
    29
#include <e32test.h>
sl@0
    30
#include <f32file.h>
sl@0
    31
#include <bautils.h>
sl@0
    32
sl@0
    33
#include <ecom/ecom.h>
sl@0
    34
#include "EComUidCodes.h"
sl@0
    35
#include "Interface.h" // interface to Plugins
sl@0
    36
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    37
sl@0
    38
const TUid KUidInterface = {0x10009DC9};
sl@0
    39
const TInt KUidImplementationAValue = 0x10009DCA;
sl@0
    40
const TInt KUidImplementationBValue = 0x10009DCB;
sl@0
    41
const TInt KUidImplementationCValue = 0x10009DCC;
sl@0
    42
const TInt KUidImplementationDValue = 0x10009DCD;
sl@0
    43
const TInt KUidImplementationEValue = 0x10009DCE;
sl@0
    44
const TInt KUidImplementationFValue = 0x10009DCF;
sl@0
    45
const TInt KOneSecond = 1000000;
sl@0
    46
sl@0
    47
LOCAL_D RTest test(_L("t_romonly.exe"));
sl@0
    48
sl@0
    49
_LIT(KEComPluginOnZ, "z:\\RAMOnly\\EComRomOnlyExampleOnC.dll");
sl@0
    50
sl@0
    51
_LIT(KEComPluginOnC, "c:\\sys\\bin\\EComRomOnlyExampleOnC.dll");
sl@0
    52
_LIT(KEComPluginRscOnZ, "z:\\RAMOnly\\EComRomOnlyExampleOnC.rsc");
sl@0
    53
_LIT(KEComPluginRscOnC, "c:\\resource\\plugins\\EComRomOnlyExampleOnC.rsc");
sl@0
    54
sl@0
    55
class TheTest
sl@0
    56
	{
sl@0
    57
public:
sl@0
    58
	void StartTestL();
sl@0
    59
	};
sl@0
    60
sl@0
    61
void CopyFiles()
sl@0
    62
	{
sl@0
    63
	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComPluginOnZ, KEComPluginOnC));
sl@0
    64
	test(err==KErrNone);
sl@0
    65
sl@0
    66
	TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRscOnZ, KEComPluginRscOnC));
sl@0
    67
	test(err==KErrNone);
sl@0
    68
	}
sl@0
    69
sl@0
    70
void CleanupFiles()
sl@0
    71
	{
sl@0
    72
	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginOnC));
sl@0
    73
	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRscOnC));
sl@0
    74
	}
sl@0
    75
sl@0
    76
/**
sl@0
    77
@SYMTestCaseID          SYSLIB-ECOM-CT-0665
sl@0
    78
@SYMTestCaseDesc	    Tests for REComSession::ListImplementationsL() function
sl@0
    79
@SYMTestPriority 	    High
sl@0
    80
@SYMTestActions  	    Checks that the correct implementations are chosen from two plug-ins, one on C:, one on Z:
sl@0
    81
@SYMTestExpectedResults The test must not fail.
sl@0
    82
@SYMREQ                 REQ0000
sl@0
    83
*/
sl@0
    84
LOCAL_C void TestImplementationsL()
sl@0
    85
	{
sl@0
    86
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0665 TestImplementationsL "));
sl@0
    87
sl@0
    88
	// Set up for heap leak checking
sl@0
    89
	__UHEAP_MARK;
sl@0
    90
sl@0
    91
	// and leaking thread handles
sl@0
    92
	TInt startProcessHandleCount;
sl@0
    93
	TInt startThreadHandleCount;
sl@0
    94
	TInt endProcessHandleCount;
sl@0
    95
	TInt endThreadHandleCount;
sl@0
    96
	// Test Starts...
sl@0
    97
sl@0
    98
	RThread thisThread;
sl@0
    99
	thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   100
sl@0
   101
	RImplInfoPtrArray ifArray;
sl@0
   102
sl@0
   103
	TEComResolverParams ResolverParams;
sl@0
   104
	_LIT8(KImplementationTest,"text/wml");
sl@0
   105
	ResolverParams.SetDataType(KImplementationTest());
sl@0
   106
	ResolverParams.SetWildcardMatch(ETrue);	// Allow wildcard matching
sl@0
   107
sl@0
   108
	REComSession::ListImplementationsL(
sl@0
   109
			KUidInterface,
sl@0
   110
			ResolverParams,
sl@0
   111
			KDefaultResolverUid,
sl@0
   112
			ifArray);
sl@0
   113
sl@0
   114
	const TInt availCount = ifArray.Count();
sl@0
   115
	test.Printf(_L("Found %d implementations.\n"),availCount);
sl@0
   116
	test(availCount == 6);
sl@0
   117
sl@0
   118
	for (TInt count=0;count<availCount;++count)
sl@0
   119
		{
sl@0
   120
		const CImplementationInformation* info = ifArray[count];
sl@0
   121
sl@0
   122
		TDriveName driveName = info->Drive().Name();
sl@0
   123
		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
sl@0
   124
sl@0
   125
		switch(info->ImplementationUid().iUid)
sl@0
   126
			{
sl@0
   127
			case KUidImplementationAValue:
sl@0
   128
				test(info->Version()==1);
sl@0
   129
				test(info->Drive()==EDriveZ);
sl@0
   130
				break;
sl@0
   131
sl@0
   132
			case KUidImplementationBValue:
sl@0
   133
				test(info->Version()==1);
sl@0
   134
				test(info->Drive()==EDriveZ);
sl@0
   135
				break;
sl@0
   136
sl@0
   137
			case KUidImplementationCValue:
sl@0
   138
				test(info->Version()==2);
sl@0
   139
				test(info->Drive()==EDriveZ);
sl@0
   140
				break;
sl@0
   141
sl@0
   142
			case KUidImplementationDValue:
sl@0
   143
				test(info->Version()==1);
sl@0
   144
				test(info->Drive()==EDriveZ);
sl@0
   145
				break;
sl@0
   146
sl@0
   147
			case KUidImplementationEValue:
sl@0
   148
				test(info->Version()==2);
sl@0
   149
				test(info->Drive()==EDriveZ);
sl@0
   150
				break;
sl@0
   151
sl@0
   152
			case KUidImplementationFValue:
sl@0
   153
				test(info->Version()==2);
sl@0
   154
				test(info->Drive()==EDriveZ);
sl@0
   155
				break;
sl@0
   156
			}
sl@0
   157
		}
sl@0
   158
sl@0
   159
	// Empty the array of implementations
sl@0
   160
	test.Printf(_L("Destroying List..."));
sl@0
   161
	ifArray.ResetAndDestroy();
sl@0
   162
sl@0
   163
	REComSession::FinalClose(); // Don't want leaks outside the test
sl@0
   164
sl@0
   165
	// Check for open handles
sl@0
   166
	thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   167
sl@0
   168
	test(startThreadHandleCount == endThreadHandleCount);
sl@0
   169
	test.Printf(_L("Great ! No handle mismatch."));
sl@0
   170
sl@0
   171
	// Test Ends...
sl@0
   172
sl@0
   173
	__UHEAP_MARKEND;
sl@0
   174
	}
sl@0
   175
sl@0
   176
void TheTest::StartTestL()
sl@0
   177
	{
sl@0
   178
	TestImplementationsL();
sl@0
   179
	}
sl@0
   180
sl@0
   181
TInt DoTestsL()
sl@0
   182
	{
sl@0
   183
	// Should any tests leave past the lowest level???
sl@0
   184
	TheTest theT;
sl@0
   185
	theT.StartTestL();
sl@0
   186
	return KErrNone;
sl@0
   187
	}
sl@0
   188
sl@0
   189
GLDEF_C TInt E32Main()
sl@0
   190
	{
sl@0
   191
	__UHEAP_MARK;
sl@0
   192
	test.Title();
sl@0
   193
	test.Start(_L("Rom resolver tests"));
sl@0
   194
sl@0
   195
	// get clean-up stack
sl@0
   196
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   197
sl@0
   198
	CopyFiles();
sl@0
   199
	//The reason for the folowing delay is:
sl@0
   200
	//ECOM server could be already started. It means that when we copy some
sl@0
   201
	//ECOM plugins from Z: to C: drive - ECOM server should look for and
sl@0
   202
	//find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
sl@0
   203
	//which is an active object. So the discovering service is asynchronous. We have to
sl@0
   204
	//wait some time until it finishes. Otherwise ListImplementationsL could fail to find
sl@0
   205
	//requested implementations.
sl@0
   206
	User::After(KOneSecond * 3);
sl@0
   207
sl@0
   208
	TRAPD(err,DoTestsL());
sl@0
   209
	delete cleanup;
sl@0
   210
sl@0
   211
	test(err==KErrNone);
sl@0
   212
sl@0
   213
	CleanupFiles();
sl@0
   214
sl@0
   215
	test.Next(_L("/n"));
sl@0
   216
	test.End();
sl@0
   217
	test.Close();
sl@0
   218
	__UHEAP_MARKEND;
sl@0
   219
	return(0);
sl@0
   220
	}