os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_ecomswi.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) 2007-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
#include <swi/swispubsubdefs.h>
sl@0
    21
sl@0
    22
#include <ecom/ecom.h>
sl@0
    23
#include "EComUidCodes.h"
sl@0
    24
#include "Interface.h" // interface to Plugins
sl@0
    25
//Test utils for copying the resolver to C
sl@0
    26
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    27
#include "../EcomTestUtils/TPropertyManager.h"
sl@0
    28
sl@0
    29
using namespace Swi;
sl@0
    30
sl@0
    31
REComSession EComSess;
sl@0
    32
sl@0
    33
LOCAL_D RTest TEST(_L("ECom SWI Test"));
sl@0
    34
sl@0
    35
_LIT(KEComExDllOnZ,		"Z:\\ramonly\\EComSwiExample.dll");
sl@0
    36
_LIT(KEComExDllOnC,		"C:\\sys\\bin\\EComSwiExample.dll");
sl@0
    37
_LIT(KEComRscFileOnC,	"C:\\resource\\plugins\\EComSwiExample.rsc");
sl@0
    38
_LIT(KEComRscFileOnZ,	"Z:\\ramonly\\EComSwiExample.rsc");
sl@0
    39
_LIT(KEComRscPath,		"C:\\resource\\plugins\\");
sl@0
    40
sl@0
    41
const TInt KWaitDuration = 5000000; //  delay in usecs
sl@0
    42
sl@0
    43
#define UNUSED_VAR(a) a = a
sl@0
    44
inline LOCAL_C TInt DeleteTestPlugin()
sl@0
    45
	{
sl@0
    46
	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
sl@0
    47
	if((err == KErrNone)||(err == KErrNotFound))
sl@0
    48
		{
sl@0
    49
		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
sl@0
    50
		}
sl@0
    51
	if(err == KErrNotFound)
sl@0
    52
		{
sl@0
    53
		err = KErrNone;
sl@0
    54
		}
sl@0
    55
	return err;
sl@0
    56
	}
sl@0
    57
sl@0
    58
LOCAL_C TInt DeletePluginFolder()
sl@0
    59
	{
sl@0
    60
	TRAPD(err, EComTestUtils::FileManDeleteDirL(KEComRscPath));
sl@0
    61
	User::After(1000000);
sl@0
    62
	return err;
sl@0
    63
	}
sl@0
    64
/**
sl@0
    65
Copies the Resolver Plugins to C:\ drive
sl@0
    66
*/
sl@0
    67
LOCAL_C TInt CopyPluginsL()
sl@0
    68
    {
sl@0
    69
	// Copy the dlls and .rsc files on to RAM
sl@0
    70
	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
sl@0
    71
 	TEST(err==KErrNone, __LINE__);
sl@0
    72
 	TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
sl@0
    73
 	TEST(err==KErrNone, __LINE__);
sl@0
    74
 	User::After(1000000);
sl@0
    75
 	return err;
sl@0
    76
	}
sl@0
    77
sl@0
    78
LOCAL_C void RegisterForNotificationL(TRequestStatus& aNotifyStatus)
sl@0
    79
	{
sl@0
    80
    REComSession& ecomSession = REComSession::OpenL();
sl@0
    81
	CleanupClosePushL(ecomSession);
sl@0
    82
sl@0
    83
	ecomSession.NotifyOnChange(aNotifyStatus);
sl@0
    84
	TEST.Printf(_L("Request notification on ECom registration data change\n"));
sl@0
    85
	TInt result = aNotifyStatus.Int();
sl@0
    86
	TEST(result == KRequestPending);
sl@0
    87
sl@0
    88
	ecomSession.Close();
sl@0
    89
	CleanupStack::PopAndDestroy();
sl@0
    90
	}
sl@0
    91
sl@0
    92
LOCAL_C void WaitForNotificationL(TBool aExpected, TRequestStatus& aNotifyStatus)
sl@0
    93
	{
sl@0
    94
    //Wait for ECOM Server notification to arrive with timeout
sl@0
    95
	RTimer timer;
sl@0
    96
	CleanupClosePushL(timer);
sl@0
    97
	User::LeaveIfError(timer.CreateLocal());
sl@0
    98
	TRequestStatus timerStatus;
sl@0
    99
sl@0
   100
	//Wait for ECom notification
sl@0
   101
	timer.After(timerStatus, KWaitDuration);
sl@0
   102
	TEST(timerStatus.Int() == KRequestPending);
sl@0
   103
sl@0
   104
    TEST.Printf(_L("Waiting for notification from ECOM Server...\n"));
sl@0
   105
    User::WaitForRequest(timerStatus, aNotifyStatus);
sl@0
   106
sl@0
   107
    if(aExpected)
sl@0
   108
    	{
sl@0
   109
	    //Verify that we recieved notification from ECom
sl@0
   110
		TEST(timerStatus.Int() == KRequestPending);
sl@0
   111
		TEST(aNotifyStatus.Int() == KErrNone);
sl@0
   112
    	}
sl@0
   113
    else
sl@0
   114
    	{
sl@0
   115
	    //Verify that we have not recieved notification from ECom
sl@0
   116
		TEST(timerStatus.Int() == KErrNone);
sl@0
   117
		TEST(aNotifyStatus.Int() == KRequestPending);
sl@0
   118
    	}
sl@0
   119
	timer.Cancel();
sl@0
   120
sl@0
   121
	CleanupStack::PopAndDestroy();
sl@0
   122
	}
sl@0
   123
sl@0
   124
LOCAL_C void FindImplementationsL(TInt aExpected)
sl@0
   125
	{
sl@0
   126
    REComSession& ecomSession = REComSession::OpenL();
sl@0
   127
	CleanupClosePushL(ecomSession);
sl@0
   128
sl@0
   129
	//Get a list of available implementations
sl@0
   130
	TUid interfaceUid={0x10009DD9};
sl@0
   131
	RImplInfoPtrArray ifArray;
sl@0
   132
sl@0
   133
	ecomSession.ListImplementationsL(interfaceUid,ifArray);
sl@0
   134
sl@0
   135
	//Verify that the expected number of implementations were found
sl@0
   136
	TInt count = ifArray.Count();
sl@0
   137
	TEST(count == aExpected);
sl@0
   138
sl@0
   139
	TEST.Printf(_L("%d Implementations found...\n"),count);
sl@0
   140
sl@0
   141
	//cleanup
sl@0
   142
	ifArray.ResetAndDestroy();
sl@0
   143
	ecomSession.Close();
sl@0
   144
	CleanupStack::PopAndDestroy();
sl@0
   145
	}
sl@0
   146
sl@0
   147
/**
sl@0
   148
@SYMTestCaseID          SYSLIB-ECOM-CT-3602
sl@0
   149
@SYMTestCaseDesc		Tests notification processing when SWI does not exist
sl@0
   150
						DEF108840: Undesireable interaction between ECOM and SWI
sl@0
   151
@SYMTestActions  	    Request notifcation of ECom registry change
sl@0
   152
						Copy plugin to c:\ and check that notification is recieved
sl@0
   153
sl@0
   154
@SYMTestExpectedResults Notification should be recieved as normal if SWI is not present
sl@0
   155
@SYMDEF                 DEF108840
sl@0
   156
*/
sl@0
   157
LOCAL_C void DoSWITest1L()
sl@0
   158
	{
sl@0
   159
sl@0
   160
	TRequestStatus notifyStatus;
sl@0
   161
	RegisterForNotificationL(notifyStatus);
sl@0
   162
sl@0
   163
	FindImplementationsL(0);
sl@0
   164
sl@0
   165
	//Copy plugin file to c:
sl@0
   166
	TEST.Printf(_L("Copy Plugin Files...\n"));
sl@0
   167
	CopyPluginsL();
sl@0
   168
sl@0
   169
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   170
sl@0
   171
	FindImplementationsL(1);
sl@0
   172
sl@0
   173
	}
sl@0
   174
sl@0
   175
/**
sl@0
   176
@SYMTestCaseID          SYSLIB-ECOM-CT-3547
sl@0
   177
@SYMTestCaseDesc	    Tests notification processing during SWI for
sl@0
   178
						DEF108840: Undesireable interaction between ECOM and SWI
sl@0
   179
@SYMTestActions  	    Set P&S variable to indicate SWI in progress.
sl@0
   180
						Request notifcation of ECom registry change
sl@0
   181
						Copy plugin to c:\ and check that notification is not recieved
sl@0
   182
						Clear P&S variable to indicate SWI completion and verify that notification is recieved.
sl@0
   183
@SYMTestExpectedResults Notification should not be recieved while SWI is in progress, but should be
sl@0
   184
						recieved when SWI completes
sl@0
   185
@SYMDEF                 DEF108840
sl@0
   186
*/
sl@0
   187
LOCAL_C void DoSWITest2L()
sl@0
   188
	{
sl@0
   189
	//Set SWI as running
sl@0
   190
	TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
sl@0
   191
	TEST.Printf(_L("SWI Started\n"));
sl@0
   192
sl@0
   193
	TRequestStatus notifyStatus;
sl@0
   194
	RegisterForNotificationL(notifyStatus);
sl@0
   195
sl@0
   196
	FindImplementationsL(0);
sl@0
   197
sl@0
   198
	//Copy plugin file to c:
sl@0
   199
	TEST.Printf(_L("Copy Plugin Files...\n"));
sl@0
   200
	CopyPluginsL();
sl@0
   201
sl@0
   202
    //Verify that the wait timed out - we didn't recieve notification
sl@0
   203
	WaitForNotificationL(EFalse,notifyStatus);
sl@0
   204
sl@0
   205
	FindImplementationsL(0);
sl@0
   206
sl@0
   207
	//Set SWI as complete
sl@0
   208
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   209
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   210
sl@0
   211
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   212
sl@0
   213
	FindImplementationsL(1);
sl@0
   214
sl@0
   215
	}
sl@0
   216
sl@0
   217
/**
sl@0
   218
@SYMTestCaseID          SYSLIB-ECOM-CT-3668
sl@0
   219
@SYMTestCaseDesc	    Tests notification processing during SWI for
sl@0
   220
						INC110470 ECOM does not notify when plug-ins get uninstalled
sl@0
   221
@SYMTestActions  	    Uses P&S variables to simulate SWI install and uninstall
sl@0
   222
						Request notification of ECom registry change
sl@0
   223
						Verify that notifications are recieved after both install and uninstall
sl@0
   224
@SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall
sl@0
   225
@SYMDEF                 INC110470
sl@0
   226
*/
sl@0
   227
LOCAL_C void DoSWITest3L()
sl@0
   228
	{
sl@0
   229
sl@0
   230
	TRequestStatus notifyStatus;
sl@0
   231
	RegisterForNotificationL(notifyStatus);
sl@0
   232
sl@0
   233
	FindImplementationsL(0);
sl@0
   234
sl@0
   235
	//Set SWI as running
sl@0
   236
	TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
sl@0
   237
	TEST.Printf(_L("SWI Started\n"));
sl@0
   238
sl@0
   239
	//Copy plugin file to c:
sl@0
   240
	TEST.Printf(_L("Copy Plugin Files...\n"));
sl@0
   241
	CopyPluginsL();
sl@0
   242
sl@0
   243
	//Set SWI as complete
sl@0
   244
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   245
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   246
sl@0
   247
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   248
sl@0
   249
	FindImplementationsL(1);
sl@0
   250
sl@0
   251
	RegisterForNotificationL(notifyStatus);
sl@0
   252
sl@0
   253
	//Set SWI as running
sl@0
   254
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall);
sl@0
   255
	TEST.Printf(_L("SWI Started\n"));
sl@0
   256
sl@0
   257
	//delete files from c:
sl@0
   258
	TEST.Printf(_L("Delete Plugin Files...\n"));
sl@0
   259
	DeleteTestPlugin();
sl@0
   260
sl@0
   261
	//Delete plugin folder so that drive is unmounted by ECom
sl@0
   262
	DeletePluginFolder();
sl@0
   263
sl@0
   264
	//Set SWI as complete
sl@0
   265
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   266
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   267
sl@0
   268
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   269
sl@0
   270
	FindImplementationsL(0);
sl@0
   271
sl@0
   272
	RegisterForNotificationL(notifyStatus);
sl@0
   273
sl@0
   274
	//Set SWI as running
sl@0
   275
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
sl@0
   276
	TEST.Printf(_L("SWI Started\n"));
sl@0
   277
sl@0
   278
	//Copy plugin file to c:
sl@0
   279
	TEST.Printf(_L("Copy Plugin Files...\n"));
sl@0
   280
	CopyPluginsL();
sl@0
   281
sl@0
   282
	//Set SWI as complete
sl@0
   283
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   284
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   285
sl@0
   286
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   287
sl@0
   288
	FindImplementationsL(1);
sl@0
   289
	}
sl@0
   290
sl@0
   291
/**
sl@0
   292
@SYMTestCaseID          SYSLIB-ECOM-CT-3669
sl@0
   293
@SYMTestCaseDesc	    Tests robustness of notification processing during SWI
sl@0
   294
@SYMTestActions  	    Uses P&S variables to simulate SWI install and uninstall
sl@0
   295
						Request notification of ECom registry change
sl@0
   296
						Verify that notifications are recieved after both install and uninstall even
sl@0
   297
						if a SWI scan is pending when SWI begins
sl@0
   298
@SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall
sl@0
   299
@SYMDEF                 INC110470
sl@0
   300
*/
sl@0
   301
LOCAL_C void DoSWITest4L()
sl@0
   302
	{
sl@0
   303
sl@0
   304
	TRequestStatus notifyStatus;
sl@0
   305
	RegisterForNotificationL(notifyStatus);
sl@0
   306
sl@0
   307
	//Set SWI as complete
sl@0
   308
	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   309
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   310
sl@0
   311
	FindImplementationsL(0);
sl@0
   312
sl@0
   313
	//Set SWI as running
sl@0
   314
	TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
sl@0
   315
	TEST.Printf(_L("SWI Started\n"));
sl@0
   316
sl@0
   317
	//Copy plugin file to c:
sl@0
   318
	TEST.Printf(_L("Copy Plugin Files...\n"));
sl@0
   319
	CopyPluginsL();
sl@0
   320
sl@0
   321
	//Set SWI as complete
sl@0
   322
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   323
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   324
sl@0
   325
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   326
sl@0
   327
	FindImplementationsL(1);
sl@0
   328
sl@0
   329
	RegisterForNotificationL(notifyStatus);
sl@0
   330
sl@0
   331
	//Set SWI as running
sl@0
   332
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall);
sl@0
   333
	TEST.Printf(_L("SWI Started\n"));
sl@0
   334
sl@0
   335
	//Delete plugin files
sl@0
   336
	TEST.Printf(_L("Delete Plugin Files...\n"));
sl@0
   337
	DeleteTestPlugin();
sl@0
   338
sl@0
   339
	//Set SWI as complete
sl@0
   340
	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
sl@0
   341
	TEST.Printf(_L("SWI Complete\n"));
sl@0
   342
sl@0
   343
	//Wait again for ECom notification
sl@0
   344
	WaitForNotificationL(ETrue,notifyStatus);
sl@0
   345
sl@0
   346
	FindImplementationsL(0);
sl@0
   347
	}
sl@0
   348
sl@0
   349
LOCAL_C TInt SetupTest()
sl@0
   350
	{
sl@0
   351
	//Ensure plugin files are not on C:
sl@0
   352
	TInt res = DeleteTestPlugin();
sl@0
   353
	TEST.Printf(_L("Deleting test plugin...\n"));
sl@0
   354
sl@0
   355
	//Wait to ensure files are deleted
sl@0
   356
	User::After(2000000);
sl@0
   357
sl@0
   358
	//Create an ECom session to ensure ECom is up and running
sl@0
   359
	EComSess = REComSession::OpenL();
sl@0
   360
sl@0
   361
	//Wait to ensure ECom startup has occurred
sl@0
   362
	User::After(2000000);
sl@0
   363
sl@0
   364
	return res;
sl@0
   365
	}
sl@0
   366
sl@0
   367
LOCAL_C void RunTestL()
sl@0
   368
	{
sl@0
   369
	__UHEAP_MARK;
sl@0
   370
sl@0
   371
	TInt res = SetupTest();
sl@0
   372
	TEST(res == KErrNone);
sl@0
   373
sl@0
   374
	res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
sl@0
   375
	TEST(res == KErrNone);
sl@0
   376
sl@0
   377
	//Run the test
sl@0
   378
	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3602 ECom SWI Test - SWI Not Present "));
sl@0
   379
	DoSWITest1L();
sl@0
   380
sl@0
   381
	//Cleanup
sl@0
   382
	EComSess.Close();
sl@0
   383
sl@0
   384
	res = SetupTest();
sl@0
   385
	TEST(res == KErrNone);
sl@0
   386
sl@0
   387
	res = PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt);
sl@0
   388
	TEST(res == KErrNone);
sl@0
   389
sl@0
   390
	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3547 ECom SWI Test - SWI Present "));
sl@0
   391
	DoSWITest2L();
sl@0
   392
sl@0
   393
	//Cleanup
sl@0
   394
	EComSess.Close();
sl@0
   395
sl@0
   396
	res = SetupTest();
sl@0
   397
	TEST(res == KErrNone);
sl@0
   398
sl@0
   399
	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3668 ECom SWI Uninstall Test - SWI Present "));
sl@0
   400
	DoSWITest3L();
sl@0
   401
sl@0
   402
	//Cleanup
sl@0
   403
	EComSess.Close();
sl@0
   404
sl@0
   405
	res = SetupTest();
sl@0
   406
	TEST(res == KErrNone);
sl@0
   407
sl@0
   408
	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3669 ECom SWI Robustness Test "));
sl@0
   409
	DoSWITest4L();
sl@0
   410
sl@0
   411
	res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
sl@0
   412
	TEST(res == KErrNone);
sl@0
   413
sl@0
   414
	//Cleanup
sl@0
   415
	EComSess.Close();
sl@0
   416
	REComSession::FinalClose();
sl@0
   417
sl@0
   418
	//Ensure plugin files are not on C:
sl@0
   419
	res = DeleteTestPlugin();
sl@0
   420
	TEST(res == KErrNone);
sl@0
   421
sl@0
   422
	__UHEAP_MARKEND;
sl@0
   423
	}
sl@0
   424
sl@0
   425
GLDEF_C TInt E32Main()
sl@0
   426
	{
sl@0
   427
	__UHEAP_MARK;
sl@0
   428
sl@0
   429
	TEST.Title();
sl@0
   430
	TEST.Start(_L("ECom SWI tests."));
sl@0
   431
sl@0
   432
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   433
	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
sl@0
   434
	CActiveScheduler::Install(scheduler);
sl@0
   435
sl@0
   436
	TRAPD(err,RunTestL());
sl@0
   437
	TEST(err==KErrNone, __LINE__);
sl@0
   438
sl@0
   439
	delete scheduler;
sl@0
   440
	delete cleanup;
sl@0
   441
sl@0
   442
	TEST.End();
sl@0
   443
	TEST.Close();
sl@0
   444
sl@0
   445
	__UHEAP_MARKEND;
sl@0
   446
	return(0);
sl@0
   447
	}