os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/installstep.cpp
Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // SWIS test step implementation
22 #include "installStep.h"
26 #include <test/testexecutelog.h>
27 #include <swi/launcher.h>
29 #include "swi/sisregistrysession.h"
30 #include "swi/sisregistrypackage.h"
31 #include "swi/sisregistryentry.h"
32 #include "cleanuputils.h"
40 CinstallStep::~CinstallStep()
46 CinstallStep::CinstallStep(TInstallType aInstallType, TBool aDoCancelTest)
47 : iInstallType(aInstallType), iDoCancelTest(aDoCancelTest),
48 iInstallSuccess(EFalse)
50 // Call base class method to set up the human readable name for logging
55 SetTestStepName(KInstallFHStep);
59 SetTestStepName(KInstallMemStep);
63 SetTestStepName(KInstallStep);
67 SetTestStepName(KInstallCAFStep);
70 case EUseOpenFileName:
71 SetTestStepName(KInstallOpenFileStep);
75 SetTestStepName(KCheckedInstallStep);
82 * Override of base class virtual. Prepares for the test run of SWIS
83 * @return TVerdict code
85 TVerdict CinstallStep::doTestStepPreambleL()
87 SetTestStepResult(EPass);
88 // get step parameters
90 if (!GetStringFromConfig(ConfigSection(), _L("sis"), str))
92 INFO_PRINTF1(HTML_RED);
93 ERR_PRINTF1(_L("FAIL: Missing SIS file name"));
94 INFO_PRINTF1(HTML_RED_OFF);
95 SetTestStepResult(EFail);
96 return TestStepResult();
98 iSisFileName.Copy(str);
99 INFO_PRINTF2(_L("Installing '%S'"), &iSisFileName);
101 // create UI handler and populate the answers from XML file
102 iUi = new(ELeave) TUI();
104 return TestStepResult();
111 * Override of base class pure virtual
112 * Demonstrates reading configuration parameters fom an ini file section
113 * @return TVerdict code
115 TVerdict CinstallStep::doTestStepL()
117 INFO_PRINTF1(KInstallStep);
119 // Try to set up a repository object, we'll need this if any
120 // NotifyRequests are listed. Only open the repository if there are
125 // First find out if the install step is supposed to be successful.
126 TInt insterr=KErrNone;
127 bRet = GetIntFromConfig(ConfigSection(), KExpectedError, insterr );
128 if(bRet!=1) insterr=KErrNone;
130 CInstallPrefs* prefs = CInstallPrefs::NewLC();
131 TInt err = DoInstallL(*prefs);
132 iInstallSuccess = (err == KErrNone);
137 INFO_PRINTF1(HTML_RED);
138 ERR_PRINTF3( _L("Installation return wrong error code, expected %d, got %d."), insterr, err );
139 INFO_PRINTF1(HTML_RED_OFF);
140 SetTestStepResult(EFail);
144 INFO_PRINTF2( _L("Installation error code %d (expected)."), err );
148 CleanupStack::PopAndDestroy(prefs);
150 return TestStepResult();
154 TInt CinstallStep::DoInstallL(CInstallPrefs& aInstallPrefs)
159 switch (iInstallType)
162 err = Launcher::Install(*iUi, iSisFileName, aInstallPrefs);
163 INFO_PRINTF2(_L("EUseFileName: Install return code was %d"), err);
166 case EUseOpenFileName:
167 // open the file as a shared for readers only
169 User::LeaveIfError(fs.Connect());
171 CleanupClosePushL(fs);
173 User::LeaveIfError(file.Open(fs, iSisFileName, EFileShareReadersOnly));
174 CleanupClosePushL(file);
175 TInt error = Launcher::Install(*iUi, iSisFileName, aInstallPrefs);
176 CleanupStack::PopAndDestroy(2, &fs);
183 User::LeaveIfError(fs.Connect());
185 CleanupClosePushL(fs);
187 User::LeaveIfError(file.Open(fs, iSisFileName, 0));
188 CleanupClosePushL(file);
189 TInt error=Launcher::Install(*iUi, file, aInstallPrefs);
190 CleanupStack::PopAndDestroy(2, &fs);
194 case ECheckExitValue:
196 // This test case does an install and checks for pass or failure
197 // TInt err = Launcher::Install(*iUi, iSisFileName, *prefs);
198 TInt err = Launcher::Install(*iUi, iSisFileName, aInstallPrefs);
199 INFO_PRINTF2(_L("Install return code was %d"), err);
202 if (!GetStringFromConfig(ConfigSection(), _L("result"), expected))
204 return ETestSuiteError;
208 _LIT(KSucess, "sucess");
209 _LIT(KFailure, "failure");
213 if (expected.CompareF(KSucess) == 0)
215 result = (err == KErrNone ? EPass : EFail);
217 else if (expected.CompareF(KFailure) == 0)
219 result = (err != KErrNone ? EPass : EFail);
223 result = ETestSuiteError;
232 // Shouldn't get here
237 * Override of base class virtual
238 * @return TVerdict code
240 TVerdict CinstallStep::doTestStepPostambleL()
243 CheckFilesNonExistL();
244 return TestStepResult();
247 /** Need to wait a few seconds for ECOM to
248 discover the change. Otherwise the next step may fail.
249 @pre caller has checked the install/uninstall
250 is successful. Otherwise will waste 30 s.
252 void Cinstallers::WaitForEComReDiscoveryL()
254 REComSession& ecomSession = REComSession::OpenL();
255 CleanupClosePushL(ecomSession);
256 TRequestStatus ecomstatus;
257 ecomSession.NotifyOnChange(ecomstatus);
260 User::LeaveIfError(timer.CreateLocal());
261 CleanupClosePushL(timer);
262 const TInt KInterval = 30000000; // 30 s
263 TRequestStatus timerstatus;
264 timer.After(timerstatus, KInterval);
266 User::WaitForRequest(ecomstatus, timerstatus);
268 if (ecomstatus == KRequestPending)
270 ecomSession.CancelNotifyOnChange(ecomstatus);
271 User::WaitForRequest(ecomstatus);
273 INFO_PRINTF1(HTML_RED);
274 ERR_PRINTF1(_L("No notification from ECOM"));
275 INFO_PRINTF1(HTML_RED_OFF);
276 // does not affect test result as this is the equivalent of
277 // DELAY 30000 in the script.
282 User::WaitForRequest(timerstatus);
283 INFO_PRINTF1(_L("ECOM has discovered the change"));
286 CleanupStack::PopAndDestroy(2); // ecomsession, RTimer
287 REComSession::FinalClose();
290 /** Resolver installation step */
293 CResolverInstallStep::CResolverInstallStep(CinstallStep::TInstallType aInstallType)
294 : CinstallStep(aInstallType)
299 CResolverInstallStep::~CResolverInstallStep()
304 /** uses CinstallStep::dotestStepL to do the install.
305 But adds an optional step of loading a DLL before, and
306 a step to wait for ECom rediscovery after.
308 TVerdict CResolverInstallStep::doTestStepL()
311 if (GetStringFromConfig(ConfigSection(), _L("loadresolver"), libraryPath))
314 TInt err = iLibrary.Load(libraryPath, nullUid);
317 ERR_PRINTF2(_L("Preload resolver failed %d"), err);
322 // continue to do the actual install.
323 TVerdict ret = CinstallStep::doTestStepL();
327 WaitForEComReDiscoveryL();
333 /* *******************************************************************************
334 * Code below was copies from
335 * \master\common\generic\security\swi\test\tuiscriptadaptors\tswisstep.cpp
337 * If there are any problems with this code, it may be worth contacting the
339 * *******************************************************************************/
345 CuninstallStep::~CuninstallStep()
350 CuninstallStep::CuninstallStep(TUninstallType aType, TBool aDoCancelTest)
351 : iType(aType), iDoCancelTest(aDoCancelTest)
353 // Call base class method to set up the human readable name for logging
354 SetTestStepName(KUninstallStep);
361 * Override of base class virtual. Prepares for the test run of SWIS
362 * @return TVerdict code
364 TVerdict CuninstallStep::doTestStepPreambleL()
366 // get step parameters
371 if (!GetHexFromConfig(ConfigSection(), _L("uid"), uid))
373 INFO_PRINTF1(HTML_RED);
374 ERR_PRINTF1(_L("Missing uid"));
375 INFO_PRINTF1(HTML_RED_OFF);
376 SetTestStepResult(EFail);
377 return TestStepResult();
382 if (iType == EByPackage)
385 if (!GetStringFromConfig(ConfigSection(), _L("vendorName"), vendorName))
387 INFO_PRINTF1(HTML_RED);
388 ERR_PRINTF1(_L("Missing Vendor Name"));
389 INFO_PRINTF1(HTML_RED_OFF);
390 SetTestStepResult(EFail);
391 return TestStepResult();
393 iVendorName.Set(vendorName);
396 if (!GetStringFromConfig(ConfigSection(), _L("packageName"), packageName))
398 INFO_PRINTF1(HTML_RED);
399 ERR_PRINTF1(_L("Missing Package Name"));
400 INFO_PRINTF1(HTML_RED_OFF);
401 SetTestStepResult(EFail);
402 return TestStepResult();
404 iPackageName.Set(packageName);
406 INFO_PRINTF4(_L("Uninstalling %D, %S, %S"),
407 iUid.iUid, &iPackageName, &iVendorName);
408 // create UI handler and populate the answers from XML file
409 iUi = new(ELeave) TUI;
412 else if (iType== EByUid)
414 INFO_PRINTF2(_L("Uninstalling '%D'"), iUid.iUid);
415 // create UI handler and populate the answers from XML file
416 iUi = new(ELeave) TUI;
420 return TestStepResult();
424 * Override of base class pure virtual
425 * Demonstrates reading configuration parameters fom an ini file section
426 * @return TVerdict code
429 TInt CuninstallStep::DoUninstallL()
433 INFO_PRINTF1(KUninstallStep);
437 // launch the installation
438 err = Launcher::Uninstall(*iUi, iUid);
441 else if (iType == EByPackage)
445 // Go through list of packages from base package to get augmentations.
446 CSisRegistryPackage* uninstallPackage=CSisRegistryPackage::NewLC(iUid, iPackageName, iVendorName);
447 INFO_PRINTF3(_L("UnInstalling '%S', '%S'"), &iPackageName, &iVendorName);
449 // err=Launcher::Uninstall(*iUi, *uninstallPackage);
451 RSisRegistrySession registrySession;
452 User::LeaveIfError(registrySession.Connect());
453 CleanupClosePushL(registrySession);
455 RSisRegistryEntry registryEntry;
457 User::LeaveIfError(registryEntry.Open(registrySession, iUid));
458 CleanupClosePushL(registryEntry);
460 CSisRegistryPackage* package=registryEntry.PackageL();
461 CleanupStack::PushL(package);
463 if (*package == *uninstallPackage)
465 err=Launcher::Uninstall(*iUi, *package);
469 // check augmenations
470 RPointerArray<CSisRegistryPackage> augmentationPackages;
471 CleanupResetAndDestroy<RPointerArray<CSisRegistryPackage> >::PushL(augmentationPackages);
473 registryEntry.AugmentationsL(augmentationPackages);
475 for (TInt i=0; i < augmentationPackages.Count(); ++i)
477 if (*augmentationPackages[i] == *uninstallPackage)
479 err=User::LeaveIfError(Launcher::Uninstall(*iUi, *augmentationPackages[i]));
486 INFO_PRINTF1(HTML_RED);
487 ERR_PRINTF2(_L("Package Augmentation Not found for '%s' "), &iPackageName);
488 INFO_PRINTF1(HTML_RED_OFF);
489 SetTestStepResult(EFail);
490 return TestStepResult();
493 CleanupStack::PopAndDestroy(&augmentationPackages);
496 CleanupStack::PopAndDestroy(3, ®istrySession);
497 CleanupStack::PopAndDestroy(uninstallPackage);
502 /* ******************************************************************************
503 * End of copied code.
504 * ******************************************************************************/
506 TVerdict CuninstallStep::doTestStepL()
508 INFO_PRINTF1(KUninstallStep);
512 // Wait a fraction over a second. This is necessary because we may just
513 // have been messing about with repository settings and if the install
514 // happens really quickly we might not see a datestamp change (esp. on
515 // hardware where the timestamp granularity is poor).
516 User::After(1100000);
517 User::LeaveIfError(DoUninstallL());
519 return TestStepResult();
523 * Override of base class virtual
524 * @return TVerdict code
526 TVerdict CuninstallStep::doTestStepPostambleL()
529 CheckFilesNonExistL();
530 return TestStepResult();
533 // CResolverUninstallStep class
536 CResolverUninstallStep::CResolverUninstallStep(CuninstallStep::TUninstallType aType)
537 : CuninstallStep(aType)
541 /** nothing to do in destructor */
542 CResolverUninstallStep::~CResolverUninstallStep()
546 /** runs CuninstallStep::doTestStepL and then
547 do a WaitForEComReDiscoveryL */
548 TVerdict CResolverUninstallStep::doTestStepL()
550 TVerdict ret = CuninstallStep::doTestStepL();
553 WaitForEComReDiscoveryL();
558 Cinstallers::~Cinstallers()
565 Cinstallers::Cinstallers()
572 void Cinstallers::CheckFilesL(const TDesC& aNumEntries,
573 const TDesC& aEntryBase, TBool aCheckExist)
578 _LIT(Report_CheckFiles, "CheckFilesL");
579 INFO_PRINTF1(Report_CheckFiles);
582 User::LeaveIfError(fs.Connect());
584 CleanupClosePushL(fs);
586 if (GetIntFromConfig(ConfigSection(), aNumEntries, numEntries) && numEntries!=0)
588 INFO_PRINTF1(Report_CheckFiles);
590 for (TInt i=0; i<numEntries; i++)
592 // construct name of the key
593 const TInt KKeyBufSize=64;
594 TBuf<KKeyBufSize> keyBuf(aEntryBase);
597 if (GetStringFromConfig(ConfigSection(), keyBuf, fname))
601 // check if the file (doesn't) exist. Give it some time if
602 // we see a failure in case there's a race with the
608 while (!BaflUtils::FileExists(fs, fname) && (sec>0))
613 if (!BaflUtils::FileExists(fs, fname))
615 INFO_PRINTF1(HTML_RED);
616 ERR_PRINTF2(_L("File missing: %S"), &fname);
617 INFO_PRINTF1(HTML_RED_OFF);
624 while (BaflUtils::FileExists(fs, fname) && (sec>0))
629 if (BaflUtils::FileExists(fs, fname))
631 INFO_PRINTF1(HTML_RED);
632 ERR_PRINTF2(_L("File exists (but shouldn't): %S"), &fname);
633 INFO_PRINTF1(HTML_RED_OFF);
640 // the string must exist, otherwise the config is invalid
641 INFO_PRINTF1(HTML_RED);
642 ERR_PRINTF2(_L("Missing file name for key '%S'"), &keyBuf);
643 INFO_PRINTF1(HTML_RED_OFF);
650 SetTestStepResult(EFail);
651 CleanupStack::PopAndDestroy(1, &fs);
654 void Cinstallers::CheckFilesExistL()
656 _LIT(KNumExist, "numexist"); // this specifies how many files to check for
657 _LIT(KExistBase, "exist"); // + number (0-based) = file to check for
658 CheckFilesL(KNumExist, KExistBase, ETrue);
661 void Cinstallers::CheckFilesNonExistL()
663 _LIT(KNumNonExist, "numnonexist"); // this specifies how many files to check for
664 _LIT(KNonExistBase, "nonexist"); // + number (0-based) = file to check for
665 CheckFilesL(KNumNonExist, KNonExistBase, EFalse);