os/ossrv/lowlevellibsandfws/pluginfw/Framework/PluginUpgradeTest/t_pluginupgrade.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 code to test the plugin upgrade feature of ecom as required by CR 65BCA3.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32test.h>
sl@0
    19
#include <e32panic.h>
sl@0
    20
#include <f32file.h>
sl@0
    21
#include <bautils.h>
sl@0
    22
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    23
sl@0
    24
#include <ecom/ecom.h>
sl@0
    25
#include "EComUidCodes.h"
sl@0
    26
#include "Interface.h" // interface to Plugins
sl@0
    27
sl@0
    28
// RAM Only RSC and DLL
sl@0
    29
_LIT(KRamOnlyEComUpgradeExample1DLL,		"Z:\\RAMOnly\\EComUpgradeExample1.dll");
sl@0
    30
_LIT(KRamOnlyEComUpgradeExample1RSC,		"Z:\\RAMOnly\\EComUpgradeExample1.rsc");
sl@0
    31
sl@0
    32
_LIT(KRamOnlyEComUpgradeExample2DLL,		"Z:\\RAMOnly\\EComUpgradeExample2.dll");
sl@0
    33
_LIT(KRamOnlyEComUpgradeExample2RSC,		"Z:\\RAMOnly\\EComUpgradeExample2.rsc");
sl@0
    34
sl@0
    35
_LIT(KRamOnlyEComUpgradeExample3DLL,		"Z:\\RAMOnly\\EComUpgradeExample3.dll");
sl@0
    36
_LIT(KRamOnlyEComUpgradeExample3RSC,		"Z:\\RAMOnly\\EComUpgradeExample3.rsc");
sl@0
    37
sl@0
    38
_LIT(KEComUpgradeExample1DLLOnC,			"C:\\sys\\bin\\EComUpgradeExample1.dll");
sl@0
    39
_LIT(KEComUpgradeExample1RSCOnC,			"C:\\Resource\\Plugins\\EComUpgradeExample1.rsc");
sl@0
    40
sl@0
    41
_LIT(KEComUpgradeExample2DLLOnC,			"C:\\sys\\bin\\EComUpgradeExample2.dll");
sl@0
    42
_LIT(KEComUpgradeExample2RSCOnC,			"C:\\Resource\\Plugins\\EComUpgradeExample2.rsc");
sl@0
    43
sl@0
    44
_LIT(KEComUpgradeExample3DLLOnC,			"C:\\sys\\bin\\EComUpgradeExample3.dll");
sl@0
    45
_LIT(KEComUpgradeExample3RSCOnC,			"C:\\Resource\\Plugins\\EComUpgradeExample3.rsc");
sl@0
    46
sl@0
    47
_LIT(KRamOnlyEComUpgradeROExample1DLL,		"Z:\\RAMOnly\\EComUpgradeROExample1.dll");
sl@0
    48
_LIT(KRamOnlyEComUpgradeROExample1RSC,		"Z:\\RAMOnly\\EComUpgradeROExample1.rsc");
sl@0
    49
sl@0
    50
_LIT(KRamOnlyEComUpgradeROExample2DLL,		"Z:\\RAMOnly\\EComUpgradeROExample2.dll");
sl@0
    51
_LIT(KRamOnlyEComUpgradeROExample2RSC,		"Z:\\RAMOnly\\EComUpgradeROExample2.rsc");
sl@0
    52
sl@0
    53
_LIT(KRamOnlyEComUpgradeROExample3DLL,		"Z:\\RAMOnly\\EComUpgradeROExample3.dll");
sl@0
    54
_LIT(KRamOnlyEComUpgradeROExample3RSC,		"Z:\\RAMOnly\\EComUpgradeROExample3.rsc");
sl@0
    55
sl@0
    56
_LIT(KEComUpgradeROExample1DLLOnC,			"C:\\sys\\bin\\EComUpgradeROExample1.dll");
sl@0
    57
_LIT(KEComUpgradeROExample1RSCOnC,			"C:\\Resource\\Plugins\\EComUpgradeROExample1.rsc");
sl@0
    58
sl@0
    59
_LIT(KEComUpgradeROExample2DLLOnC,			"C:\\sys\\bin\\EComUpgradeROExample2.dll");
sl@0
    60
_LIT(KEComUpgradeROExample2RSCOnC,			"C:\\Resource\\Plugins\\EComUpgradeROExample2.rsc");
sl@0
    61
sl@0
    62
_LIT(KEComUpgradeROExample3DLLOnC,			"C:\\sys\\bin\\EComUpgradeROExample3.dll");
sl@0
    63
_LIT(KEComUpgradeROExample3RSCOnC,			"C:\\Resource\\Plugins\\EComUpgradeROExample3.rsc");
sl@0
    64
sl@0
    65
const TInt KOneSecond = 1000000;
sl@0
    66
const TInt KInterfaceUid = 0x10009DBA;
sl@0
    67
const TInt KRomOnlyInterfaceUid = 0x10009DBD;
sl@0
    68
const TInt KImplementationUid = 0x10009DBB;
sl@0
    69
const TInt KRomOnlyImplementationUid = 0x10009DBE;
sl@0
    70
sl@0
    71
LOCAL_D RTest TheTest(_L("Plugin Upgrade Test"));
sl@0
    72
sl@0
    73
/**
sl@0
    74
Test macroes and functions
sl@0
    75
*/
sl@0
    76
static  void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    77
	{
sl@0
    78
	if(aValue != aExpected)
sl@0
    79
		{
sl@0
    80
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    81
		TheTest(EFalse, aLine);
sl@0
    82
		}
sl@0
    83
	}
sl@0
    84
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    85
sl@0
    86
/**
sl@0
    87
Kill Ecom Server for testing purposes
sl@0
    88
*/
sl@0
    89
static void KillEComServerL()
sl@0
    90
	{
sl@0
    91
	//Need to ensure that the EComServer process is killed before even starting this test by using
sl@0
    92
   	//the EComTestUtils library
sl@0
    93
   	_LIT(KEComServerProcessName,"ecomserver");
sl@0
    94
   	TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
sl@0
    95
   	error=error;
sl@0
    96
	}
sl@0
    97
sl@0
    98
class RPluginUpgradeTest
sl@0
    99
	{
sl@0
   100
public:
sl@0
   101
	static void UpgradePluginSameNameLowerVersionL(TBool aIsRomOnly);
sl@0
   102
	static void UpgradePluginDifferentNameLowerVersionL(TBool aIsRomOnly);
sl@0
   103
	static void UpgradePluginSameNameHigherVersionL(TBool aIsRomOnly);
sl@0
   104
	static void UpgradePluginDifferentNameHigherVersionL(TBool aIsRomOnly);
sl@0
   105
	static void UpgradePluginSameNameSameVersionL(TBool aIsRomOnly);
sl@0
   106
	static void UpgradePluginDifferentNameSameVersionL(TBool aIsRomOnly);
sl@0
   107
	};
sl@0
   108
sl@0
   109
/**
sl@0
   110
Copies the Plugins to specific folder for testing purpose
sl@0
   111
*/
sl@0
   112
LOCAL_C void CopyPluginSameNameLowerVersion(TBool aIsRomOnly)
sl@0
   113
	{
sl@0
   114
	TInt err=KErrNone;
sl@0
   115
	if(aIsRomOnly)
sl@0
   116
		{
sl@0
   117
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1DLL, KEComUpgradeROExample2DLLOnC));
sl@0
   118
		TEST2(err, KErrNone);
sl@0
   119
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1RSC, KEComUpgradeROExample2RSCOnC));
sl@0
   120
		TEST2(err, KErrNone);
sl@0
   121
		}
sl@0
   122
	else
sl@0
   123
		{
sl@0
   124
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1DLL, KEComUpgradeExample2DLLOnC));
sl@0
   125
		TEST2(err, KErrNone);
sl@0
   126
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1RSC, KEComUpgradeExample2RSCOnC));
sl@0
   127
		TEST2(err, KErrNone);
sl@0
   128
		}
sl@0
   129
	}
sl@0
   130
sl@0
   131
LOCAL_C void CopyPluginDifferentNameLowerVersion(TBool aIsRomOnly)
sl@0
   132
	{
sl@0
   133
	TInt err=KErrNone;
sl@0
   134
	if(aIsRomOnly)
sl@0
   135
		{
sl@0
   136
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1DLL, KEComUpgradeROExample1DLLOnC));
sl@0
   137
		TEST2(err, KErrNone);
sl@0
   138
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1RSC, KEComUpgradeROExample1RSCOnC));
sl@0
   139
		TEST2(err, KErrNone);
sl@0
   140
		}
sl@0
   141
	else
sl@0
   142
		{
sl@0
   143
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1DLL, KEComUpgradeExample1DLLOnC));
sl@0
   144
		TEST2(err, KErrNone);
sl@0
   145
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1RSC, KEComUpgradeExample1RSCOnC));
sl@0
   146
		TEST2(err, KErrNone);
sl@0
   147
		}
sl@0
   148
	}
sl@0
   149
sl@0
   150
LOCAL_C void CopyPluginSameNameHigherVersion(TBool aIsRomOnly)
sl@0
   151
	{
sl@0
   152
	TInt err=KErrNone;
sl@0
   153
	if(aIsRomOnly)
sl@0
   154
		{
sl@0
   155
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3DLL, KEComUpgradeROExample2DLLOnC));
sl@0
   156
		TEST2(err, KErrNone);
sl@0
   157
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3RSC, KEComUpgradeROExample2RSCOnC));
sl@0
   158
		TEST2(err, KErrNone);
sl@0
   159
		}
sl@0
   160
	else
sl@0
   161
		{
sl@0
   162
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3DLL, KEComUpgradeExample2DLLOnC));
sl@0
   163
		TEST2(err, KErrNone);
sl@0
   164
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3RSC, KEComUpgradeExample2RSCOnC));
sl@0
   165
		TEST2(err, KErrNone);
sl@0
   166
		}
sl@0
   167
	}
sl@0
   168
sl@0
   169
LOCAL_C void CopyPluginDifferentNameHigherVersion(TBool aIsRomOnly)
sl@0
   170
	{
sl@0
   171
	TInt err=KErrNone;
sl@0
   172
	if(aIsRomOnly)
sl@0
   173
		{
sl@0
   174
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3DLL, KEComUpgradeROExample3DLLOnC));
sl@0
   175
		TEST2(err, KErrNone);
sl@0
   176
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3RSC, KEComUpgradeROExample3RSCOnC));
sl@0
   177
		TEST2(err, KErrNone);
sl@0
   178
		}
sl@0
   179
	else
sl@0
   180
		{
sl@0
   181
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3DLL, KEComUpgradeExample3DLLOnC));
sl@0
   182
		TEST2(err, KErrNone);
sl@0
   183
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3RSC, KEComUpgradeExample3RSCOnC));
sl@0
   184
		TEST2(err, KErrNone);
sl@0
   185
		}
sl@0
   186
	}
sl@0
   187
sl@0
   188
LOCAL_C void CopyPluginSameNameSameVersion(TBool aIsRomOnly)
sl@0
   189
	{
sl@0
   190
	TInt err=KErrNone;
sl@0
   191
	if(aIsRomOnly)
sl@0
   192
		{
sl@0
   193
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2DLL, KEComUpgradeROExample2DLLOnC));
sl@0
   194
		TEST2(err, KErrNone);
sl@0
   195
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2RSC, KEComUpgradeROExample2RSCOnC));
sl@0
   196
		TEST2(err, KErrNone);
sl@0
   197
		}
sl@0
   198
	else
sl@0
   199
		{
sl@0
   200
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2DLL, KEComUpgradeExample2DLLOnC));
sl@0
   201
		TEST2(err, KErrNone);
sl@0
   202
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2RSC, KEComUpgradeExample2RSCOnC));
sl@0
   203
		TEST2(err, KErrNone);
sl@0
   204
		}
sl@0
   205
	}
sl@0
   206
sl@0
   207
LOCAL_C void CopyPluginDifferentNameSameVersion(TBool aIsRomOnly)
sl@0
   208
	{
sl@0
   209
	TInt err=KErrNone;
sl@0
   210
	if(aIsRomOnly)
sl@0
   211
		{
sl@0
   212
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2DLL, KEComUpgradeROExample3DLLOnC));
sl@0
   213
		TEST2(err, KErrNone);
sl@0
   214
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2RSC, KEComUpgradeROExample3RSCOnC));
sl@0
   215
		TEST2(err, KErrNone);
sl@0
   216
		}
sl@0
   217
	else
sl@0
   218
		{
sl@0
   219
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2DLL, KEComUpgradeExample3DLLOnC));
sl@0
   220
		TEST2(err, KErrNone);
sl@0
   221
		TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2RSC, KEComUpgradeExample3RSCOnC));
sl@0
   222
		TEST2(err, KErrNone);
sl@0
   223
		}
sl@0
   224
	}
sl@0
   225
sl@0
   226
inline LOCAL_C void ResetEcom()
sl@0
   227
	{
sl@0
   228
	// close session
sl@0
   229
	REComSession::FinalClose();
sl@0
   230
sl@0
   231
	// kill ecomserver
sl@0
   232
	KillEComServerL();
sl@0
   233
	}
sl@0
   234
sl@0
   235
// Deleting plugin from the RAM for cleanup purpose
sl@0
   236
inline LOCAL_C void DeleteUpgradeExample1Plugins(TBool aIsRomOnly)
sl@0
   237
	{
sl@0
   238
	TInt err=KErrNone;
sl@0
   239
	if(aIsRomOnly)
sl@0
   240
		{
sl@0
   241
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample1DLLOnC));
sl@0
   242
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample1RSCOnC));
sl@0
   243
		}
sl@0
   244
	else
sl@0
   245
		{
sl@0
   246
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample1DLLOnC));
sl@0
   247
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample1RSCOnC));
sl@0
   248
		}
sl@0
   249
	}
sl@0
   250
sl@0
   251
inline LOCAL_C void DeleteUpgradeExample2Plugins(TBool aIsRomOnly)
sl@0
   252
	{
sl@0
   253
	TInt err=KErrNone;
sl@0
   254
	if(aIsRomOnly)
sl@0
   255
		{
sl@0
   256
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample2DLLOnC));
sl@0
   257
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample2RSCOnC));
sl@0
   258
		}
sl@0
   259
	else
sl@0
   260
		{
sl@0
   261
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample2DLLOnC));
sl@0
   262
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample2RSCOnC));
sl@0
   263
		}
sl@0
   264
	}
sl@0
   265
sl@0
   266
inline LOCAL_C void DeleteUpgradeExample3Plugins(TBool aIsRomOnly)
sl@0
   267
	{
sl@0
   268
	TInt err=KErrNone;
sl@0
   269
	if(aIsRomOnly)
sl@0
   270
		{
sl@0
   271
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample3DLLOnC));
sl@0
   272
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample3RSCOnC));
sl@0
   273
		}
sl@0
   274
	else
sl@0
   275
		{
sl@0
   276
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample3DLLOnC));
sl@0
   277
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample3RSCOnC));
sl@0
   278
		}
sl@0
   279
	}
sl@0
   280
sl@0
   281
inline LOCAL_C void CheckDefaultPluginOnZ(TBool aIsRomOnly)
sl@0
   282
	{
sl@0
   283
	RImplInfoPtrArray implArray;
sl@0
   284
	TUid interfaceUid;
sl@0
   285
sl@0
   286
	if(aIsRomOnly)
sl@0
   287
		{
sl@0
   288
		/**
sl@0
   289
		The following Plugin exists on the Z drive and will be discovered by ECOM during startup.
sl@0
   290
sl@0
   291
		Interface UID   DLL	UID     Imp. UID    Version    DllFile
sl@0
   292
		---------------------------------------------------------------------------------------
sl@0
   293
		0x10009DBD      0x10009DBC  0x10009DBE  2          Z:\\..\\EComUpgradeExample2.dll
sl@0
   294
		**/
sl@0
   295
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
   296
		}
sl@0
   297
	else
sl@0
   298
		{
sl@0
   299
		/**
sl@0
   300
		The following Plugin exists on the Z drive and will be discovered by ECOM during startup.
sl@0
   301
sl@0
   302
		Interface UID   DLL	UID     Imp. UID    Version    DllFile
sl@0
   303
		---------------------------------------------------------------------------------------
sl@0
   304
		0x10009DBA      0x10009DB9  0x10009DBB  2          Z:\\..\\EComUpgradeExample2.dll
sl@0
   305
		**/
sl@0
   306
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
   307
		}
sl@0
   308
sl@0
   309
	// Get implementations for IF UID 0x10009DBA
sl@0
   310
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   311
sl@0
   312
	//Expected number of implementations returned
sl@0
   313
	TEST2(implArray.Count(), 1);
sl@0
   314
sl@0
   315
	//Check that the implementation uid returned matched the specs above
sl@0
   316
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
   317
	TInt version = implArray[0]->Version();
sl@0
   318
	TInt drive = implArray[0]->Drive();
sl@0
   319
sl@0
   320
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   321
sl@0
   322
	// imp. uid
sl@0
   323
	if(aIsRomOnly)
sl@0
   324
		{
sl@0
   325
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   326
		}
sl@0
   327
	else
sl@0
   328
		{
sl@0
   329
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   330
		}
sl@0
   331
	// version
sl@0
   332
	TEST2(version, 2);
sl@0
   333
	// Z drive
sl@0
   334
	TEST2(drive, EDriveZ);
sl@0
   335
sl@0
   336
	implArray.ResetAndDestroy();
sl@0
   337
	}
sl@0
   338
sl@0
   339
/**
sl@0
   340
@SYMTestCaseID			SYSLIB-ECOM-CT-1596
sl@0
   341
@SYMTestCaseDesc		Tests to ensure that an implementation will not be upgraded when the
sl@0
   342
						upgrading DLL/RSC name is the same as the DLL/RSC name to be
sl@0
   343
						upgraded but has a lower version.
sl@0
   344
@SYMTestPriority		High
sl@0
   345
@SYMTestActions			Call REComSession::ListImplementations() and check V1 implementation
sl@0
   346
						on Z drive exists.
sl@0
   347
						Copy DLL/RSC with same name and lower version to C drive.
sl@0
   348
						Call REComSession::ListImplementations() and check V1 implementation
sl@0
   349
						upgrades on C drive has not upgraded the original implementation on Z drive.
sl@0
   350
						Restart ECOM (to test subsequent boot condition i.e. loading from dat file
sl@0
   351
						Call REComSession::ListImplementations() and check V1 implementation
sl@0
   352
						upgrades on C drive has not upgraded the original implementation on Z drive.
sl@0
   353
						Check for no crash and memory leaks.
sl@0
   354
						The same test is repeated for Rom Only drives. And no upgrade in version is
sl@0
   355
						observed.
sl@0
   356
@SYMTestExpectedResults	The test must not fail.
sl@0
   357
@SYMDEF					DEF080682
sl@0
   358
*/
sl@0
   359
void RPluginUpgradeTest::UpgradePluginSameNameLowerVersionL(TBool aIsRomOnly)
sl@0
   360
	{
sl@0
   361
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1596 "));
sl@0
   362
	__UHEAP_MARK;
sl@0
   363
sl@0
   364
	ResetEcom();
sl@0
   365
sl@0
   366
	CheckDefaultPluginOnZ(aIsRomOnly);
sl@0
   367
sl@0
   368
	TUid interfaceUid;
sl@0
   369
	if(aIsRomOnly)
sl@0
   370
		{
sl@0
   371
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
   372
		}
sl@0
   373
	else
sl@0
   374
		{
sl@0
   375
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
   376
		}
sl@0
   377
	RImplInfoPtrArray implArray;
sl@0
   378
sl@0
   379
	/**
sl@0
   380
	The following plugin is now added to the C drive and ECOM will do a rediscovery and
sl@0
   381
	will not discover it.
sl@0
   382
sl@0
   383
	Interface UID   DLL	UID     Imp. UID    Version    DllFile
sl@0
   384
	---------------------------------------------------------------------------------------
sl@0
   385
	for ROM only
sl@0
   386
	0x10009DBD      0x10009DBC  0x10009DBE  1          C:\\..\\EComUpgradeROExample2.dll
sl@0
   387
	otherwise
sl@0
   388
	0x10009DBA      0x10009DB9  0x10009DBB  1          C:\\..\\EComUpgradeExample2.dll
sl@0
   389
	**/
sl@0
   390
sl@0
   391
	CopyPluginSameNameLowerVersion(aIsRomOnly);
sl@0
   392
	// Give ECOM a chance to discover new plugins.
sl@0
   393
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
   394
	User::After(KOneSecond * 3);
sl@0
   395
sl@0
   396
	// The directory notifier will now detect that a new plugin has been added to the C drive and will cause
sl@0
   397
	// ECOM to perform a new discovery.
sl@0
   398
sl@0
   399
	// Get implementations for IF UID 0x10009DBA
sl@0
   400
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   401
sl@0
   402
	//Expected number of implementations returned
sl@0
   403
	TEST2(implArray.Count(), 1);
sl@0
   404
sl@0
   405
	//Check that the implementation uid returned matched the specs above
sl@0
   406
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
   407
	TInt version = implArray[0]->Version();
sl@0
   408
	TInt drive = implArray[0]->Drive();
sl@0
   409
sl@0
   410
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
   411
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   412
	if(aIsRomOnly)
sl@0
   413
		{
sl@0
   414
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   415
		TEST2(version, 2);
sl@0
   416
		TEST2(drive, EDriveZ);
sl@0
   417
		}
sl@0
   418
	else
sl@0
   419
		{
sl@0
   420
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   421
		TEST2(version, 2);
sl@0
   422
		TEST2(drive, EDriveZ);
sl@0
   423
		}
sl@0
   424
sl@0
   425
	implArray.ResetAndDestroy();
sl@0
   426
sl@0
   427
	// close session
sl@0
   428
	REComSession::FinalClose();
sl@0
   429
sl@0
   430
	// kill ecomserver
sl@0
   431
	KillEComServerL();
sl@0
   432
sl@0
   433
	// Get implementations for IF UID 0x10009DBA
sl@0
   434
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   435
sl@0
   436
	//Expected number of implementations returned
sl@0
   437
	TEST2(implArray.Count(), 1);
sl@0
   438
sl@0
   439
	//Check that the implementation uid returned matched the specs above
sl@0
   440
	implUid = implArray[0]->ImplementationUid();
sl@0
   441
	version = implArray[0]->Version();
sl@0
   442
	drive = implArray[0]->Drive();
sl@0
   443
sl@0
   444
	RDebug::Print(_L("After restart...\n"));
sl@0
   445
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   446
	if(aIsRomOnly)
sl@0
   447
		{
sl@0
   448
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   449
		TEST2(version, 2);
sl@0
   450
		TEST2(drive, EDriveZ);
sl@0
   451
		}
sl@0
   452
	else
sl@0
   453
		{
sl@0
   454
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   455
		TEST2(version, 2);
sl@0
   456
		TEST2(drive, EDriveZ);
sl@0
   457
		}
sl@0
   458
sl@0
   459
	implArray.ResetAndDestroy();
sl@0
   460
sl@0
   461
	// close session
sl@0
   462
	REComSession::FinalClose();
sl@0
   463
sl@0
   464
	// tidy up
sl@0
   465
	// Remove plugins from C drive
sl@0
   466
	DeleteUpgradeExample2Plugins(aIsRomOnly);
sl@0
   467
sl@0
   468
	// Give ECOM a chance to rediscover after deletion of plugins.
sl@0
   469
	User::After(KOneSecond * 3);
sl@0
   470
sl@0
   471
	// close session
sl@0
   472
	REComSession::FinalClose();
sl@0
   473
sl@0
   474
	// kill ecomserver
sl@0
   475
	KillEComServerL();
sl@0
   476
sl@0
   477
	__UHEAP_MARKEND;
sl@0
   478
	}
sl@0
   479
sl@0
   480
sl@0
   481
/**
sl@0
   482
@SYMTestCaseID			SYSLIB-ECOM-CT-1597
sl@0
   483
@SYMTestCaseDesc		Tests to ensure that an implementation will not be upgraded when the
sl@0
   484
						upgrading DLL/RSC name is different from the DLL/RSC to be upgraded.
sl@0
   485
						See CR65BCA3 even when the version is lower.
sl@0
   486
@SYMTestPriority		High
sl@0
   487
@SYMTestActions			Call REComSession::ListImplementations() and check V2 implementation
sl@0
   488
						on Z drive exists.
sl@0
   489
						Copy DLL/RSC with different name and V1 to DLL/RSC to C drive.
sl@0
   490
						Call REComSession::ListImplementations() and check the original V2
sl@0
   491
						implementation on Z drive has not been upgraded.
sl@0
   492
						Check for no crash and memory leaks.
sl@0
   493
						The same test is repeated for Rom Only drives. And no upgrade in version is
sl@0
   494
						observed.
sl@0
   495
@SYMTestExpectedResults	The test must not fail.
sl@0
   496
@SYMDEF					DEF080682
sl@0
   497
*/
sl@0
   498
void RPluginUpgradeTest::UpgradePluginDifferentNameLowerVersionL(TBool aIsRomOnly)
sl@0
   499
	{
sl@0
   500
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1597 "));
sl@0
   501
	__UHEAP_MARK;
sl@0
   502
sl@0
   503
	ResetEcom();
sl@0
   504
sl@0
   505
	CheckDefaultPluginOnZ(aIsRomOnly);
sl@0
   506
sl@0
   507
	TUid interfaceUid = TUid::Null();
sl@0
   508
	if(aIsRomOnly)
sl@0
   509
		{
sl@0
   510
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
   511
		}
sl@0
   512
	else
sl@0
   513
		{
sl@0
   514
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
   515
		}
sl@0
   516
	RImplInfoPtrArray implArray;
sl@0
   517
sl@0
   518
	/**
sl@0
   519
	The following plugin is now added to the C drive and ECOM will do a rediscovery and attempt to discover it.
sl@0
   520
sl@0
   521
	Interface UID   DLL	UID     Imp. UID    Version    DllFile
sl@0
   522
	----------------------------------------------------------------------------------------
sl@0
   523
	for ROM only
sl@0
   524
	0x10009DBD      0x10009DBC  0x10009DBE  1          C:\\..\\EComUpgradeROExample1.dll
sl@0
   525
	otherwise
sl@0
   526
	0x10009DBA      0x10009DB9  0x10009DBB  1          C:\\..\\EComUpgradeExample1.dll
sl@0
   527
	**/
sl@0
   528
sl@0
   529
	CopyPluginDifferentNameLowerVersion(aIsRomOnly);
sl@0
   530
	// Give ECOM a chance to discover new plugins.
sl@0
   531
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
   532
	User::After(KOneSecond * 3);
sl@0
   533
sl@0
   534
	// The directory notifier will now detect that a new plugin has been added to the C drive and will cause
sl@0
   535
	// ECOM to perform a new discovery.
sl@0
   536
sl@0
   537
	// The upgrade should fail an dthe existing implementation on the Z should remain
sl@0
   538
sl@0
   539
	// Get implementations for IF UID 0x10009DBA
sl@0
   540
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   541
sl@0
   542
	//Expected number of implementations returned
sl@0
   543
	TEST2(implArray.Count(), 1);
sl@0
   544
sl@0
   545
	//Check that the implementation uid returned matched the specs above
sl@0
   546
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
   547
	TInt version = implArray[0]->Version();
sl@0
   548
	TInt drive = implArray[0]->Drive();
sl@0
   549
sl@0
   550
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
   551
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   552
	if(aIsRomOnly)
sl@0
   553
		{
sl@0
   554
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   555
		TEST2(version, 2);
sl@0
   556
		TEST2(drive, EDriveZ);
sl@0
   557
		}
sl@0
   558
	else
sl@0
   559
		{
sl@0
   560
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   561
		TEST2(version, 2);
sl@0
   562
		TEST2(drive, EDriveZ);
sl@0
   563
		}
sl@0
   564
	implArray.ResetAndDestroy();
sl@0
   565
sl@0
   566
	// close session
sl@0
   567
	REComSession::FinalClose();
sl@0
   568
sl@0
   569
	// kill ecomserver
sl@0
   570
	KillEComServerL();
sl@0
   571
sl@0
   572
	// Get implementations for IF UID 0x10009DBA
sl@0
   573
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   574
sl@0
   575
	//Expected number of implementations returned
sl@0
   576
	TEST2(implArray.Count(), 1);
sl@0
   577
sl@0
   578
	//Check that the implementation uid returned matched the specs above
sl@0
   579
	implUid = implArray[0]->ImplementationUid();
sl@0
   580
	version = implArray[0]->Version();
sl@0
   581
	drive = implArray[0]->Drive();
sl@0
   582
sl@0
   583
	RDebug::Print(_L("After restart...\n"));
sl@0
   584
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   585
	if(aIsRomOnly)
sl@0
   586
		{
sl@0
   587
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   588
		TEST2(version, 2);
sl@0
   589
		TEST2(drive, EDriveZ);
sl@0
   590
		}
sl@0
   591
	else
sl@0
   592
		{
sl@0
   593
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   594
		TEST2(version, 2);
sl@0
   595
		TEST2(drive, EDriveZ);
sl@0
   596
		}
sl@0
   597
	implArray.ResetAndDestroy();
sl@0
   598
sl@0
   599
	// close session
sl@0
   600
	REComSession::FinalClose();
sl@0
   601
sl@0
   602
	// tidy up
sl@0
   603
	// Remove plugins from C drive
sl@0
   604
	DeleteUpgradeExample1Plugins(aIsRomOnly);
sl@0
   605
sl@0
   606
	// Give ECOM a chance to rediscover after deletion of plugins.
sl@0
   607
	User::After(KOneSecond * 3);
sl@0
   608
sl@0
   609
	// close session
sl@0
   610
	REComSession::FinalClose();
sl@0
   611
sl@0
   612
	// kill ecomserver
sl@0
   613
	KillEComServerL();
sl@0
   614
sl@0
   615
	__UHEAP_MARKEND;
sl@0
   616
	}
sl@0
   617
sl@0
   618
sl@0
   619
/*
sl@0
   620
@SYMTestCaseID			SYSLIB-ECOM-CT-0286
sl@0
   621
@SYMTestCaseDesc		Tests to ensure that an implementation can be upgraded when the
sl@0
   622
						upgrading DLL/RSC name is the same as the DLL/RSC name to be
sl@0
   623
						upgraded.
sl@0
   624
						See CR65BCA3.
sl@0
   625
@SYMTestPriority			High
sl@0
   626
@SYMTestActions			Call REComSession::ListImplementations() and check V1 implementation
sl@0
   627
						on Z drive exists.
sl@0
   628
						Copy DLL/RSC with same name as DLL/RSC to be upgraded to C drive.
sl@0
   629
						Call REComSession::ListImplementations() and check V3 implementation
sl@0
   630
						upgrades on C drive has upgraded the original implementation on Z drive.
sl@0
   631
						Restart ECOM (to test subsequent boot condition i.e. loading from dat file
sl@0
   632
						Call REComSession::ListImplementations() and check V3 implementation
sl@0
   633
						upgrades on C drive has upgraded the original implementation on Z drive.
sl@0
   634
						Check for no crash and memory leaks.
sl@0
   635
						The same test is repeated for Rom Only drives. And no upgrade in version is
sl@0
   636
						observed.
sl@0
   637
@SYMTestExpectedResults	The test must not fail.
sl@0
   638
@SYMPREQ				PREQ277
sl@0
   639
@SYMDEF					DEF080682
sl@0
   640
*/
sl@0
   641
void RPluginUpgradeTest::UpgradePluginSameNameHigherVersionL(TBool aIsRomOnly)
sl@0
   642
	{
sl@0
   643
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0286 "));
sl@0
   644
	__UHEAP_MARK;
sl@0
   645
sl@0
   646
	ResetEcom();
sl@0
   647
sl@0
   648
	CheckDefaultPluginOnZ(aIsRomOnly);
sl@0
   649
sl@0
   650
	TUid interfaceUid;
sl@0
   651
	if(aIsRomOnly)
sl@0
   652
		{
sl@0
   653
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
   654
		}
sl@0
   655
	else
sl@0
   656
		{
sl@0
   657
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
   658
		}
sl@0
   659
	RImplInfoPtrArray implArray;
sl@0
   660
sl@0
   661
	/**
sl@0
   662
	The following plugin is now added to the C drive and ECOM will do a rediscovery and discover it.
sl@0
   663
sl@0
   664
	Interface UID		DLL	UID		Imp. UID		Version		DllFile
sl@0
   665
	------------------------------------------------------------------------------------------------------------------------------------------
sl@0
   666
	for ROM only
sl@0
   667
	0x10009DBD      0x10009DBC  0x10009DBE  3          C:\\..\\EComUpgradeROExample2.dll
sl@0
   668
	otherwise
sl@0
   669
	0x10009DBA      0x10009DB9  0x10009DBB  3          C:\\..\\EComUpgradeExample2.dll
sl@0
   670
	**/
sl@0
   671
sl@0
   672
	CopyPluginSameNameHigherVersion(aIsRomOnly);
sl@0
   673
	// Give ECOM a chance to discover new plugins.
sl@0
   674
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
   675
	User::After(KOneSecond * 3);
sl@0
   676
sl@0
   677
	// The directory notifier will now detect that a new plugin has been added to the C drive and will cause
sl@0
   678
	// ECOM to perform a new discovery.
sl@0
   679
sl@0
   680
	// Get implementations for IF UID 0x10009DBA
sl@0
   681
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   682
sl@0
   683
	//Expected number of implementations returned
sl@0
   684
	TEST2(implArray.Count(), 1);
sl@0
   685
sl@0
   686
	//Check that the implementation uid returned matched the specs above
sl@0
   687
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
   688
	TInt version = implArray[0]->Version();
sl@0
   689
	TInt drive = implArray[0]->Drive();
sl@0
   690
sl@0
   691
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
   692
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   693
	if(aIsRomOnly)
sl@0
   694
		{
sl@0
   695
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   696
		TEST2(version, 2);
sl@0
   697
		TEST2(drive, EDriveZ);
sl@0
   698
		}
sl@0
   699
	else
sl@0
   700
		{
sl@0
   701
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   702
		TEST2(version, 3);
sl@0
   703
		TEST2(drive, EDriveC);
sl@0
   704
		}
sl@0
   705
sl@0
   706
	implArray.ResetAndDestroy();
sl@0
   707
sl@0
   708
	// close session
sl@0
   709
	REComSession::FinalClose();
sl@0
   710
sl@0
   711
	// kill ecomserver
sl@0
   712
	KillEComServerL();
sl@0
   713
sl@0
   714
	// Get implementations for IF UID 0x10009DBA
sl@0
   715
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   716
sl@0
   717
	//Expected number of implementations returned
sl@0
   718
	TEST2(implArray.Count(), 1);
sl@0
   719
sl@0
   720
	//Check that the implementation uid returned matched the specs above
sl@0
   721
	implUid = implArray[0]->ImplementationUid();
sl@0
   722
	version = implArray[0]->Version();
sl@0
   723
	drive = implArray[0]->Drive();
sl@0
   724
sl@0
   725
	RDebug::Print(_L("After restart...\n"));
sl@0
   726
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   727
	if(aIsRomOnly)
sl@0
   728
		{
sl@0
   729
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   730
		TEST2(version, 2);
sl@0
   731
		TEST2(drive, EDriveZ);
sl@0
   732
		}
sl@0
   733
	else
sl@0
   734
		{
sl@0
   735
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   736
		TEST2(version, 3);
sl@0
   737
		TEST2(drive, EDriveC);
sl@0
   738
		}
sl@0
   739
	implArray.ResetAndDestroy();
sl@0
   740
sl@0
   741
	// close session
sl@0
   742
	REComSession::FinalClose();
sl@0
   743
sl@0
   744
	// tidy up
sl@0
   745
	// Remove plugins from C drive
sl@0
   746
	DeleteUpgradeExample2Plugins(aIsRomOnly);
sl@0
   747
sl@0
   748
	// Give ECOM a chance to rediscover after deletion of plugins.
sl@0
   749
	User::After(KOneSecond * 3);
sl@0
   750
sl@0
   751
	// close session
sl@0
   752
	REComSession::FinalClose();
sl@0
   753
sl@0
   754
	// kill ecomserver
sl@0
   755
	KillEComServerL();
sl@0
   756
sl@0
   757
	__UHEAP_MARKEND;
sl@0
   758
	}
sl@0
   759
sl@0
   760
/**
sl@0
   761
@SYMTestCaseID			SYSLIB-ECOM-CT-0287
sl@0
   762
@SYMTestCaseDesc		Tests to ensure that an implementation will not be upgraded when the
sl@0
   763
						upgrading DLL/RSC name is different from the DLL/RSC to be upgraded.
sl@0
   764
						See CR65BCA3.
sl@0
   765
@SYMTestPriority			High
sl@0
   766
@SYMTestActions			Call REComSession::ListImplementations() and check V1 implementation
sl@0
   767
						on Z drive exists.
sl@0
   768
						Copy DLL/RSC with different name to DLL/RSC to be upgraded to C drive.
sl@0
   769
						Call REComSession::ListImplementations() and check the original V2
sl@0
   770
						implementation on Z drive has not been upgraded.
sl@0
   771
						Check for no crash and memory leaks.
sl@0
   772
						The same test is repeated for Rom Only drives. And no upgrade in version is
sl@0
   773
						observed.
sl@0
   774
@SYMTestExpectedResults	The test must not fail.
sl@0
   775
@SYMPREQ				PREQ277
sl@0
   776
@SYMDEF					DEF080682
sl@0
   777
*/
sl@0
   778
void RPluginUpgradeTest::UpgradePluginDifferentNameHigherVersionL(TBool aIsRomOnly)
sl@0
   779
	{
sl@0
   780
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0287 "));
sl@0
   781
	__UHEAP_MARK;
sl@0
   782
sl@0
   783
	ResetEcom();
sl@0
   784
sl@0
   785
	CheckDefaultPluginOnZ(aIsRomOnly);
sl@0
   786
sl@0
   787
	TUid interfaceUid;
sl@0
   788
	if(aIsRomOnly)
sl@0
   789
		{
sl@0
   790
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
   791
		}
sl@0
   792
	else
sl@0
   793
		{
sl@0
   794
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
   795
		}
sl@0
   796
	RImplInfoPtrArray implArray;
sl@0
   797
sl@0
   798
	/**
sl@0
   799
	The following plugin is now added to the C drive and ECOM will do a rediscovery and attempt to discover it.
sl@0
   800
sl@0
   801
	Interface UID		DLL	UID		Imp. UID		Version		DllFile
sl@0
   802
	------------------------------------------------------------------------------------------------------------------------------------------
sl@0
   803
	for ROM only
sl@0
   804
	0x10009DBD      0x10009DBC  0x10009DBE  3          C:\\..\\EComUpgradeROExample3.dll
sl@0
   805
	otherwise
sl@0
   806
	0x10009DBA      0x10009DB9  0x10009DBB  3          C:\\..\\EComUpgradeExample3.dll
sl@0
   807
	**/
sl@0
   808
sl@0
   809
	CopyPluginDifferentNameHigherVersion(aIsRomOnly);
sl@0
   810
	// Give ECOM a chance to discover new plugins.
sl@0
   811
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
   812
	User::After(KOneSecond * 3);
sl@0
   813
sl@0
   814
	// The directory notifier will now detect that a new plugin has been added to the C drive and will cause
sl@0
   815
	// ECOM to perform a new discovery.
sl@0
   816
sl@0
   817
	// The upgrade should fail an dthe existing implementation on the Z should remain
sl@0
   818
sl@0
   819
	// Get implementations for IF UID 0x10009DBA
sl@0
   820
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   821
sl@0
   822
	//Expected number of implementations returned
sl@0
   823
	TEST2(implArray.Count(), 1);
sl@0
   824
sl@0
   825
	//Check that the implementation uid returned matched the specs above
sl@0
   826
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
   827
	TInt version = implArray[0]->Version();
sl@0
   828
	TInt drive = implArray[0]->Drive();
sl@0
   829
sl@0
   830
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
   831
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   832
	if(aIsRomOnly)
sl@0
   833
		{
sl@0
   834
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   835
		TEST2(version, 2);
sl@0
   836
		TEST2(drive, EDriveZ);
sl@0
   837
		}
sl@0
   838
	else
sl@0
   839
		{
sl@0
   840
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   841
		TEST2(version, 2);
sl@0
   842
		TEST2(drive, EDriveZ);
sl@0
   843
		}
sl@0
   844
	implArray.ResetAndDestroy();
sl@0
   845
sl@0
   846
	// close session
sl@0
   847
	REComSession::FinalClose();
sl@0
   848
sl@0
   849
	// kill ecomserver
sl@0
   850
	KillEComServerL();
sl@0
   851
sl@0
   852
	// Get implementations for IF UID 0x10009DBA
sl@0
   853
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   854
sl@0
   855
	//Expected number of implementations returned
sl@0
   856
	TEST2(implArray.Count(), 1);
sl@0
   857
sl@0
   858
	//Check that the implementation uid returned matched the specs above
sl@0
   859
	implUid = implArray[0]->ImplementationUid();
sl@0
   860
	version = implArray[0]->Version();
sl@0
   861
	drive = implArray[0]->Drive();
sl@0
   862
sl@0
   863
	RDebug::Print(_L("After restart...\n"));
sl@0
   864
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   865
	if(aIsRomOnly)
sl@0
   866
		{
sl@0
   867
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   868
		TEST2(version, 2);
sl@0
   869
		TEST2(drive, EDriveZ);
sl@0
   870
		}
sl@0
   871
	else
sl@0
   872
		{
sl@0
   873
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   874
		TEST2(version, 2);
sl@0
   875
		TEST2(drive, EDriveZ);
sl@0
   876
		}
sl@0
   877
	implArray.ResetAndDestroy();
sl@0
   878
sl@0
   879
	// close session
sl@0
   880
	REComSession::FinalClose();
sl@0
   881
sl@0
   882
	// tidy up
sl@0
   883
	// Remove plugins from C drive
sl@0
   884
	DeleteUpgradeExample3Plugins(aIsRomOnly);
sl@0
   885
sl@0
   886
	// Give ECOM a chance to rediscover after deletion of plugins.
sl@0
   887
	User::After(KOneSecond * 3);
sl@0
   888
sl@0
   889
	// close session
sl@0
   890
	REComSession::FinalClose();
sl@0
   891
sl@0
   892
	// kill ecomserver
sl@0
   893
	KillEComServerL();
sl@0
   894
sl@0
   895
	__UHEAP_MARKEND;
sl@0
   896
	}
sl@0
   897
sl@0
   898
/**
sl@0
   899
@SYMTestCaseID			SYSLIB-ECOM-CT-0288
sl@0
   900
@SYMTestCaseDesc		Tests to ensure that an implementation can be upgraded when the
sl@0
   901
						upgrading DLL/RSC name is the same as the DLL/RSC name to be
sl@0
   902
						upgraded and also the version is the same.
sl@0
   903
						See CR65BCA3.
sl@0
   904
@SYMTestPriority			High
sl@0
   905
@SYMTestActions			Call REComSession::ListImplementations() and check V1 implementation
sl@0
   906
						on Z drive exists.
sl@0
   907
						Copy DLL/RSC with same name as DLL/RSC to be upgraded to C drive.
sl@0
   908
						Call REComSession::ListImplementations() and check V2 implementation
sl@0
   909
						upgrades on C drive has upgraded the original implementation on Z drive.
sl@0
   910
						Check for no crash and memory leaks.
sl@0
   911
						Restart ECOM (to test subsequent boot condition i.e. loading from dat file
sl@0
   912
						Call REComSession::ListImplementations() and check V2 implementation
sl@0
   913
						upgrades on C drive has upgraded the original implementation on Z drive.
sl@0
   914
						The same test is repeated for Rom Only drives. And no upgrade in version is
sl@0
   915
						observed.
sl@0
   916
@SYMTestExpectedResults	The test must not fail.
sl@0
   917
@SYMPREQ				PREQ277
sl@0
   918
@SYMDEF					DEF080682
sl@0
   919
*/
sl@0
   920
void RPluginUpgradeTest::UpgradePluginSameNameSameVersionL(TBool aIsRomOnly)
sl@0
   921
	{
sl@0
   922
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0288 "));
sl@0
   923
	__UHEAP_MARK;
sl@0
   924
sl@0
   925
	ResetEcom();
sl@0
   926
sl@0
   927
	CheckDefaultPluginOnZ(aIsRomOnly);
sl@0
   928
sl@0
   929
	TUid interfaceUid;
sl@0
   930
	if(aIsRomOnly)
sl@0
   931
		{
sl@0
   932
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
   933
		}
sl@0
   934
	else
sl@0
   935
		{
sl@0
   936
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
   937
		}
sl@0
   938
	RImplInfoPtrArray implArray;
sl@0
   939
sl@0
   940
	/**
sl@0
   941
	The following plugin is now added to the C drive and ECOM will do a rediscovery and discover it.
sl@0
   942
sl@0
   943
	Interface UID		DLL	UID		Imp. UID		Version		DllFile
sl@0
   944
	------------------------------------------------------------------------------------------------------------------------------------------
sl@0
   945
	for ROM only
sl@0
   946
	0x10009DBD      0x10009DBC  0x10009DBE  2          C:\\..\\EComUpgradeROExample2.dll
sl@0
   947
	otherwise
sl@0
   948
	0x10009DBA      0x10009DB9  0x10009DBB  2          C:\\..\\EComUpgradeExample2.dll
sl@0
   949
	**/
sl@0
   950
sl@0
   951
	CopyPluginSameNameSameVersion(aIsRomOnly);
sl@0
   952
	// Give ECOM a chance to discover new plugins.
sl@0
   953
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
   954
	User::After(KOneSecond * 3);
sl@0
   955
sl@0
   956
	// The directory notifier will now detect that a new plugin has been added to the C drive and will cause
sl@0
   957
	// ECOM to perform a new discovery.
sl@0
   958
sl@0
   959
	// Get implementations for IF UID 0x10009DBA
sl@0
   960
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   961
sl@0
   962
	//Expected number of implementations returned
sl@0
   963
	TEST2(implArray.Count(), 1);
sl@0
   964
sl@0
   965
	//Check that the implementation uid returned matched the specs above
sl@0
   966
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
   967
	TInt version = implArray[0]->Version();
sl@0
   968
	TInt drive = implArray[0]->Drive();
sl@0
   969
sl@0
   970
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
   971
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
   972
	if(aIsRomOnly)
sl@0
   973
		{
sl@0
   974
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
   975
		TEST2(version, 2);
sl@0
   976
		TEST2(drive, EDriveZ);
sl@0
   977
		}
sl@0
   978
	else
sl@0
   979
		{
sl@0
   980
		TEST2(implUid.iUid, KImplementationUid);
sl@0
   981
		TEST2(version, 2);
sl@0
   982
		TEST2(drive, EDriveC);
sl@0
   983
		}
sl@0
   984
	implArray.ResetAndDestroy();
sl@0
   985
sl@0
   986
	// close session
sl@0
   987
	REComSession::FinalClose();
sl@0
   988
sl@0
   989
	// kill ecomserver
sl@0
   990
	KillEComServerL();
sl@0
   991
sl@0
   992
	// Get implementations for IF UID 0x10009DBA
sl@0
   993
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
   994
sl@0
   995
	//Expected number of implementations returned
sl@0
   996
	TEST2(implArray.Count(), 1);
sl@0
   997
sl@0
   998
	//Check that the implementation uid returned matched the specs above
sl@0
   999
	implUid = implArray[0]->ImplementationUid();
sl@0
  1000
	version = implArray[0]->Version();
sl@0
  1001
	drive = implArray[0]->Drive();
sl@0
  1002
sl@0
  1003
	RDebug::Print(_L("After restart...\n"));
sl@0
  1004
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
  1005
	if(aIsRomOnly)
sl@0
  1006
		{
sl@0
  1007
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
  1008
		TEST2(version, 2);
sl@0
  1009
		TEST2(drive, EDriveZ);
sl@0
  1010
		}
sl@0
  1011
	else
sl@0
  1012
		{
sl@0
  1013
		TEST2(implUid.iUid, KImplementationUid);
sl@0
  1014
		TEST2(version, 2);
sl@0
  1015
		TEST2(drive, EDriveC);
sl@0
  1016
		}
sl@0
  1017
	implArray.ResetAndDestroy();
sl@0
  1018
sl@0
  1019
	// close session
sl@0
  1020
	REComSession::FinalClose();
sl@0
  1021
sl@0
  1022
	// tidy up
sl@0
  1023
	// Remove plugins from C drive
sl@0
  1024
	DeleteUpgradeExample2Plugins(aIsRomOnly);
sl@0
  1025
	// Give ECOM a chance to rediscover after deletion of plugins.
sl@0
  1026
	User::After(KOneSecond * 3);
sl@0
  1027
sl@0
  1028
	// close session
sl@0
  1029
	REComSession::FinalClose();
sl@0
  1030
sl@0
  1031
	// kill ecomserver
sl@0
  1032
	KillEComServerL();
sl@0
  1033
sl@0
  1034
	__UHEAP_MARKEND;
sl@0
  1035
	}
sl@0
  1036
sl@0
  1037
/**
sl@0
  1038
@SYMTestCaseID			SYSLIB-ECOM-CT-0289
sl@0
  1039
@SYMTestCaseDesc		Tests to ensure that an implementation will not be upgraded when the
sl@0
  1040
						upgrading DLL/RSC name is different from the DLL/RSC to be upgraded
sl@0
  1041
						and also the version is the same.
sl@0
  1042
						See CR65BCA3.
sl@0
  1043
@SYMTestPriority		High
sl@0
  1044
@SYMTestActions			Call REComSession::ListImplementations() and check V2 implementation
sl@0
  1045
						on Z drive exists.
sl@0
  1046
						Copy DLL/RSC with different name, but same version, to DLL/RSC to be
sl@0
  1047
						upgraded to C drive.
sl@0
  1048
						Call REComSession::ListImplementations() and check the original V2
sl@0
  1049
						implementation on Z drive has not been upgraded.
sl@0
  1050
						Check for no crash and memory leaks.
sl@0
  1051
						The same test is repeated for Rom Only drives. And no upgrade in version is
sl@0
  1052
						observed.
sl@0
  1053
@SYMTestExpectedResults	The test must not fail.
sl@0
  1054
@SYMPREQ				PREQ277
sl@0
  1055
@SYMDEF					DEF080682
sl@0
  1056
*/
sl@0
  1057
void RPluginUpgradeTest::UpgradePluginDifferentNameSameVersionL(TBool aIsRomOnly)
sl@0
  1058
	{
sl@0
  1059
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0289 "));
sl@0
  1060
	__UHEAP_MARK;
sl@0
  1061
sl@0
  1062
	ResetEcom();
sl@0
  1063
sl@0
  1064
	CheckDefaultPluginOnZ(aIsRomOnly);
sl@0
  1065
sl@0
  1066
	TUid interfaceUid;
sl@0
  1067
	if(aIsRomOnly)
sl@0
  1068
		{
sl@0
  1069
		interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
sl@0
  1070
		}
sl@0
  1071
	else
sl@0
  1072
		{
sl@0
  1073
		interfaceUid = TUid::Uid(KInterfaceUid);
sl@0
  1074
		}
sl@0
  1075
	RImplInfoPtrArray implArray;
sl@0
  1076
sl@0
  1077
	/**
sl@0
  1078
	The following plugin is now added to the C drive and ECOM will do a rediscovery and attempt to discover it.
sl@0
  1079
sl@0
  1080
	Interface UID		DLL	UID		Imp. UID		Version		DllFile
sl@0
  1081
	----------------------------------------------------------------------------------------
sl@0
  1082
	for ROM only
sl@0
  1083
	0x10009DBD      0x10009DBC  0x10009DBE  2          C:\\..\\EComUpgradeROExample3.dll
sl@0
  1084
	otherwise
sl@0
  1085
	0x10009DBA      0x10009DB9  0x10009DBB  2          C:\\..\\EComUpgradeExample3.dll
sl@0
  1086
	**/
sl@0
  1087
sl@0
  1088
	CopyPluginDifferentNameSameVersion(aIsRomOnly);
sl@0
  1089
	// Give ECOM a chance to discover new plugins.
sl@0
  1090
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
  1091
	User::After(KOneSecond * 3);
sl@0
  1092
sl@0
  1093
	// The directory notifier will now detect that a new plugin has been added to the C drive and will cause
sl@0
  1094
	// ECOM to perform a new discovery.
sl@0
  1095
sl@0
  1096
	// The upgrade should fail an dthe existing implementation on the Z should remain
sl@0
  1097
sl@0
  1098
	// Get implementations for IF UID 0x10009DBA
sl@0
  1099
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
  1100
sl@0
  1101
	//Expected number of implementations returned
sl@0
  1102
	TEST2(implArray.Count(), 1);
sl@0
  1103
sl@0
  1104
	//Check that the implementation uid returned matched the specs above
sl@0
  1105
	TUid implUid = implArray[0]->ImplementationUid();
sl@0
  1106
	TInt version = implArray[0]->Version();
sl@0
  1107
	TInt drive = implArray[0]->Drive();
sl@0
  1108
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
  1109
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
  1110
sl@0
  1111
	if(aIsRomOnly)
sl@0
  1112
		{
sl@0
  1113
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
  1114
		TEST2(version, 2);
sl@0
  1115
		TEST2(drive, EDriveZ);
sl@0
  1116
		}
sl@0
  1117
	else
sl@0
  1118
		{
sl@0
  1119
		TEST2(implUid.iUid, KImplementationUid);
sl@0
  1120
		TEST2(version, 2);
sl@0
  1121
		TEST2(drive, EDriveZ);
sl@0
  1122
		}
sl@0
  1123
	implArray.ResetAndDestroy();
sl@0
  1124
sl@0
  1125
	// close session
sl@0
  1126
	REComSession::FinalClose();
sl@0
  1127
sl@0
  1128
	// kill ecomserver
sl@0
  1129
	KillEComServerL();
sl@0
  1130
sl@0
  1131
	// Get implementations for IF UID 0x10009DBA
sl@0
  1132
	REComSession::ListImplementationsL(interfaceUid, implArray);
sl@0
  1133
sl@0
  1134
	//Expected number of implementations returned
sl@0
  1135
	TEST2(implArray.Count(), 1);
sl@0
  1136
sl@0
  1137
	//Check that the implementation uid returned matched the specs above
sl@0
  1138
	implUid = implArray[0]->ImplementationUid();
sl@0
  1139
	version = implArray[0]->Version();
sl@0
  1140
	drive = implArray[0]->Drive();
sl@0
  1141
	RDebug::Print(_L("After new implementation is discovered...\n"));
sl@0
  1142
	RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
sl@0
  1143
sl@0
  1144
	if(aIsRomOnly)
sl@0
  1145
		{
sl@0
  1146
		TEST2(implUid.iUid, KRomOnlyImplementationUid);
sl@0
  1147
		TEST2(version, 2);
sl@0
  1148
		TEST2(drive, EDriveZ);
sl@0
  1149
		}
sl@0
  1150
	else
sl@0
  1151
		{
sl@0
  1152
		TEST2(implUid.iUid, KImplementationUid);
sl@0
  1153
		TEST2(version, 2);
sl@0
  1154
		TEST2(drive, EDriveZ);
sl@0
  1155
		}
sl@0
  1156
	implArray.ResetAndDestroy();
sl@0
  1157
sl@0
  1158
	// close session
sl@0
  1159
	REComSession::FinalClose();
sl@0
  1160
sl@0
  1161
	// tidy up
sl@0
  1162
	// Remove plugins from C drive
sl@0
  1163
	DeleteUpgradeExample3Plugins(aIsRomOnly);
sl@0
  1164
	// Give ECOM a chance to rediscover after deletion of plugins.
sl@0
  1165
	User::After(KOneSecond * 3);
sl@0
  1166
sl@0
  1167
	// close session
sl@0
  1168
	REComSession::FinalClose();
sl@0
  1169
sl@0
  1170
	// kill ecomserver
sl@0
  1171
	KillEComServerL();
sl@0
  1172
sl@0
  1173
	__UHEAP_MARKEND;
sl@0
  1174
	}
sl@0
  1175
sl@0
  1176
LOCAL_C void RunTestL()
sl@0
  1177
	{
sl@0
  1178
	__UHEAP_MARK;
sl@0
  1179
sl@0
  1180
sl@0
  1181
	TheTest.Next(_L("Upgrade rom only plugin with same name and lower version"));
sl@0
  1182
	RPluginUpgradeTest::UpgradePluginSameNameLowerVersionL(ETrue);
sl@0
  1183
sl@0
  1184
	TheTest.Next(_L("Upgrade rom only plugin with different name and lower version"));
sl@0
  1185
	RPluginUpgradeTest::UpgradePluginDifferentNameLowerVersionL(ETrue);
sl@0
  1186
sl@0
  1187
	TheTest.Next(_L("Upgrade rom only plugin with same name and higher version"));
sl@0
  1188
	RPluginUpgradeTest::UpgradePluginSameNameHigherVersionL(ETrue);
sl@0
  1189
sl@0
  1190
	TheTest.Next(_L("Upgrade rom only plugin with different name and higher version"));
sl@0
  1191
	RPluginUpgradeTest::UpgradePluginDifferentNameHigherVersionL(ETrue);
sl@0
  1192
sl@0
  1193
	TheTest.Next(_L("Upgrade rom only plugin with same name and same version"));
sl@0
  1194
	RPluginUpgradeTest::UpgradePluginSameNameSameVersionL(ETrue);
sl@0
  1195
sl@0
  1196
	TheTest.Next(_L("Upgrade rom only plugin with different name and same version"));
sl@0
  1197
	RPluginUpgradeTest::UpgradePluginDifferentNameSameVersionL(ETrue);
sl@0
  1198
sl@0
  1199
	TheTest.Next(_L("Upgrade plugin with same name and lower version"));
sl@0
  1200
	RPluginUpgradeTest::UpgradePluginSameNameLowerVersionL(EFalse);
sl@0
  1201
sl@0
  1202
	TheTest.Next(_L("Upgrade plugin with different name and lower version"));
sl@0
  1203
	RPluginUpgradeTest::UpgradePluginDifferentNameLowerVersionL(EFalse);
sl@0
  1204
sl@0
  1205
	TheTest.Next(_L("Upgrade plugin with same name and higher version"));
sl@0
  1206
	RPluginUpgradeTest::UpgradePluginSameNameHigherVersionL(EFalse);
sl@0
  1207
sl@0
  1208
	TheTest.Next(_L("Upgrade plugin with different name and higher version"));
sl@0
  1209
	RPluginUpgradeTest::UpgradePluginDifferentNameHigherVersionL(EFalse);
sl@0
  1210
sl@0
  1211
	TheTest.Next(_L("Upgrade plugin with same name and same version"));
sl@0
  1212
	RPluginUpgradeTest::UpgradePluginSameNameSameVersionL(EFalse);
sl@0
  1213
sl@0
  1214
	TheTest.Next(_L("Upgrade plugin with different name and same version"));
sl@0
  1215
	RPluginUpgradeTest::UpgradePluginDifferentNameSameVersionL(EFalse);
sl@0
  1216
sl@0
  1217
	__UHEAP_MARKEND;
sl@0
  1218
	}
sl@0
  1219
sl@0
  1220
void CleanupPluginFiles()
sl@0
  1221
	{
sl@0
  1222
	DeleteUpgradeExample1Plugins(EFalse);
sl@0
  1223
	DeleteUpgradeExample2Plugins(EFalse);
sl@0
  1224
	DeleteUpgradeExample3Plugins(EFalse);
sl@0
  1225
	DeleteUpgradeExample1Plugins(ETrue);
sl@0
  1226
	DeleteUpgradeExample2Plugins(ETrue);
sl@0
  1227
	DeleteUpgradeExample3Plugins(ETrue);
sl@0
  1228
	}
sl@0
  1229
sl@0
  1230
GLDEF_C TInt E32Main()
sl@0
  1231
	{
sl@0
  1232
	__UHEAP_MARK;
sl@0
  1233
sl@0
  1234
	TheTest.Title();
sl@0
  1235
	TheTest.Start(_L("Plugin Upgrade Tests."));
sl@0
  1236
sl@0
  1237
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
  1238
	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
sl@0
  1239
	CActiveScheduler::Install(scheduler);
sl@0
  1240
sl@0
  1241
	// Cleanup files
sl@0
  1242
	CleanupPluginFiles();
sl@0
  1243
sl@0
  1244
	//run tests
sl@0
  1245
	TRAPD(err,RunTestL());
sl@0
  1246
sl@0
  1247
	// Cleanup files
sl@0
  1248
	if(err != KErrNone)
sl@0
  1249
		{
sl@0
  1250
		CleanupPluginFiles();
sl@0
  1251
		}
sl@0
  1252
sl@0
  1253
	TEST2(err, KErrNone);
sl@0
  1254
sl@0
  1255
	// cleanup session
sl@0
  1256
	REComSession::FinalClose();
sl@0
  1257
sl@0
  1258
	delete scheduler;
sl@0
  1259
	delete cleanup;
sl@0
  1260
sl@0
  1261
	TheTest.End();
sl@0
  1262
	TheTest.Close();
sl@0
  1263
sl@0
  1264
	__UHEAP_MARKEND;
sl@0
  1265
	return(0);
sl@0
  1266
	}