os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestUtils.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) 2004-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
// Helper class for ECom test code. Allows various file manipulation operations
sl@0
    15
// that require higher Capabilities than shoud be given to test harnesses.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __ECOMTESTUTILS_H__
sl@0
    21
#define __ECOMTESTUTILS_H__
sl@0
    22
sl@0
    23
#include <e32test.h>
sl@0
    24
sl@0
    25
// System includes
sl@0
    26
#include <f32file.h>
sl@0
    27
sl@0
    28
// Wait or sleep macros for current thread
sl@0
    29
#define WAIT_FOR1s User::After(1000000)
sl@0
    30
#define WAIT_FOR3s User::After(3000000)
sl@0
    31
#define WAIT_FOR5s User::After(5000000)
sl@0
    32
sl@0
    33
// Common ECOM Server strings
sl@0
    34
_LIT(KEComZDriveDatFile, 		"C:\\private\\10009D8F\\ECom.ROM.Z.dat");
sl@0
    35
_LIT(KEComCDriveDatFile, 		"C:\\private\\10009D8F\\ECom.dat");
sl@0
    36
_LIT(KEComEDriveDatFile, 		"E:\\private\\10009D8F\\ECom.dat");
sl@0
    37
sl@0
    38
sl@0
    39
_LIT(KEComServerProcessName,    "ecomserver");
sl@0
    40
sl@0
    41
/**
sl@0
    42
This enum is used to represent the rom build option i.e. NAND or default rom build
sl@0
    43
*/
sl@0
    44
enum TRomBuildOption
sl@0
    45
{
sl@0
    46
	EDefaultRomBuild,
sl@0
    47
	ENandRomBuild
sl@0
    48
};
sl@0
    49
sl@0
    50
/**
sl@0
    51
Enum type to represent possible configurations of the hardware running the tests
sl@0
    52
*/
sl@0
    53
enum THardwareConfiguration
sl@0
    54
{
sl@0
    55
	EPlatformWINSCW,
sl@0
    56
	EPlatformH2RAM,
sl@0
    57
	EPlatformH2NAND,
sl@0
    58
	EPlatformH2NANDDP,
sl@0
    59
	EPlatformH4RAM,
sl@0
    60
	EPlatformH4MMC,//New hardware configuration for WDP enabled ROM on H4
sl@0
    61
	EPlatformH4NAND,
sl@0
    62
	EPlatformH4NANDDP,
sl@0
    63
	EPlatformH6RAM,
sl@0
    64
	EPlatformH6NAND,
sl@0
    65
	EPlatformH6NANDDP,
sl@0
    66
	EPlatformUnknown,
sl@0
    67
};
sl@0
    68
sl@0
    69
class EComTestUtils
sl@0
    70
	{
sl@0
    71
public:
sl@0
    72
	IMPORT_C static void FileManCopyFileL(const TDesC& anOld,const TDesC& aNew);
sl@0
    73
	IMPORT_C static void FileManDeleteFileL(const TDesC& aFile);
sl@0
    74
	IMPORT_C static void MakeFileWriteableL(const TDesC& aFile);
sl@0
    75
	IMPORT_C static void MakeFileReadOnlyL(const TDesC& aFile);
sl@0
    76
	IMPORT_C static void RfsDeleteFileL(const TDesC& aFile);
sl@0
    77
	IMPORT_C static void RfsReplaceFileL(const TDesC& anOld,const TDesC& aNew);
sl@0
    78
	IMPORT_C static void KillProcessL(const TDesC& aProcessName);
sl@0
    79
	IMPORT_C static void FileManRenameL(const TDesC& anOld,const TDesC& aNew);
sl@0
    80
	IMPORT_C static void FileManDeleteDirL(const TDesC& aPath);
sl@0
    81
	IMPORT_C static void SwitchToLanguageL(TLanguage aLang);
sl@0
    82
	IMPORT_C static void RLoaderDeleteFileL(const TDesC& aFile);
sl@0
    83
	IMPORT_C static TRomBuildOption RomBuildType(const RFs& aRfs);
sl@0
    84
	IMPORT_C static THardwareConfiguration GetHardwareConfiguration();
sl@0
    85
	};
sl@0
    86
sl@0
    87
inline void KillEComServerL(RTest &aRTest)
sl@0
    88
	{
sl@0
    89
	aRTest.Printf(_L("Killing ECOM Server, waiting 1s...\n"));
sl@0
    90
	TRAPD(err, EComTestUtils::KillProcessL(KEComServerProcessName));
sl@0
    91
	if ((err != KErrNone) && (err != KErrNotFound))
sl@0
    92
		User::Leave(err);
sl@0
    93
	// Precaution delay, give the system a chance to settle afterwards
sl@0
    94
	WAIT_FOR1s;	
sl@0
    95
	}
sl@0
    96
#define ECOMTU_KILL_SERVER_L(rt) KillEComServerL((rt))
sl@0
    97
sl@0
    98
sl@0
    99
inline void Validate(RTest& aRTest, TInt aValue, TInt aExpected, TInt aLine)
sl@0
   100
	{
sl@0
   101
	if(aValue != aExpected)
sl@0
   102
		{
sl@0
   103
		RDebug::Print(_L("*** Expected integer/error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
   104
		aRTest(EFalse, aLine);
sl@0
   105
		}
sl@0
   106
	}
sl@0
   107
sl@0
   108
#define TESTC(aRTest, aValue, aExpected) ::Validate(aRTest, aValue, aExpected, __LINE__)
sl@0
   109
sl@0
   110
sl@0
   111
#endif
sl@0
   112