Update contrib.
1 // Copyright (c) 2006-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 // ECom SWI test step declaration
22 #ifndef __INSTALL_STEP_H__
23 #define __INSTALL_STEP_H__
25 #include <test/testexecutestepbase.h>
29 #include "TE_EComSWITestSuiteStepBase.h"
36 class Cinstallers : public CTe_EComSWITestSuiteStepBase
41 void CheckFilesExistL();
42 void CheckFilesNonExistL();
43 void CheckFilesL(const TDesC&, const TDesC&, TBool);
44 void WaitForEComReDiscoveryL();
49 * Installation test step class
53 class CinstallStep : public Cinstallers
56 enum TInstallType { EUseFileHandle, EUseMemory, EUseFileName, EUseCAF, EUseOpenFileName, ECheckExitValue};
57 CinstallStep(TInstallType aInstallType, TBool aDoCancelTest = EFalse);
59 virtual TVerdict doTestStepPreambleL();
60 virtual TVerdict doTestStepPostambleL();
61 virtual TVerdict doTestStepL();
64 TInt DoInstallL(Swi::CInstallPrefs& aInstallPrefs);
67 TFileName iSisFileName; // name of the file to install
68 TUI* iUi; // Minimal install framework
69 TInstallType iInstallType; // use file handle to install
72 TBool iInstallSuccess; // indicate software installed
75 /** Custom resolver installation test step class
79 class CResolverInstallStep : public CinstallStep // codescanner::missingcclass
82 CResolverInstallStep(CinstallStep::TInstallType aInstallType);
83 ~CResolverInstallStep();
84 virtual TVerdict doTestStepL();
91 * Uninstallation test step class
95 class CuninstallStep : public Cinstallers
98 enum TUninstallType { EByUid, EByPackage };
99 CuninstallStep(TUninstallType aType, TBool aDoCancelTest = EFalse);
101 virtual TVerdict doTestStepPreambleL();
102 virtual TVerdict doTestStepPostambleL();
103 virtual TVerdict doTestStepL();
111 TUI* iUi; // Minimal install framework
113 TUninstallType iType;
117 /** Custom resolver uninstallation test step class
121 class CResolverUninstallStep : public CuninstallStep // codescanner::missingcclass
124 CResolverUninstallStep(CuninstallStep::TUninstallType aType);
125 ~CResolverUninstallStep();
126 virtual TVerdict doTestStepL();
129 _LIT(KMMCNeeeded, "MMCNeeded");
130 _LIT(KMMCHWDSys, "e:\\sys\\bin");
131 _LIT(KMMCHWDPlg, "e:\\resource\\plugins\\");
133 _LIT(KMMCEmulSys, "x:\\sys\\bin");
134 _LIT(KMMCEmulPlg, "x:\\resource\\plugins\\");
137 _LIT(KNumNotifies, "NumNotifies");
138 _LIT(KNotifyPrefix, "Notify");
139 _LIT(KAffectedFile, "AffectedFile");
141 _LIT(KInstallStep, "InstallStep");
142 _LIT(KResolverInstallStep, "ResolverInstallStep");
143 _LIT(KResolverUninstallStep, "ResolverUninstallStep");
144 _LIT(KExpectedError, "ExpectedError");
145 _LIT(KInstallFHStep, "InstallFHStep"); // install using file handles
146 _LIT(KInstallMemStep, "InstallMemStep"); // install from memory
147 _LIT(KInstallCAFStep, "InstallCAFStep"); // install from CAF
148 _LIT(KInstallOpenFileStep, "InstallOpenFileStep"); // install with already opened file
149 _LIT(KCheckedInstallStep, "CheckedInstallStep");
152 _LIT(KInstallCancelStep, "InstallStepCancel");
153 _LIT(KInstallFHCancelStep, "InstallFHStepCancel"); // install using file handles
154 _LIT(KInstallMemCancelStep, "InstallMemStepCancel"); // install from memory
155 _LIT(KInstallCAFCancelStep, "InstallCAFStepCancel"); // install from CAF
157 _LIT(KUninstallStep, "UninstallStep");
158 _LIT(KUninstallStepPackageName, "UninstallStepPackageName");
160 _LIT(KUninstallAugStep, "UninstallAugStep"); // uninstall of augmentation
161 _LIT(KTrustStatus, "TrustStatus");
162 _LIT(KPirCheck, "PostInstallRevocationCheck");
164 _LIT(KUninstallCancelStep, "UninstallStepCancel");
165 _LIT(KUninstallAugCancelStep, "UninstallAugStepCancel"); // uninstall of augmentation
166 _LIT(KNumExpectedSizes, "numExpectedSizes"); // This specifies that the test section
167 // has values for installation size(s).
170 #endif // __INSTALL_STEP_H__