os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_ecomswi.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_ecomswi.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,447 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32test.h>
    1.20 +#include <e32panic.h>
    1.21 +#include <f32file.h>
    1.22 +#include <bautils.h>
    1.23 +#include <swi/swispubsubdefs.h>
    1.24 +
    1.25 +#include <ecom/ecom.h>
    1.26 +#include "EComUidCodes.h"
    1.27 +#include "Interface.h" // interface to Plugins
    1.28 +//Test utils for copying the resolver to C
    1.29 +#include "../EcomTestUtils/EcomTestUtils.h"
    1.30 +#include "../EcomTestUtils/TPropertyManager.h"
    1.31 +
    1.32 +using namespace Swi;
    1.33 +
    1.34 +REComSession EComSess;
    1.35 +
    1.36 +LOCAL_D RTest TEST(_L("ECom SWI Test"));
    1.37 +
    1.38 +_LIT(KEComExDllOnZ,		"Z:\\ramonly\\EComSwiExample.dll");
    1.39 +_LIT(KEComExDllOnC,		"C:\\sys\\bin\\EComSwiExample.dll");
    1.40 +_LIT(KEComRscFileOnC,	"C:\\resource\\plugins\\EComSwiExample.rsc");
    1.41 +_LIT(KEComRscFileOnZ,	"Z:\\ramonly\\EComSwiExample.rsc");
    1.42 +_LIT(KEComRscPath,		"C:\\resource\\plugins\\");
    1.43 +
    1.44 +const TInt KWaitDuration = 5000000; //  delay in usecs
    1.45 +
    1.46 +#define UNUSED_VAR(a) a = a
    1.47 +inline LOCAL_C TInt DeleteTestPlugin()
    1.48 +	{
    1.49 +	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
    1.50 +	if((err == KErrNone)||(err == KErrNotFound))
    1.51 +		{
    1.52 +		TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
    1.53 +		}
    1.54 +	if(err == KErrNotFound)
    1.55 +		{
    1.56 +		err = KErrNone;
    1.57 +		}
    1.58 +	return err;
    1.59 +	}
    1.60 +
    1.61 +LOCAL_C TInt DeletePluginFolder()
    1.62 +	{
    1.63 +	TRAPD(err, EComTestUtils::FileManDeleteDirL(KEComRscPath));
    1.64 +	User::After(1000000);
    1.65 +	return err;
    1.66 +	}
    1.67 +/**
    1.68 +Copies the Resolver Plugins to C:\ drive
    1.69 +*/
    1.70 +LOCAL_C TInt CopyPluginsL()
    1.71 +    {
    1.72 +	// Copy the dlls and .rsc files on to RAM
    1.73 +	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
    1.74 + 	TEST(err==KErrNone, __LINE__);
    1.75 + 	TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
    1.76 + 	TEST(err==KErrNone, __LINE__);
    1.77 + 	User::After(1000000);
    1.78 + 	return err;
    1.79 +	}
    1.80 +
    1.81 +LOCAL_C void RegisterForNotificationL(TRequestStatus& aNotifyStatus)
    1.82 +	{
    1.83 +    REComSession& ecomSession = REComSession::OpenL();
    1.84 +	CleanupClosePushL(ecomSession);
    1.85 +
    1.86 +	ecomSession.NotifyOnChange(aNotifyStatus);
    1.87 +	TEST.Printf(_L("Request notification on ECom registration data change\n"));
    1.88 +	TInt result = aNotifyStatus.Int();
    1.89 +	TEST(result == KRequestPending);
    1.90 +
    1.91 +	ecomSession.Close();
    1.92 +	CleanupStack::PopAndDestroy();
    1.93 +	}
    1.94 +
    1.95 +LOCAL_C void WaitForNotificationL(TBool aExpected, TRequestStatus& aNotifyStatus)
    1.96 +	{
    1.97 +    //Wait for ECOM Server notification to arrive with timeout
    1.98 +	RTimer timer;
    1.99 +	CleanupClosePushL(timer);
   1.100 +	User::LeaveIfError(timer.CreateLocal());
   1.101 +	TRequestStatus timerStatus;
   1.102 +
   1.103 +	//Wait for ECom notification
   1.104 +	timer.After(timerStatus, KWaitDuration);
   1.105 +	TEST(timerStatus.Int() == KRequestPending);
   1.106 +
   1.107 +    TEST.Printf(_L("Waiting for notification from ECOM Server...\n"));
   1.108 +    User::WaitForRequest(timerStatus, aNotifyStatus);
   1.109 +
   1.110 +    if(aExpected)
   1.111 +    	{
   1.112 +	    //Verify that we recieved notification from ECom
   1.113 +		TEST(timerStatus.Int() == KRequestPending);
   1.114 +		TEST(aNotifyStatus.Int() == KErrNone);
   1.115 +    	}
   1.116 +    else
   1.117 +    	{
   1.118 +	    //Verify that we have not recieved notification from ECom
   1.119 +		TEST(timerStatus.Int() == KErrNone);
   1.120 +		TEST(aNotifyStatus.Int() == KRequestPending);
   1.121 +    	}
   1.122 +	timer.Cancel();
   1.123 +
   1.124 +	CleanupStack::PopAndDestroy();
   1.125 +	}
   1.126 +
   1.127 +LOCAL_C void FindImplementationsL(TInt aExpected)
   1.128 +	{
   1.129 +    REComSession& ecomSession = REComSession::OpenL();
   1.130 +	CleanupClosePushL(ecomSession);
   1.131 +
   1.132 +	//Get a list of available implementations
   1.133 +	TUid interfaceUid={0x10009DD9};
   1.134 +	RImplInfoPtrArray ifArray;
   1.135 +
   1.136 +	ecomSession.ListImplementationsL(interfaceUid,ifArray);
   1.137 +
   1.138 +	//Verify that the expected number of implementations were found
   1.139 +	TInt count = ifArray.Count();
   1.140 +	TEST(count == aExpected);
   1.141 +
   1.142 +	TEST.Printf(_L("%d Implementations found...\n"),count);
   1.143 +
   1.144 +	//cleanup
   1.145 +	ifArray.ResetAndDestroy();
   1.146 +	ecomSession.Close();
   1.147 +	CleanupStack::PopAndDestroy();
   1.148 +	}
   1.149 +
   1.150 +/**
   1.151 +@SYMTestCaseID          SYSLIB-ECOM-CT-3602
   1.152 +@SYMTestCaseDesc		Tests notification processing when SWI does not exist
   1.153 +						DEF108840: Undesireable interaction between ECOM and SWI
   1.154 +@SYMTestActions  	    Request notifcation of ECom registry change
   1.155 +						Copy plugin to c:\ and check that notification is recieved
   1.156 +
   1.157 +@SYMTestExpectedResults Notification should be recieved as normal if SWI is not present
   1.158 +@SYMDEF                 DEF108840
   1.159 +*/
   1.160 +LOCAL_C void DoSWITest1L()
   1.161 +	{
   1.162 +
   1.163 +	TRequestStatus notifyStatus;
   1.164 +	RegisterForNotificationL(notifyStatus);
   1.165 +
   1.166 +	FindImplementationsL(0);
   1.167 +
   1.168 +	//Copy plugin file to c:
   1.169 +	TEST.Printf(_L("Copy Plugin Files...\n"));
   1.170 +	CopyPluginsL();
   1.171 +
   1.172 +	WaitForNotificationL(ETrue,notifyStatus);
   1.173 +
   1.174 +	FindImplementationsL(1);
   1.175 +
   1.176 +	}
   1.177 +
   1.178 +/**
   1.179 +@SYMTestCaseID          SYSLIB-ECOM-CT-3547
   1.180 +@SYMTestCaseDesc	    Tests notification processing during SWI for
   1.181 +						DEF108840: Undesireable interaction between ECOM and SWI
   1.182 +@SYMTestActions  	    Set P&S variable to indicate SWI in progress.
   1.183 +						Request notifcation of ECom registry change
   1.184 +						Copy plugin to c:\ and check that notification is not recieved
   1.185 +						Clear P&S variable to indicate SWI completion and verify that notification is recieved.
   1.186 +@SYMTestExpectedResults Notification should not be recieved while SWI is in progress, but should be
   1.187 +						recieved when SWI completes
   1.188 +@SYMDEF                 DEF108840
   1.189 +*/
   1.190 +LOCAL_C void DoSWITest2L()
   1.191 +	{
   1.192 +	//Set SWI as running
   1.193 +	TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
   1.194 +	TEST.Printf(_L("SWI Started\n"));
   1.195 +
   1.196 +	TRequestStatus notifyStatus;
   1.197 +	RegisterForNotificationL(notifyStatus);
   1.198 +
   1.199 +	FindImplementationsL(0);
   1.200 +
   1.201 +	//Copy plugin file to c:
   1.202 +	TEST.Printf(_L("Copy Plugin Files...\n"));
   1.203 +	CopyPluginsL();
   1.204 +
   1.205 +    //Verify that the wait timed out - we didn't recieve notification
   1.206 +	WaitForNotificationL(EFalse,notifyStatus);
   1.207 +
   1.208 +	FindImplementationsL(0);
   1.209 +
   1.210 +	//Set SWI as complete
   1.211 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.212 +	TEST.Printf(_L("SWI Complete\n"));
   1.213 +
   1.214 +	WaitForNotificationL(ETrue,notifyStatus);
   1.215 +
   1.216 +	FindImplementationsL(1);
   1.217 +
   1.218 +	}
   1.219 +
   1.220 +/**
   1.221 +@SYMTestCaseID          SYSLIB-ECOM-CT-3668
   1.222 +@SYMTestCaseDesc	    Tests notification processing during SWI for
   1.223 +						INC110470 ECOM does not notify when plug-ins get uninstalled
   1.224 +@SYMTestActions  	    Uses P&S variables to simulate SWI install and uninstall
   1.225 +						Request notification of ECom registry change
   1.226 +						Verify that notifications are recieved after both install and uninstall
   1.227 +@SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall
   1.228 +@SYMDEF                 INC110470
   1.229 +*/
   1.230 +LOCAL_C void DoSWITest3L()
   1.231 +	{
   1.232 +
   1.233 +	TRequestStatus notifyStatus;
   1.234 +	RegisterForNotificationL(notifyStatus);
   1.235 +
   1.236 +	FindImplementationsL(0);
   1.237 +
   1.238 +	//Set SWI as running
   1.239 +	TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
   1.240 +	TEST.Printf(_L("SWI Started\n"));
   1.241 +
   1.242 +	//Copy plugin file to c:
   1.243 +	TEST.Printf(_L("Copy Plugin Files...\n"));
   1.244 +	CopyPluginsL();
   1.245 +
   1.246 +	//Set SWI as complete
   1.247 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.248 +	TEST.Printf(_L("SWI Complete\n"));
   1.249 +
   1.250 +	WaitForNotificationL(ETrue,notifyStatus);
   1.251 +
   1.252 +	FindImplementationsL(1);
   1.253 +
   1.254 +	RegisterForNotificationL(notifyStatus);
   1.255 +
   1.256 +	//Set SWI as running
   1.257 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall);
   1.258 +	TEST.Printf(_L("SWI Started\n"));
   1.259 +
   1.260 +	//delete files from c:
   1.261 +	TEST.Printf(_L("Delete Plugin Files...\n"));
   1.262 +	DeleteTestPlugin();
   1.263 +
   1.264 +	//Delete plugin folder so that drive is unmounted by ECom
   1.265 +	DeletePluginFolder();
   1.266 +
   1.267 +	//Set SWI as complete
   1.268 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.269 +	TEST.Printf(_L("SWI Complete\n"));
   1.270 +
   1.271 +	WaitForNotificationL(ETrue,notifyStatus);
   1.272 +
   1.273 +	FindImplementationsL(0);
   1.274 +
   1.275 +	RegisterForNotificationL(notifyStatus);
   1.276 +
   1.277 +	//Set SWI as running
   1.278 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
   1.279 +	TEST.Printf(_L("SWI Started\n"));
   1.280 +
   1.281 +	//Copy plugin file to c:
   1.282 +	TEST.Printf(_L("Copy Plugin Files...\n"));
   1.283 +	CopyPluginsL();
   1.284 +
   1.285 +	//Set SWI as complete
   1.286 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.287 +	TEST.Printf(_L("SWI Complete\n"));
   1.288 +
   1.289 +	WaitForNotificationL(ETrue,notifyStatus);
   1.290 +
   1.291 +	FindImplementationsL(1);
   1.292 +	}
   1.293 +
   1.294 +/**
   1.295 +@SYMTestCaseID          SYSLIB-ECOM-CT-3669
   1.296 +@SYMTestCaseDesc	    Tests robustness of notification processing during SWI
   1.297 +@SYMTestActions  	    Uses P&S variables to simulate SWI install and uninstall
   1.298 +						Request notification of ECom registry change
   1.299 +						Verify that notifications are recieved after both install and uninstall even
   1.300 +						if a SWI scan is pending when SWI begins
   1.301 +@SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall
   1.302 +@SYMDEF                 INC110470
   1.303 +*/
   1.304 +LOCAL_C void DoSWITest4L()
   1.305 +	{
   1.306 +
   1.307 +	TRequestStatus notifyStatus;
   1.308 +	RegisterForNotificationL(notifyStatus);
   1.309 +
   1.310 +	//Set SWI as complete
   1.311 +	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.312 +	TEST.Printf(_L("SWI Complete\n"));
   1.313 +
   1.314 +	FindImplementationsL(0);
   1.315 +
   1.316 +	//Set SWI as running
   1.317 +	TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
   1.318 +	TEST.Printf(_L("SWI Started\n"));
   1.319 +
   1.320 +	//Copy plugin file to c:
   1.321 +	TEST.Printf(_L("Copy Plugin Files...\n"));
   1.322 +	CopyPluginsL();
   1.323 +
   1.324 +	//Set SWI as complete
   1.325 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.326 +	TEST.Printf(_L("SWI Complete\n"));
   1.327 +
   1.328 +	WaitForNotificationL(ETrue,notifyStatus);
   1.329 +
   1.330 +	FindImplementationsL(1);
   1.331 +
   1.332 +	RegisterForNotificationL(notifyStatus);
   1.333 +
   1.334 +	//Set SWI as running
   1.335 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall);
   1.336 +	TEST.Printf(_L("SWI Started\n"));
   1.337 +
   1.338 +	//Delete plugin files
   1.339 +	TEST.Printf(_L("Delete Plugin Files...\n"));
   1.340 +	DeleteTestPlugin();
   1.341 +
   1.342 +	//Set SWI as complete
   1.343 +	r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
   1.344 +	TEST.Printf(_L("SWI Complete\n"));
   1.345 +
   1.346 +	//Wait again for ECom notification
   1.347 +	WaitForNotificationL(ETrue,notifyStatus);
   1.348 +
   1.349 +	FindImplementationsL(0);
   1.350 +	}
   1.351 +
   1.352 +LOCAL_C TInt SetupTest()
   1.353 +	{
   1.354 +	//Ensure plugin files are not on C:
   1.355 +	TInt res = DeleteTestPlugin();
   1.356 +	TEST.Printf(_L("Deleting test plugin...\n"));
   1.357 +
   1.358 +	//Wait to ensure files are deleted
   1.359 +	User::After(2000000);
   1.360 +
   1.361 +	//Create an ECom session to ensure ECom is up and running
   1.362 +	EComSess = REComSession::OpenL();
   1.363 +
   1.364 +	//Wait to ensure ECom startup has occurred
   1.365 +	User::After(2000000);
   1.366 +
   1.367 +	return res;
   1.368 +	}
   1.369 +
   1.370 +LOCAL_C void RunTestL()
   1.371 +	{
   1.372 +	__UHEAP_MARK;
   1.373 +
   1.374 +	TInt res = SetupTest();
   1.375 +	TEST(res == KErrNone);
   1.376 +
   1.377 +	res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
   1.378 +	TEST(res == KErrNone);
   1.379 +
   1.380 +	//Run the test
   1.381 +	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3602 ECom SWI Test - SWI Not Present "));
   1.382 +	DoSWITest1L();
   1.383 +
   1.384 +	//Cleanup
   1.385 +	EComSess.Close();
   1.386 +
   1.387 +	res = SetupTest();
   1.388 +	TEST(res == KErrNone);
   1.389 +
   1.390 +	res = PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt);
   1.391 +	TEST(res == KErrNone);
   1.392 +
   1.393 +	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3547 ECom SWI Test - SWI Present "));
   1.394 +	DoSWITest2L();
   1.395 +
   1.396 +	//Cleanup
   1.397 +	EComSess.Close();
   1.398 +
   1.399 +	res = SetupTest();
   1.400 +	TEST(res == KErrNone);
   1.401 +
   1.402 +	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3668 ECom SWI Uninstall Test - SWI Present "));
   1.403 +	DoSWITest3L();
   1.404 +
   1.405 +	//Cleanup
   1.406 +	EComSess.Close();
   1.407 +
   1.408 +	res = SetupTest();
   1.409 +	TEST(res == KErrNone);
   1.410 +
   1.411 +	TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3669 ECom SWI Robustness Test "));
   1.412 +	DoSWITest4L();
   1.413 +
   1.414 +	res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
   1.415 +	TEST(res == KErrNone);
   1.416 +
   1.417 +	//Cleanup
   1.418 +	EComSess.Close();
   1.419 +	REComSession::FinalClose();
   1.420 +
   1.421 +	//Ensure plugin files are not on C:
   1.422 +	res = DeleteTestPlugin();
   1.423 +	TEST(res == KErrNone);
   1.424 +
   1.425 +	__UHEAP_MARKEND;
   1.426 +	}
   1.427 +
   1.428 +GLDEF_C TInt E32Main()
   1.429 +	{
   1.430 +	__UHEAP_MARK;
   1.431 +
   1.432 +	TEST.Title();
   1.433 +	TEST.Start(_L("ECom SWI tests."));
   1.434 +
   1.435 +	CTrapCleanup* cleanup = CTrapCleanup::New();
   1.436 +	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
   1.437 +	CActiveScheduler::Install(scheduler);
   1.438 +
   1.439 +	TRAPD(err,RunTestL());
   1.440 +	TEST(err==KErrNone, __LINE__);
   1.441 +
   1.442 +	delete scheduler;
   1.443 +	delete cleanup;
   1.444 +
   1.445 +	TEST.End();
   1.446 +	TEST.Close();
   1.447 +
   1.448 +	__UHEAP_MARKEND;
   1.449 +	return(0);
   1.450 +	}