sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Helper class for ECom test code. Allows various file manipulation operations sl@0: // that require higher Capabilities than shoud be given to test harnesses. sl@0: // sl@0: // sl@0: sl@0: sl@0: #ifndef __ECOMTESTUTILS_H__ sl@0: #define __ECOMTESTUTILS_H__ sl@0: sl@0: #include sl@0: sl@0: // System includes sl@0: #include sl@0: sl@0: // Wait or sleep macros for current thread sl@0: #define WAIT_FOR1s User::After(1000000) sl@0: #define WAIT_FOR3s User::After(3000000) sl@0: #define WAIT_FOR5s User::After(5000000) sl@0: sl@0: // Common ECOM Server strings sl@0: _LIT(KEComZDriveDatFile, "C:\\private\\10009D8F\\ECom.ROM.Z.dat"); sl@0: _LIT(KEComCDriveDatFile, "C:\\private\\10009D8F\\ECom.dat"); sl@0: _LIT(KEComEDriveDatFile, "E:\\private\\10009D8F\\ECom.dat"); sl@0: sl@0: sl@0: _LIT(KEComServerProcessName, "ecomserver"); sl@0: sl@0: /** sl@0: This enum is used to represent the rom build option i.e. NAND or default rom build sl@0: */ sl@0: enum TRomBuildOption sl@0: { sl@0: EDefaultRomBuild, sl@0: ENandRomBuild sl@0: }; sl@0: sl@0: /** sl@0: Enum type to represent possible configurations of the hardware running the tests sl@0: */ sl@0: enum THardwareConfiguration sl@0: { sl@0: EPlatformWINSCW, sl@0: EPlatformH2RAM, sl@0: EPlatformH2NAND, sl@0: EPlatformH2NANDDP, sl@0: EPlatformH4RAM, sl@0: EPlatformH4MMC,//New hardware configuration for WDP enabled ROM on H4 sl@0: EPlatformH4NAND, sl@0: EPlatformH4NANDDP, sl@0: EPlatformH6RAM, sl@0: EPlatformH6NAND, sl@0: EPlatformH6NANDDP, sl@0: EPlatformUnknown, sl@0: }; sl@0: sl@0: class EComTestUtils sl@0: { sl@0: public: sl@0: IMPORT_C static void FileManCopyFileL(const TDesC& anOld,const TDesC& aNew); sl@0: IMPORT_C static void FileManDeleteFileL(const TDesC& aFile); sl@0: IMPORT_C static void MakeFileWriteableL(const TDesC& aFile); sl@0: IMPORT_C static void MakeFileReadOnlyL(const TDesC& aFile); sl@0: IMPORT_C static void RfsDeleteFileL(const TDesC& aFile); sl@0: IMPORT_C static void RfsReplaceFileL(const TDesC& anOld,const TDesC& aNew); sl@0: IMPORT_C static void KillProcessL(const TDesC& aProcessName); sl@0: IMPORT_C static void FileManRenameL(const TDesC& anOld,const TDesC& aNew); sl@0: IMPORT_C static void FileManDeleteDirL(const TDesC& aPath); sl@0: IMPORT_C static void SwitchToLanguageL(TLanguage aLang); sl@0: IMPORT_C static void RLoaderDeleteFileL(const TDesC& aFile); sl@0: IMPORT_C static TRomBuildOption RomBuildType(const RFs& aRfs); sl@0: IMPORT_C static THardwareConfiguration GetHardwareConfiguration(); sl@0: }; sl@0: sl@0: inline void KillEComServerL(RTest &aRTest) sl@0: { sl@0: aRTest.Printf(_L("Killing ECOM Server, waiting 1s...\n")); sl@0: TRAPD(err, EComTestUtils::KillProcessL(KEComServerProcessName)); sl@0: if ((err != KErrNone) && (err != KErrNotFound)) sl@0: User::Leave(err); sl@0: // Precaution delay, give the system a chance to settle afterwards sl@0: WAIT_FOR1s; sl@0: } sl@0: #define ECOMTU_KILL_SERVER_L(rt) KillEComServerL((rt)) sl@0: sl@0: sl@0: inline void Validate(RTest& aRTest, TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected integer/error: %d, got: %d\r\n"), aExpected, aValue); sl@0: aRTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: #define TESTC(aRTest, aValue, aExpected) ::Validate(aRTest, aValue, aExpected, __LINE__) sl@0: sl@0: sl@0: #endif sl@0: