os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/installStep.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// ECom SWI test step declaration
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __INSTALL_STEP_H__
sl@0
    23
#define __INSTALL_STEP_H__
sl@0
    24
sl@0
    25
#include <test/testexecutestepbase.h>
sl@0
    26
#include "tui.h"
sl@0
    27
sl@0
    28
#include <e32base.h>
sl@0
    29
#include "TE_EComSWITestSuiteStepBase.h"
sl@0
    30
sl@0
    31
namespace Swi
sl@0
    32
        {
sl@0
    33
        class CInstallPrefs;
sl@0
    34
        }
sl@0
    35
sl@0
    36
class Cinstallers :  public CTe_EComSWITestSuiteStepBase
sl@0
    37
    {
sl@0
    38
protected:
sl@0
    39
        Cinstallers();
sl@0
    40
        ~Cinstallers();
sl@0
    41
        void CheckFilesExistL();
sl@0
    42
        void CheckFilesNonExistL();
sl@0
    43
        void CheckFilesL(const TDesC&, const TDesC&, TBool);
sl@0
    44
		void WaitForEComReDiscoveryL();
sl@0
    45
    };
sl@0
    46
sl@0
    47
sl@0
    48
/**
sl@0
    49
 * Installation test step class
sl@0
    50
 * @test
sl@0
    51
 * @internalComponent
sl@0
    52
 */
sl@0
    53
class CinstallStep : public Cinstallers
sl@0
    54
        {
sl@0
    55
public:
sl@0
    56
        enum TInstallType { EUseFileHandle, EUseMemory, EUseFileName, EUseCAF, EUseOpenFileName, ECheckExitValue};
sl@0
    57
        CinstallStep(TInstallType aInstallType, TBool aDoCancelTest = EFalse);
sl@0
    58
        ~CinstallStep();
sl@0
    59
        virtual TVerdict doTestStepPreambleL();
sl@0
    60
        virtual TVerdict doTestStepPostambleL();
sl@0
    61
        virtual TVerdict doTestStepL();
sl@0
    62
sl@0
    63
private:
sl@0
    64
        TInt DoInstallL(Swi::CInstallPrefs& aInstallPrefs);
sl@0
    65
sl@0
    66
protected:
sl@0
    67
        TFileName iSisFileName; // name of the file to install
sl@0
    68
        TUI* iUi; // Minimal install framework
sl@0
    69
        TInstallType iInstallType; // use file handle to install
sl@0
    70
        TBool iDoCancelTest;
sl@0
    71
        TPtrC iExpectedHash;
sl@0
    72
        TBool iInstallSuccess; // indicate software installed
sl@0
    73
        };
sl@0
    74
sl@0
    75
/** Custom resolver installation test step class
sl@0
    76
@test
sl@0
    77
@internalComponent
sl@0
    78
*/
sl@0
    79
class CResolverInstallStep : public CinstallStep // codescanner::missingcclass
sl@0
    80
	{
sl@0
    81
public:
sl@0
    82
	CResolverInstallStep(CinstallStep::TInstallType aInstallType);
sl@0
    83
	~CResolverInstallStep();
sl@0
    84
	virtual TVerdict doTestStepL();
sl@0
    85
sl@0
    86
private:
sl@0
    87
	RLibrary iLibrary;
sl@0
    88
	};
sl@0
    89
sl@0
    90
/**
sl@0
    91
 * Uninstallation test step class
sl@0
    92
 * @test
sl@0
    93
 * @internalComponent
sl@0
    94
 */
sl@0
    95
class CuninstallStep : public Cinstallers
sl@0
    96
        {
sl@0
    97
public:
sl@0
    98
        enum TUninstallType { EByUid, EByPackage };
sl@0
    99
        CuninstallStep(TUninstallType aType, TBool aDoCancelTest = EFalse);
sl@0
   100
        ~CuninstallStep();
sl@0
   101
        virtual TVerdict doTestStepPreambleL();
sl@0
   102
        virtual TVerdict doTestStepPostambleL();
sl@0
   103
        virtual TVerdict doTestStepL();
sl@0
   104
private:
sl@0
   105
        TInt DoUninstallL();
sl@0
   106
sl@0
   107
private:
sl@0
   108
        TUid iUid;
sl@0
   109
        TPtrC iVendorName;
sl@0
   110
sl@0
   111
        TUI* iUi; // Minimal install framework
sl@0
   112
        TPtrC iPackageName;
sl@0
   113
        TUninstallType iType;
sl@0
   114
        TBool iDoCancelTest;
sl@0
   115
        };
sl@0
   116
sl@0
   117
/** Custom resolver uninstallation test step class
sl@0
   118
 * @test
sl@0
   119
 * @internalComponent
sl@0
   120
 */
sl@0
   121
class CResolverUninstallStep : public CuninstallStep // codescanner::missingcclass
sl@0
   122
	{
sl@0
   123
public:
sl@0
   124
	CResolverUninstallStep(CuninstallStep::TUninstallType aType);
sl@0
   125
	~CResolverUninstallStep();
sl@0
   126
	virtual TVerdict doTestStepL();
sl@0
   127
	};
sl@0
   128
sl@0
   129
_LIT(KMMCNeeeded, "MMCNeeded");
sl@0
   130
_LIT(KMMCHWDSys, "e:\\sys\\bin");
sl@0
   131
_LIT(KMMCHWDPlg, "e:\\resource\\plugins\\");
sl@0
   132
sl@0
   133
_LIT(KMMCEmulSys, "x:\\sys\\bin");
sl@0
   134
_LIT(KMMCEmulPlg, "x:\\resource\\plugins\\");
sl@0
   135
sl@0
   136
sl@0
   137
_LIT(KNumNotifies, "NumNotifies");
sl@0
   138
_LIT(KNotifyPrefix, "Notify");
sl@0
   139
_LIT(KAffectedFile, "AffectedFile");
sl@0
   140
sl@0
   141
_LIT(KInstallStep, "InstallStep");
sl@0
   142
_LIT(KResolverInstallStep, "ResolverInstallStep");
sl@0
   143
_LIT(KResolverUninstallStep, "ResolverUninstallStep");
sl@0
   144
_LIT(KExpectedError, "ExpectedError");
sl@0
   145
_LIT(KInstallFHStep, "InstallFHStep"); // install using file handles
sl@0
   146
_LIT(KInstallMemStep, "InstallMemStep"); // install from memory
sl@0
   147
_LIT(KInstallCAFStep, "InstallCAFStep"); // install from CAF
sl@0
   148
_LIT(KInstallOpenFileStep, "InstallOpenFileStep"); // install with already opened file
sl@0
   149
_LIT(KCheckedInstallStep, "CheckedInstallStep");
sl@0
   150
sl@0
   151
// Cancel testing 
sl@0
   152
_LIT(KInstallCancelStep, "InstallStepCancel");
sl@0
   153
_LIT(KInstallFHCancelStep, "InstallFHStepCancel"); // install using file handles
sl@0
   154
_LIT(KInstallMemCancelStep, "InstallMemStepCancel"); // install from memory
sl@0
   155
_LIT(KInstallCAFCancelStep, "InstallCAFStepCancel"); // install from CAF
sl@0
   156
sl@0
   157
_LIT(KUninstallStep, "UninstallStep");
sl@0
   158
_LIT(KUninstallStepPackageName, "UninstallStepPackageName");
sl@0
   159
sl@0
   160
_LIT(KUninstallAugStep, "UninstallAugStep"); // uninstall of augmentation
sl@0
   161
_LIT(KTrustStatus, "TrustStatus");
sl@0
   162
_LIT(KPirCheck, "PostInstallRevocationCheck");
sl@0
   163
sl@0
   164
_LIT(KUninstallCancelStep, "UninstallStepCancel");
sl@0
   165
_LIT(KUninstallAugCancelStep, "UninstallAugStepCancel"); // uninstall of augmentation
sl@0
   166
_LIT(KNumExpectedSizes, "numExpectedSizes"); // This specifies that the test section
sl@0
   167
// has values for installation size(s).
sl@0
   168
sl@0
   169
sl@0
   170
#endif //  __INSTALL_STEP_H__