os/ossrv/genericservices/systemagent/test/rtest/t_initialisehal/t_initialisehal.cpp
Update contrib.
1 // Copyright (c) 2006-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 // For testing initialise HAL :
30 _LIT(KHALSettingsExeName, "HALSettings.exe");
31 _LIT(KInitialiseLocaleExeName, "InitialiseLocale.exe");
33 // Symbian VendorID as specified in
34 // "Platform security engineering guide" Section 2.1.3.2
35 const TVendorId KSymbianVendorId(0x70000001);
37 #define TEST(arg) ::Check((arg), __LINE__)
38 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
40 //Number of sample used
42 LOCAL_D RTest TheTest (_L ("T_InitialiseHAL"));
44 LOCAL_C void Check(TInt aValue, TInt aLine)
48 TheTest(EFalse, aLine);
52 LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
54 if(aValue != aExpected)
56 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
57 TheTest(EFalse, aLine);
62 * This function will start HALSettings.exe with invalid argument and wait for finish
63 * It is used for base line performance overhead
68 //With command line length more than 10 HALSettings.exe returns
69 //immediately with error KErrArgument, Used to baseline
70 //performance overhead to run an empty exe
71 TEST2(process.Create(KHALSettingsExeName,_L("Length is more than ten")),KErrNone);
72 TRequestStatus status;
73 process.Logon(status);
75 User::WaitForRequest(status);
76 TInt exitReason = process.ExitReason();
82 * Initialise HAL settings from HAL.DAT
83 * This test will start the HALSettings.exe and wait to finish
85 TInt TestInitialiseHALWaitL()
88 TEST2(process.Create(KHALSettingsExeName, _L("INITIALISE")),KErrNone);
89 TRequestStatus status;
90 process.Logon(status);
92 User::WaitForRequest(status);
93 TInt exitReason = process.ExitReason();
99 * Persist HAL settings to HAL.DAT
100 * It will create a new HAL.DAT
102 TInt TestPersistHALWaitL()
105 TEST2(process.Create(KHALSettingsExeName, _L("PERSIST")),KErrNone);
106 TRequestStatus status;
107 process.Logon(status);
109 User::WaitForRequest(status);
110 TInt exitReason = process.ExitReason();
116 //===================================================================
118 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1712
119 @SYMTestCaseDesc Initialise HAL settings With wrong commandline
120 @SYMTestPriority Medium
121 @SYMTestActions Start HALSettings.exe and returns KErrArgument
122 @SYMTestExpectedResults Tests must not fail
123 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
125 void TestInitialiseHALWrongParameterL()
127 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1712 Try to Initialise With wrong commandline "));
129 TEST2(process.Create(KHALSettingsExeName, _L("ABCD")),KErrNone);
130 TRequestStatus status;
131 process.Logon(status);
133 User::WaitForRequest(status);
134 TInt exitReason = process.ExitReason();
136 TEST2(exitReason, KErrArgument);
140 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1713
141 @SYMTestCaseDesc Missing HAL.DAT File
142 @SYMTestPriority Medium
143 @SYMTestActions This function first delete hal.dat and then try to initialise HAL
144 @SYMTestExpectedResults Tests must not fail
145 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
147 void TestHALFileMissingL()
149 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1713 HAL.DAT file missing "));
150 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
153 TInt err = BaflUtils::DeleteFile(fs,KFileName);
154 if(err == KErrNone || err == KErrNotFound )
156 TEST2(TestInitialiseHALWaitL(),KErrNotFound);
162 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1724
163 @SYMTestCaseDesc No Access HAL.DAT File
164 @SYMTestPriority Medium
165 @SYMTestActions This function first open hal.dat and then try to initialise HAL
166 @SYMTestExpectedResults Tests must not fail
167 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
169 void TestHALFileNoAccessL()
171 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1724 HAL.DAT No Access "));
173 TEST2(TestPersistHALWaitL(),KErrNone);
174 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
178 TInt err = file.Open(fs,KFileName,EFileShareExclusive);
181 TEST2(TestInitialiseHALWaitL(),KErrInUse);
188 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1714
189 @SYMTestCaseDesc HAL.DAT File is Empty
190 @SYMTestPriority Medium
191 @SYMTestActions This function first create an empty hal.dat and then try to initialise HAL
192 @SYMTestExpectedResults Tests must not fail
193 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
195 void TestHALFileEmptyL()
197 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1714 HAL.DAT file Empty "));
198 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
202 TInt err = file.Replace(fs,KFileName,EFileRead);
207 TEST2(TestInitialiseHALWaitL(), KErrCorrupt);
213 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1715
214 @SYMTestCaseDesc Wrong Header
215 @SYMTestPriority Medium
216 @SYMTestActions This function first corrupt hal.dat by adding wrong header and then
217 try to initialise HAL
218 @SYMTestExpectedResults Tests must not fail
219 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
221 void TestHALFileWrongHeaderL()
223 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1715 HAL.DAT wrong header "));
224 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
228 TInt err = file.Replace(fs,KFileName,EFileRead| EFileWrite);
230 //write data in multiples of 8 otherwise it will not pass the check (size&7) == 0
231 file.Write(_L8("abcdefghijklmnop"));
238 TEST2(TestInitialiseHALWaitL(), KErrCorrupt);
243 //======================================================================================
245 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1718
246 @SYMTestCaseDesc Performance Test Initialise with file
247 @SYMTestPriority Medium
248 @SYMTestActions Initialise HAL settings with HAL.DAT present
249 @SYMTestExpectedResults Tests must not fail
250 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
252 void TestPerformanceInitialiseWithFileL()
254 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1718 Performance Test for initialise hal.dat present "));
256 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
259 //to create hal.dat if it is not there
260 TEST2(TestPersistHALWaitL(),KErrNone);
261 TEST(BaflUtils::FileExists(fs,KFileName));
263 HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
264 TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
268 prevTime = User::FastCounter();
269 TInt noSuccessfulSamples=0;
270 for(;noSuccessfulSamples < noSample; ++noSuccessfulSamples)
272 if(TestInitialiseHALWaitL() != KErrNone)
274 break; //Stop performing the tests, calculate average with no of successful Samples.
278 TEST(noSuccessfulSamples >0);
279 timeDiff = User::FastCounter() - prevTime;
280 TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
281 TheTest.Printf(_L("Time to Initialise HAL (with file) = %10.2lf microseconds\n"), fsSessionMicroSecs);
285 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1719
286 @SYMTestCaseDesc Performance Test Initialise with no file
287 @SYMTestPriority Medium
288 @SYMTestActions Initialise HAL settings with no HAL.DAT present
289 @SYMTestExpectedResults Tests must not fail
290 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
292 void TestPerformanceInitialiseNoFileL()
294 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1719 Performance Test for initialise with out hal.dat "));
296 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
300 //Delete the File if it exists
301 if(BaflUtils::FileExists(fs,KFileName))
303 TEST2(BaflUtils::DeleteFile(fs,KFileName),KErrNone);
306 HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
307 TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
310 prevTime = User::FastCounter();
311 TInt noSuccessfulSamples=0;
312 for(;noSuccessfulSamples < noSample; ++noSuccessfulSamples)
314 if ( TestInitialiseHALWaitL() !=KErrNotFound)
320 TEST(noSuccessfulSamples >0);
321 timeDiff = User::FastCounter() - prevTime;
322 TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
323 TheTest.Printf(_L("Time to Initialise HAL (no file) = %10.2lf microseconds\n"), fsSessionMicroSecs);
328 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1720
329 @SYMTestCaseDesc Performance Test Base Line
330 @SYMTestPriority Medium
331 @SYMTestActions Measure the performance to run empty exe
332 @SYMTestExpectedResults Tests must not fail
333 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
335 void PerformanceBaseLineL()
337 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1720 Performance Test of empty EXE "));
340 HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
341 TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
345 prevTime = User::FastCounter();
346 TInt noSuccessfulSamples=0;
347 for(;noSuccessfulSamples<noSample; ++noSuccessfulSamples)
349 if (StartEmptyExeL() != KErrArgument)
355 TEST(noSuccessfulSamples >0);
356 timeDiff = User::FastCounter() - prevTime;
357 TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
358 TheTest.Printf(_L("Time to run Empty EXE = %10.2lf microseconds\n"), fsSessionMicroSecs);
364 @SYMTestCaseID SYSLIB-SYSAGENT2-UT-3385
365 @SYMTestCaseDesc Checking the HAL.DAT filesize is not too big
366 @SYMTestPriority Medium
367 @SYMTestActions Initialise HAL settings with HAL.DAT padded past the reasonable threshold
368 @SYMTestExpectedResults Call to initialise HAL settings should return with KErrCorrupt
369 @SYMDEF PDEF101743: A small possibility for halsettings.exe to go infinite loop while initializing
372 void TestHALDataSizeMismatchL()
374 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-SYSAGENT2-UT-3385 HAL.DAT size mismatch "));
375 TInt err = BaflUtils::PersistHAL();
376 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
383 err = file.Open(fs,KFileName,EFileRead | EFileWrite);
384 // Want to add junk onto the end of the file, preserving the valid header
385 err = file.Seek(ESeekEnd, pos);
387 //write data in multiples of 8 otherwise it will not pass the check (size&7) == 0
388 for (TInt i = 0; i < 400; i++)
390 file.Write(_L8("junkjunkjunkjunk"));
397 TInt result = TestInitialiseHALWaitL();
398 TEST2(result, KErrCorrupt);
400 err = fs.Delete(KFileName);
405 @SYMTestCaseID SYSLIB-SYSAGENT2-UT-4001
406 @SYMTestCaseDesc system clock change is persisted to hal.dat
407 @SYMTestPriority Medium
408 @SYMTestActions 1. delete the hal file.
409 2. change system time
410 3. pause a few seconds and check if the hal file get created.
411 @SYMTestExpectedResults At step 1 hal.dat is deleted (or KErrNotFound).
412 At step 3 hal.dat is created.
415 void TestTimeChangesDEF115375()
420 TheTest.Next (_L ("TestTimeChangesDEF115375"));
421 _LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
423 TEST2(process.Create(KInitialiseLocaleExeName, KNullDesC),KErrNone);
426 process.Rendezvous(stat);
427 process.Resume(); // Start the process going
428 //wait for the locale initialisation to complete first before testing
429 User::WaitForRequest(stat);
430 TEST2((stat.Int()==KErrNone)||(stat.Int()==KErrAlreadyExists),ETrue);
435 //Delete the File if it exists
436 if(BaflUtils::FileExists(fs,KFileName))
438 TEST2(BaflUtils::DeleteFile(fs,KFileName),KErrNone);
441 time.UniversalTime();
442 time+=TTimeIntervalMinutes(30);
443 TInt r=User::SetUTCTime(time);
446 User::After(1000000);
447 TEST(BaflUtils::FileExists(fs,KFileName));
451 User::After(1000000);
455 @SYMTestCaseID SYSLIB-SYSAGENT2-UT-4002
456 @SYMTestCaseDesc Check that the VendorID is set to 0x70000001 (Symbian's VendorID)
457 @SYMTestPriority Medium
458 @SYMTestActions 1. Create a process for HALSettings.exe
459 2. Compare the processes VID against the expected VID (0x70000001)
460 @SYMTestExpectedResults The VIDs should be identical and so the test will pass.
463 void TestVendorIdINC121402()
465 TheTest.Next (_L ("TestVendorIDINC121402"));
468 TEST2(process.Create(KHALSettingsExeName, _L("INITIALISE")), KErrNone);
470 // Test that the VendorID of HALSettings.exe is set to the Symbian VendorID
471 TEST2(KSymbianVendorId.iId, process.VendorId().iId);
476 LOCAL_C void RunTestsL()
480 TEST2(TestPersistHALWaitL(),KErrNone);
482 TEST2(TestInitialiseHALWaitL(),KErrNone);
483 TestHALFileWrongHeaderL();
485 TestHALFileMissingL();
486 TestInitialiseHALWrongParameterL();
487 TestHALFileNoAccessL();
488 TestTimeChangesDEF115375();
489 TestVendorIdINC121402();
491 PerformanceBaseLineL();
492 TestPerformanceInitialiseWithFileL();
493 TestPerformanceInitialiseNoFileL();
494 TestHALDataSizeMismatchL();
497 GLDEF_C TInt E32Main()
501 TheTest.Start (_L ("HAL Initialise test"));
502 CTrapCleanup* tc = CTrapCleanup::New();
504 TRAPD(err, ::RunTestsL());