Update contrib.
1 // Copyright (c) 2004-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 // Helper class for ECom test code. Allows various file manipulation operations
15 // that require higher Capabilities than shoud be given to test harnesses.
19 #include "EcomTestUtils.h"
23 _LIT(KEcomTestUtilsHelperPanic, "EComTestUtilsHelperPanic");
24 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
25 const TInt KMAxProcessNameLength = 50; // Max process name length.
27 // Processes with high Capablilities to perform restricted operations.
28 _LIT(KProcessMakeWriteable, "t_makefilewriteable");
29 _LIT(KProcessMakeReadOnly, "t_makefilereadonly");
30 _LIT(KProcessFileManDeleteFile, "t_processfilemandeletefile.exe");
31 _LIT(KProcessFileManCopyFile, "t_processfilemancopyfile.exe");
32 _LIT(KProcessFileManRename, "t_processfilemanrename.exe");
33 _LIT(KProcessRfsDeleteFile, "t_processrfsdeletefile.exe");
34 _LIT(KProcessRfsReplaceFile, "t_processrfsreplacefile.exe");
35 _LIT(KProcessKillProcess, "t_processkillprocess.exe");
36 _LIT(KProcessFileManDeleteDir, "t_processfilemandeletedir.exe");
37 _LIT(KProcessRLoaderDeleteFile, "t_processrloaderdeletefile.exe");
39 /** Name format for locale DLLs. */
40 _LIT(KLocaleDLLNameFormat, "ELOCL.%02d");
43 // Start the high capability helper process
44 void LaunchProcessL(const TDesC& aProcessName, const TDesC& aCmdLine)
48 User::LeaveIfError(p.Create(aProcessName, aCmdLine));
50 // Asynchronous logon: completes when process terminates with process
54 User::WaitForRequest(stat);
56 TExitType exitType = p.ExitType();
57 TInt exitReason = p.ExitReason();
58 __ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KEcomTestUtilsHelperPanic, exitReason));
61 User::LeaveIfError(exitReason);
67 EXPORT_C void EComTestUtils::FileManCopyFileL(const TDesC& anOld,const TDesC& aNew)
69 TBuf<KMaxFileName*2> fileNames(anOld);
70 fileNames.Append(KSeparator);
71 fileNames.Append(aNew);
72 TBufC<KMAxProcessNameLength> copyProcess(KProcessFileManCopyFile);
73 LaunchProcessL(copyProcess, fileNames);
76 EXPORT_C void EComTestUtils::FileManDeleteFileL(const TDesC& aFile)
78 TBufC<KMAxProcessNameLength> deleteProcess(KProcessFileManDeleteFile);
79 LaunchProcessL(deleteProcess, aFile);
82 EXPORT_C void EComTestUtils::FileManRenameL(const TDesC& anOld,const TDesC& aNew)
84 TBuf<KMaxFileName*2> fileNames(anOld);
85 fileNames.Append(KSeparator);
86 fileNames.Append(aNew);
87 TBufC<KMAxProcessNameLength> renameProcess(KProcessFileManRename);
88 LaunchProcessL(renameProcess, fileNames);
91 EXPORT_C void EComTestUtils::FileManDeleteDirL(const TDesC& aPath)
93 TBufC<KMAxProcessNameLength> deleteDirProcess(KProcessFileManDeleteDir);
94 LaunchProcessL(deleteDirProcess, aPath);
100 EXPORT_C void EComTestUtils::RfsDeleteFileL(const TDesC& aFile)
102 TBufC<KMAxProcessNameLength> deleteProcess(KProcessRfsDeleteFile);
103 LaunchProcessL(deleteProcess, aFile);
106 EXPORT_C void EComTestUtils::RfsReplaceFileL(const TDesC& anOld,const TDesC& aNew)
108 TBuf<KMaxFileName*2> fileNames(anOld);
109 fileNames.Append(KSeparator);
110 fileNames.Append(aNew);
111 TBufC<KMAxProcessNameLength> replaceProcess(KProcessRfsReplaceFile);
112 LaunchProcessL(replaceProcess, fileNames);
116 EXPORT_C void EComTestUtils::MakeFileWriteableL(const TDesC& aFile)
118 TBufC<KMAxProcessNameLength> makeWriteable(KProcessMakeWriteable);
119 LaunchProcessL(makeWriteable, aFile);
122 EXPORT_C void EComTestUtils::MakeFileReadOnlyL(const TDesC& aFile)
124 TBufC<KMAxProcessNameLength> makeReadOnly(KProcessMakeReadOnly);
125 LaunchProcessL(makeReadOnly, aFile);
128 EXPORT_C void EComTestUtils::KillProcessL(const TDesC& aProcessName)
130 TBuf<KMAxProcessNameLength> killProcess(KProcessKillProcess);
131 LaunchProcessL(killProcess, aProcessName);
136 Switch the current locale to the given language.
137 @param aLang The language to switch to.
138 @leave KErrNotFound If locale DLL corresponding to the language cannot be found.
140 EXPORT_C void EComTestUtils::SwitchToLanguageL(TLanguage aLang)
143 TBuf<50> libraryName;
144 libraryName.Format(KLocaleDLLNameFormat,aLang);
145 User::LeaveIfError(library.Load(libraryName));
146 CleanupClosePushL(library);
147 User::LeaveIfError(UserSvr::ChangeLocale(libraryName));
148 CleanupStack::PopAndDestroy(); // library
153 Ask the loader to delete an file. This function should be used instead
154 of RFs::Delete where the supplied file may be a paged executable, although
155 it can be used for any file.
156 @param aFile The file to be deleted
157 @leave KErrBadName If the supplied filename is not fully qualified. Else any of the Symbian OS error code
159 EXPORT_C void EComTestUtils::RLoaderDeleteFileL(const TDesC& aFile)
161 TBufC<KMAxProcessNameLength> deleteTheProcess(KProcessRLoaderDeleteFile);
162 LaunchProcessL(deleteTheProcess, aFile);
166 Get Rom Build Type i.e. NAND or Default Rom build.
167 This function is created since in some test one needs to find if its a
168 NAND or a Non-Nand build. It returns enum "TRomBuildOption" that states the rom build type.
169 Enum "TRomBuildOption" is defined so that this function can be enhanced for a new Rom build type
170 @param aRfs Input Parameter RFs reference is passed so that we don't need to
171 connect to the file server again.
173 EXPORT_C TRomBuildOption EComTestUtils::RomBuildType(const RFs& aRfs)
176 TRomBuildOption romBuildOption;
177 TDriveInfo driveInfo;
179 aRfs.Drive(driveInfo, EDriveC);
181 //C drive determines if its a NAND or a Non-NAND ROM build as per the
182 //H4-hrp-UserGuide, Thus CDrive's media type is checked if it is
183 //EMediaNANDFlash, EMediaRam or EMediaFlash...
184 //If it is EMediaRam or EMediaFlash it is considered as Default Rom Build.
185 if(driveInfo.iType==EMediaNANDFlash)
187 romBuildOption = ENandRomBuild;
191 romBuildOption = EDefaultRomBuild;
194 return romBuildOption;
198 Method is used to detect the hardware configuration of the platform running the tests,
199 including both machine UID and C-drive type.
201 EXPORT_C THardwareConfiguration EComTestUtils::GetHardwareConfiguration()
203 //get the platform type
205 if (KErrNone != HAL::Get(HAL::EMachineUid, muid))
207 return EPlatformUnknown;
210 //determine the ROM confguration (NAND or non-NAND)
218 TBool nandBuild = (EComTestUtils::RomBuildType(fs)==ENandRomBuild);
221 //determine whether this ROM is Demand-Paging enabled
222 TBool DP_rom = false;
225 TRomHeader* romHeader = (TRomHeader*)UserSvr::RomHeaderAddress();
226 DP_rom = romHeader->iPageableRomStart;
229 if (muid == HAL::EMachineUid_OmapH2)
233 return EPlatformH2RAM;
239 return EPlatformH2NANDDP;
243 return EPlatformH2NAND;
247 else if (muid == HAL::EMachineUid_OmapH4)
251 //Incase the ROM is not a nandBuild,
252 //then there could be a chance that it is a WDP enabled system.
253 //WDP enabled configuration is checked by checking for Media Type of C drive.
254 //Under WDP enabled configuration, the C drive is of type 'Hard Disk'
255 //This is done since the function EComTestUtils::RomBuildType, above, used for a similar purpose,
256 //is also checking the media type of C drive to determine the same.
257 //Currently added this check for WDP enabled in case of H4 'muid == HAL::EMachineUid_OmapH4' only
258 TDriveInfo driveInfo;
265 fs.Drive(driveInfo, EDriveC);
268 if (EMediaHardDisk == driveInfo.iType)
270 return EPlatformH4MMC; //The system is WDP enabled
273 return EPlatformH4RAM;
279 return EPlatformH4NANDDP;
283 return EPlatformH4NAND;
287 //For H6 board OMAP3430
288 else if (muid == HAL::EMachineUid_OmapH6)
292 return EPlatformH6RAM;
298 return EPlatformH6NANDDP;
302 return EPlatformH6NAND;
305 } // H6 board 3430 ends here
306 else if (muid == HAL::EMachineUid_Win32Emulator)
308 return EPlatformWINSCW;
312 return EPlatformUnknown;