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 |
#include "EcomTestUtils.h"
|
sl@0
|
20 |
#include "hal.h"
|
sl@0
|
21 |
#include <e32rom.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
_LIT(KEcomTestUtilsHelperPanic, "EComTestUtilsHelperPanic");
|
sl@0
|
24 |
_LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
|
sl@0
|
25 |
const TInt KMAxProcessNameLength = 50; // Max process name length.
|
sl@0
|
26 |
|
sl@0
|
27 |
// Processes with high Capablilities to perform restricted operations.
|
sl@0
|
28 |
_LIT(KProcessMakeWriteable, "t_makefilewriteable");
|
sl@0
|
29 |
_LIT(KProcessMakeReadOnly, "t_makefilereadonly");
|
sl@0
|
30 |
_LIT(KProcessFileManDeleteFile, "t_processfilemandeletefile.exe");
|
sl@0
|
31 |
_LIT(KProcessFileManCopyFile, "t_processfilemancopyfile.exe");
|
sl@0
|
32 |
_LIT(KProcessFileManRename, "t_processfilemanrename.exe");
|
sl@0
|
33 |
_LIT(KProcessRfsDeleteFile, "t_processrfsdeletefile.exe");
|
sl@0
|
34 |
_LIT(KProcessRfsReplaceFile, "t_processrfsreplacefile.exe");
|
sl@0
|
35 |
_LIT(KProcessKillProcess, "t_processkillprocess.exe");
|
sl@0
|
36 |
_LIT(KProcessFileManDeleteDir, "t_processfilemandeletedir.exe");
|
sl@0
|
37 |
_LIT(KProcessRLoaderDeleteFile, "t_processrloaderdeletefile.exe");
|
sl@0
|
38 |
|
sl@0
|
39 |
/** Name format for locale DLLs. */
|
sl@0
|
40 |
_LIT(KLocaleDLLNameFormat, "ELOCL.%02d");
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
// Start the high capability helper process
|
sl@0
|
44 |
void LaunchProcessL(const TDesC& aProcessName, const TDesC& aCmdLine)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
TRequestStatus stat;
|
sl@0
|
47 |
RProcess p;
|
sl@0
|
48 |
User::LeaveIfError(p.Create(aProcessName, aCmdLine));
|
sl@0
|
49 |
|
sl@0
|
50 |
// Asynchronous logon: completes when process terminates with process
|
sl@0
|
51 |
// exit code
|
sl@0
|
52 |
p.Logon(stat);
|
sl@0
|
53 |
p.Resume();
|
sl@0
|
54 |
User::WaitForRequest(stat);
|
sl@0
|
55 |
|
sl@0
|
56 |
TExitType exitType = p.ExitType();
|
sl@0
|
57 |
TInt exitReason = p.ExitReason();
|
sl@0
|
58 |
__ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KEcomTestUtilsHelperPanic, exitReason));
|
sl@0
|
59 |
|
sl@0
|
60 |
p.Close();
|
sl@0
|
61 |
User::LeaveIfError(exitReason);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
CFileMan
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
EXPORT_C void EComTestUtils::FileManCopyFileL(const TDesC& anOld,const TDesC& aNew)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
TBuf<KMaxFileName*2> fileNames(anOld);
|
sl@0
|
70 |
fileNames.Append(KSeparator);
|
sl@0
|
71 |
fileNames.Append(aNew);
|
sl@0
|
72 |
TBufC<KMAxProcessNameLength> copyProcess(KProcessFileManCopyFile);
|
sl@0
|
73 |
LaunchProcessL(copyProcess, fileNames);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
EXPORT_C void EComTestUtils::FileManDeleteFileL(const TDesC& aFile)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TBufC<KMAxProcessNameLength> deleteProcess(KProcessFileManDeleteFile);
|
sl@0
|
79 |
LaunchProcessL(deleteProcess, aFile);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
EXPORT_C void EComTestUtils::FileManRenameL(const TDesC& anOld,const TDesC& aNew)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TBuf<KMaxFileName*2> fileNames(anOld);
|
sl@0
|
85 |
fileNames.Append(KSeparator);
|
sl@0
|
86 |
fileNames.Append(aNew);
|
sl@0
|
87 |
TBufC<KMAxProcessNameLength> renameProcess(KProcessFileManRename);
|
sl@0
|
88 |
LaunchProcessL(renameProcess, fileNames);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C void EComTestUtils::FileManDeleteDirL(const TDesC& aPath)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
TBufC<KMAxProcessNameLength> deleteDirProcess(KProcessFileManDeleteDir);
|
sl@0
|
94 |
LaunchProcessL(deleteDirProcess, aPath);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
RFs
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
EXPORT_C void EComTestUtils::RfsDeleteFileL(const TDesC& aFile)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
TBufC<KMAxProcessNameLength> deleteProcess(KProcessRfsDeleteFile);
|
sl@0
|
103 |
LaunchProcessL(deleteProcess, aFile);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
EXPORT_C void EComTestUtils::RfsReplaceFileL(const TDesC& anOld,const TDesC& aNew)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
TBuf<KMaxFileName*2> fileNames(anOld);
|
sl@0
|
109 |
fileNames.Append(KSeparator);
|
sl@0
|
110 |
fileNames.Append(aNew);
|
sl@0
|
111 |
TBufC<KMAxProcessNameLength> replaceProcess(KProcessRfsReplaceFile);
|
sl@0
|
112 |
LaunchProcessL(replaceProcess, fileNames);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
|
sl@0
|
116 |
EXPORT_C void EComTestUtils::MakeFileWriteableL(const TDesC& aFile)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
TBufC<KMAxProcessNameLength> makeWriteable(KProcessMakeWriteable);
|
sl@0
|
119 |
LaunchProcessL(makeWriteable, aFile);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
EXPORT_C void EComTestUtils::MakeFileReadOnlyL(const TDesC& aFile)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
TBufC<KMAxProcessNameLength> makeReadOnly(KProcessMakeReadOnly);
|
sl@0
|
125 |
LaunchProcessL(makeReadOnly, aFile);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
EXPORT_C void EComTestUtils::KillProcessL(const TDesC& aProcessName)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
TBuf<KMAxProcessNameLength> killProcess(KProcessKillProcess);
|
sl@0
|
131 |
LaunchProcessL(killProcess, aProcessName);
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
Switch the current locale to the given language.
|
sl@0
|
137 |
@param aLang The language to switch to.
|
sl@0
|
138 |
@leave KErrNotFound If locale DLL corresponding to the language cannot be found.
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
EXPORT_C void EComTestUtils::SwitchToLanguageL(TLanguage aLang)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
RLibrary library;
|
sl@0
|
143 |
TBuf<50> libraryName;
|
sl@0
|
144 |
libraryName.Format(KLocaleDLLNameFormat,aLang);
|
sl@0
|
145 |
User::LeaveIfError(library.Load(libraryName));
|
sl@0
|
146 |
CleanupClosePushL(library);
|
sl@0
|
147 |
User::LeaveIfError(UserSvr::ChangeLocale(libraryName));
|
sl@0
|
148 |
CleanupStack::PopAndDestroy(); // library
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
Ask the loader to delete an file. This function should be used instead
|
sl@0
|
154 |
of RFs::Delete where the supplied file may be a paged executable, although
|
sl@0
|
155 |
it can be used for any file.
|
sl@0
|
156 |
@param aFile The file to be deleted
|
sl@0
|
157 |
@leave KErrBadName If the supplied filename is not fully qualified. Else any of the Symbian OS error code
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
EXPORT_C void EComTestUtils::RLoaderDeleteFileL(const TDesC& aFile)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
TBufC<KMAxProcessNameLength> deleteTheProcess(KProcessRLoaderDeleteFile);
|
sl@0
|
162 |
LaunchProcessL(deleteTheProcess, aFile);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
/**
|
sl@0
|
166 |
Get Rom Build Type i.e. NAND or Default Rom build.
|
sl@0
|
167 |
This function is created since in some test one needs to find if its a
|
sl@0
|
168 |
NAND or a Non-Nand build. It returns enum "TRomBuildOption" that states the rom build type.
|
sl@0
|
169 |
Enum "TRomBuildOption" is defined so that this function can be enhanced for a new Rom build type
|
sl@0
|
170 |
@param aRfs Input Parameter RFs reference is passed so that we don't need to
|
sl@0
|
171 |
connect to the file server again.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
EXPORT_C TRomBuildOption EComTestUtils::RomBuildType(const RFs& aRfs)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
|
sl@0
|
176 |
TRomBuildOption romBuildOption;
|
sl@0
|
177 |
TDriveInfo driveInfo;
|
sl@0
|
178 |
|
sl@0
|
179 |
aRfs.Drive(driveInfo, EDriveC);
|
sl@0
|
180 |
|
sl@0
|
181 |
//C drive determines if its a NAND or a Non-NAND ROM build as per the
|
sl@0
|
182 |
//H4-hrp-UserGuide, Thus CDrive's media type is checked if it is
|
sl@0
|
183 |
//EMediaNANDFlash, EMediaRam or EMediaFlash...
|
sl@0
|
184 |
//If it is EMediaRam or EMediaFlash it is considered as Default Rom Build.
|
sl@0
|
185 |
if(driveInfo.iType==EMediaNANDFlash)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
romBuildOption = ENandRomBuild;
|
sl@0
|
188 |
}
|
sl@0
|
189 |
else
|
sl@0
|
190 |
{
|
sl@0
|
191 |
romBuildOption = EDefaultRomBuild;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
return romBuildOption;
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
/*
|
sl@0
|
198 |
Method is used to detect the hardware configuration of the platform running the tests,
|
sl@0
|
199 |
including both machine UID and C-drive type.
|
sl@0
|
200 |
*/
|
sl@0
|
201 |
EXPORT_C THardwareConfiguration EComTestUtils::GetHardwareConfiguration()
|
sl@0
|
202 |
{
|
sl@0
|
203 |
//get the platform type
|
sl@0
|
204 |
TInt muid;
|
sl@0
|
205 |
if (KErrNone != HAL::Get(HAL::EMachineUid, muid))
|
sl@0
|
206 |
{
|
sl@0
|
207 |
return EPlatformUnknown;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
//determine the ROM confguration (NAND or non-NAND)
|
sl@0
|
211 |
TInt r = KErrNone;
|
sl@0
|
212 |
RFs fs;
|
sl@0
|
213 |
r = fs.Connect();
|
sl@0
|
214 |
if (r != KErrNone)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
return r;
|
sl@0
|
217 |
}
|
sl@0
|
218 |
TBool nandBuild = (EComTestUtils::RomBuildType(fs)==ENandRomBuild);
|
sl@0
|
219 |
fs.Close();
|
sl@0
|
220 |
|
sl@0
|
221 |
//determine whether this ROM is Demand-Paging enabled
|
sl@0
|
222 |
TBool DP_rom = false;
|
sl@0
|
223 |
if (nandBuild)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
TRomHeader* romHeader = (TRomHeader*)UserSvr::RomHeaderAddress();
|
sl@0
|
226 |
DP_rom = romHeader->iPageableRomStart;
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
if (muid == HAL::EMachineUid_OmapH2)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
if (!nandBuild)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
return EPlatformH2RAM;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
else
|
sl@0
|
236 |
{
|
sl@0
|
237 |
if (DP_rom)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
return EPlatformH2NANDDP;
|
sl@0
|
240 |
}
|
sl@0
|
241 |
else
|
sl@0
|
242 |
{
|
sl@0
|
243 |
return EPlatformH2NAND;
|
sl@0
|
244 |
}
|
sl@0
|
245 |
}
|
sl@0
|
246 |
}
|
sl@0
|
247 |
else if (muid == HAL::EMachineUid_OmapH4)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
if (!nandBuild)
|
sl@0
|
250 |
{
|
sl@0
|
251 |
//Incase the ROM is not a nandBuild,
|
sl@0
|
252 |
//then there could be a chance that it is a WDP enabled system.
|
sl@0
|
253 |
//WDP enabled configuration is checked by checking for Media Type of C drive.
|
sl@0
|
254 |
//Under WDP enabled configuration, the C drive is of type 'Hard Disk'
|
sl@0
|
255 |
//This is done since the function EComTestUtils::RomBuildType, above, used for a similar purpose,
|
sl@0
|
256 |
//is also checking the media type of C drive to determine the same.
|
sl@0
|
257 |
//Currently added this check for WDP enabled in case of H4 'muid == HAL::EMachineUid_OmapH4' only
|
sl@0
|
258 |
TDriveInfo driveInfo;
|
sl@0
|
259 |
TInt rf = KErrNone;
|
sl@0
|
260 |
rf = fs.Connect();
|
sl@0
|
261 |
if (rf != KErrNone)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
return rf;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
fs.Drive(driveInfo, EDriveC);
|
sl@0
|
266 |
fs.Close();
|
sl@0
|
267 |
|
sl@0
|
268 |
if (EMediaHardDisk == driveInfo.iType)
|
sl@0
|
269 |
{
|
sl@0
|
270 |
return EPlatformH4MMC; //The system is WDP enabled
|
sl@0
|
271 |
}
|
sl@0
|
272 |
|
sl@0
|
273 |
return EPlatformH4RAM;
|
sl@0
|
274 |
}
|
sl@0
|
275 |
else
|
sl@0
|
276 |
{
|
sl@0
|
277 |
if (DP_rom)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
return EPlatformH4NANDDP;
|
sl@0
|
280 |
}
|
sl@0
|
281 |
else
|
sl@0
|
282 |
{
|
sl@0
|
283 |
return EPlatformH4NAND;
|
sl@0
|
284 |
}
|
sl@0
|
285 |
}
|
sl@0
|
286 |
}
|
sl@0
|
287 |
//For H6 board OMAP3430
|
sl@0
|
288 |
else if (muid == HAL::EMachineUid_OmapH6)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
if (!nandBuild)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
return EPlatformH6RAM;
|
sl@0
|
293 |
}
|
sl@0
|
294 |
else
|
sl@0
|
295 |
{
|
sl@0
|
296 |
if (DP_rom)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
return EPlatformH6NANDDP;
|
sl@0
|
299 |
}
|
sl@0
|
300 |
else
|
sl@0
|
301 |
{
|
sl@0
|
302 |
return EPlatformH6NAND;
|
sl@0
|
303 |
}
|
sl@0
|
304 |
}
|
sl@0
|
305 |
} // H6 board 3430 ends here
|
sl@0
|
306 |
else if (muid == HAL::EMachineUid_Win32Emulator)
|
sl@0
|
307 |
{
|
sl@0
|
308 |
return EPlatformWINSCW;
|
sl@0
|
309 |
}
|
sl@0
|
310 |
else
|
sl@0
|
311 |
{
|
sl@0
|
312 |
return EPlatformUnknown;
|
sl@0
|
313 |
}
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|