1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestUtils.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,112 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Helper class for ECom test code. Allows various file manipulation operations
1.18 +// that require higher Capabilities than shoud be given to test harnesses.
1.19 +//
1.20 +//
1.21 +
1.22 +
1.23 +#ifndef __ECOMTESTUTILS_H__
1.24 +#define __ECOMTESTUTILS_H__
1.25 +
1.26 +#include <e32test.h>
1.27 +
1.28 +// System includes
1.29 +#include <f32file.h>
1.30 +
1.31 +// Wait or sleep macros for current thread
1.32 +#define WAIT_FOR1s User::After(1000000)
1.33 +#define WAIT_FOR3s User::After(3000000)
1.34 +#define WAIT_FOR5s User::After(5000000)
1.35 +
1.36 +// Common ECOM Server strings
1.37 +_LIT(KEComZDriveDatFile, "C:\\private\\10009D8F\\ECom.ROM.Z.dat");
1.38 +_LIT(KEComCDriveDatFile, "C:\\private\\10009D8F\\ECom.dat");
1.39 +_LIT(KEComEDriveDatFile, "E:\\private\\10009D8F\\ECom.dat");
1.40 +
1.41 +
1.42 +_LIT(KEComServerProcessName, "ecomserver");
1.43 +
1.44 +/**
1.45 +This enum is used to represent the rom build option i.e. NAND or default rom build
1.46 +*/
1.47 +enum TRomBuildOption
1.48 +{
1.49 + EDefaultRomBuild,
1.50 + ENandRomBuild
1.51 +};
1.52 +
1.53 +/**
1.54 +Enum type to represent possible configurations of the hardware running the tests
1.55 +*/
1.56 +enum THardwareConfiguration
1.57 +{
1.58 + EPlatformWINSCW,
1.59 + EPlatformH2RAM,
1.60 + EPlatformH2NAND,
1.61 + EPlatformH2NANDDP,
1.62 + EPlatformH4RAM,
1.63 + EPlatformH4MMC,//New hardware configuration for WDP enabled ROM on H4
1.64 + EPlatformH4NAND,
1.65 + EPlatformH4NANDDP,
1.66 + EPlatformH6RAM,
1.67 + EPlatformH6NAND,
1.68 + EPlatformH6NANDDP,
1.69 + EPlatformUnknown,
1.70 +};
1.71 +
1.72 +class EComTestUtils
1.73 + {
1.74 +public:
1.75 + IMPORT_C static void FileManCopyFileL(const TDesC& anOld,const TDesC& aNew);
1.76 + IMPORT_C static void FileManDeleteFileL(const TDesC& aFile);
1.77 + IMPORT_C static void MakeFileWriteableL(const TDesC& aFile);
1.78 + IMPORT_C static void MakeFileReadOnlyL(const TDesC& aFile);
1.79 + IMPORT_C static void RfsDeleteFileL(const TDesC& aFile);
1.80 + IMPORT_C static void RfsReplaceFileL(const TDesC& anOld,const TDesC& aNew);
1.81 + IMPORT_C static void KillProcessL(const TDesC& aProcessName);
1.82 + IMPORT_C static void FileManRenameL(const TDesC& anOld,const TDesC& aNew);
1.83 + IMPORT_C static void FileManDeleteDirL(const TDesC& aPath);
1.84 + IMPORT_C static void SwitchToLanguageL(TLanguage aLang);
1.85 + IMPORT_C static void RLoaderDeleteFileL(const TDesC& aFile);
1.86 + IMPORT_C static TRomBuildOption RomBuildType(const RFs& aRfs);
1.87 + IMPORT_C static THardwareConfiguration GetHardwareConfiguration();
1.88 + };
1.89 +
1.90 +inline void KillEComServerL(RTest &aRTest)
1.91 + {
1.92 + aRTest.Printf(_L("Killing ECOM Server, waiting 1s...\n"));
1.93 + TRAPD(err, EComTestUtils::KillProcessL(KEComServerProcessName));
1.94 + if ((err != KErrNone) && (err != KErrNotFound))
1.95 + User::Leave(err);
1.96 + // Precaution delay, give the system a chance to settle afterwards
1.97 + WAIT_FOR1s;
1.98 + }
1.99 +#define ECOMTU_KILL_SERVER_L(rt) KillEComServerL((rt))
1.100 +
1.101 +
1.102 +inline void Validate(RTest& aRTest, TInt aValue, TInt aExpected, TInt aLine)
1.103 + {
1.104 + if(aValue != aExpected)
1.105 + {
1.106 + RDebug::Print(_L("*** Expected integer/error: %d, got: %d\r\n"), aExpected, aValue);
1.107 + aRTest(EFalse, aLine);
1.108 + }
1.109 + }
1.110 +
1.111 +#define TESTC(aRTest, aValue, aExpected) ::Validate(aRTest, aValue, aExpected, __LINE__)
1.112 +
1.113 +
1.114 +#endif
1.115 +