os/ossrv/genericservices/systemagent/test/rtest/t_initialisehal/t_initialisehal.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // For testing initialise HAL :
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21  @test
    22 */
    23 
    24 #include <e32base.h>
    25 #include <hal.h>
    26 #include <f32file.h>
    27 #include <bautils.h>
    28 #include <e32test.h>
    29 
    30 _LIT(KHALSettingsExeName, "HALSettings.exe");
    31 _LIT(KInitialiseLocaleExeName, "InitialiseLocale.exe");
    32 
    33 // Symbian VendorID as specified in 
    34 // "Platform security engineering guide" Section 2.1.3.2 
    35 const TVendorId KSymbianVendorId(0x70000001);
    36 
    37 #define TEST(arg) ::Check((arg), __LINE__)
    38 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    39 
    40 //Number of sample used
    41 TInt noSample = 25;
    42 LOCAL_D RTest 			TheTest (_L ("T_InitialiseHAL"));
    43 
    44 LOCAL_C  void Check(TInt aValue, TInt aLine)
    45 	{
    46 	if(!aValue)
    47 		{
    48 		TheTest(EFalse, aLine);
    49 		}
    50 	}
    51 
    52 LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
    53 	{
    54 	if(aValue != aExpected)
    55 		{
    56 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    57 		TheTest(EFalse, aLine);
    58 		}
    59 	}
    60 
    61 /**
    62  * This function will start HALSettings.exe with invalid argument and wait for finish
    63  * It is used for base line performance overhead
    64  */
    65 TInt StartEmptyExeL()
    66 	{
    67 	RProcess process;
    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);
    74 	process.Resume();
    75 	User::WaitForRequest(status);
    76 	TInt exitReason = process.ExitReason();
    77 	process.Close();
    78 	return exitReason;
    79 	}
    80 
    81 /**
    82  * Initialise HAL settings from HAL.DAT
    83  * This test will start the HALSettings.exe and wait to finish
    84  */
    85 TInt TestInitialiseHALWaitL()
    86 	{
    87 	RProcess process;
    88 	TEST2(process.Create(KHALSettingsExeName, _L("INITIALISE")),KErrNone);
    89 	TRequestStatus status;
    90 	process.Logon(status);
    91 	process.Resume();
    92 	User::WaitForRequest(status);
    93 	TInt exitReason = process.ExitReason();
    94 	process.Close();
    95 	return exitReason;
    96 	}
    97 
    98 /**
    99  * Persist HAL settings to HAL.DAT
   100  * It will create a new HAL.DAT
   101  */
   102 TInt TestPersistHALWaitL()
   103 	{
   104 	RProcess process;
   105 	TEST2(process.Create(KHALSettingsExeName, _L("PERSIST")),KErrNone);
   106 	TRequestStatus status;
   107 	process.Logon(status);
   108 	process.Resume();
   109 	User::WaitForRequest(status);
   110 	TInt exitReason = process.ExitReason();
   111 	process.Close();
   112 	return exitReason;
   113 	}
   114 
   115 //Tests
   116 //===================================================================
   117 /**
   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
   124 */
   125 void TestInitialiseHALWrongParameterL()
   126 	{
   127 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1712 Try to Initialise With wrong commandline "));
   128 	RProcess process;
   129 	TEST2(process.Create(KHALSettingsExeName, _L("ABCD")),KErrNone);
   130 	TRequestStatus status;
   131 	process.Logon(status);
   132 	process.Resume();
   133 	User::WaitForRequest(status);
   134 	TInt exitReason = process.ExitReason();
   135 	process.Close();
   136 	TEST2(exitReason, KErrArgument);
   137 	}
   138 
   139 /**
   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
   146 */
   147 void TestHALFileMissingL()
   148 	{
   149 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1713 HAL.DAT file missing "));
   150 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   151 	RFs fs;
   152 	fs.Connect();
   153 	TInt err = BaflUtils::DeleteFile(fs,KFileName);
   154 	if(err == KErrNone || err == KErrNotFound )
   155 		{
   156 		TEST2(TestInitialiseHALWaitL(),KErrNotFound);
   157 		}
   158 	fs.Close();
   159 	}
   160 
   161 /**
   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
   168 */
   169 void TestHALFileNoAccessL()
   170 	{
   171 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1724 HAL.DAT No Access "));
   172 	//To create hal.dat
   173  	TEST2(TestPersistHALWaitL(),KErrNone);
   174 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   175 	RFs fs;
   176 	fs.Connect();
   177 	RFile file;
   178 	TInt err = file.Open(fs,KFileName,EFileShareExclusive);
   179 	if(err == KErrNone )
   180 		{
   181 		TEST2(TestInitialiseHALWaitL(),KErrInUse);
   182 		}
   183 	file.Close();
   184 	fs.Close();
   185 	}
   186 
   187 /**
   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
   194 */
   195 void TestHALFileEmptyL()
   196 	{
   197 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1714 HAL.DAT file Empty "));
   198 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   199 	RFs fs;
   200 	fs.Connect();
   201 	RFile file;
   202 	TInt err = file.Replace(fs,KFileName,EFileRead);
   203 	file.Close();
   204 
   205 	if(err == KErrNone )
   206 		{
   207 		TEST2(TestInitialiseHALWaitL(), KErrCorrupt);
   208 		}
   209 	fs.Close();
   210 	}
   211 
   212 /**
   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
   220 */
   221 void TestHALFileWrongHeaderL()
   222 	{
   223 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1715 HAL.DAT wrong header "));
   224 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   225 	RFs fs;
   226 	fs.Connect();
   227 	RFile file;
   228 	TInt err = file.Replace(fs,KFileName,EFileRead| EFileWrite);
   229 
   230 	//write data in multiples of 8 otherwise it will not pass the check (size&7) == 0
   231 	file.Write(_L8("abcdefghijklmnop"));
   232 
   233 	file.Close();
   234 	fs.Close();
   235 
   236 	if(err == KErrNone )
   237 		{
   238 		TEST2(TestInitialiseHALWaitL(), KErrCorrupt);
   239 		}
   240 	}
   241 
   242 //Performance Tests
   243 //======================================================================================
   244 /**
   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
   251 */
   252 void TestPerformanceInitialiseWithFileL()
   253 	{
   254 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1718 Performance Test for initialise hal.dat present "));
   255 
   256 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   257 	RFs fs;
   258 	fs.Connect();
   259 	//to create hal.dat if it is not there
   260 	TEST2(TestPersistHALWaitL(),KErrNone);
   261 	TEST(BaflUtils::FileExists(fs,KFileName));
   262 	TInt fastTimerFreq;
   263 	HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
   264 	TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
   265 	TUint prevTime;
   266 	TUint timeDiff;
   267 
   268 	prevTime = User::FastCounter();
   269 	TInt noSuccessfulSamples=0;
   270 	for(;noSuccessfulSamples < noSample; ++noSuccessfulSamples)
   271 		{
   272 		if(TestInitialiseHALWaitL() != KErrNone)
   273 			{
   274 		  	break; //Stop performing the tests, calculate average with no of successful Samples.
   275 		  	}
   276 		//else continue;
   277 		}
   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);
   282 	fs.Close();
   283 	}
   284 /**
   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
   291 */
   292 void TestPerformanceInitialiseNoFileL()
   293 	{
   294 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1719 Performance Test for initialise with out hal.dat "));
   295 
   296 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   297 	RFs fs;
   298 	fs.Connect();
   299 
   300 	//Delete the File if it exists
   301 	if(BaflUtils::FileExists(fs,KFileName))
   302 		{
   303 		TEST2(BaflUtils::DeleteFile(fs,KFileName),KErrNone);
   304 		}
   305 	TInt fastTimerFreq;
   306 	HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
   307 	TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
   308 	TUint prevTime;
   309 	TUint timeDiff;
   310 	prevTime = User::FastCounter();
   311 	TInt noSuccessfulSamples=0;
   312 	for(;noSuccessfulSamples < noSample; ++noSuccessfulSamples)
   313 		{
   314 		if ( TestInitialiseHALWaitL() !=KErrNotFound)
   315 			{
   316 	 	    break;
   317 			}
   318 		//else continue;
   319 		}
   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);
   324 	fs.Close();
   325 	}
   326 
   327 /**
   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
   334 */
   335 void PerformanceBaseLineL()
   336 	{
   337 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1720 Performance Test of empty EXE "));
   338 
   339 	TInt fastTimerFreq;
   340 	HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
   341 	TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
   342 	TUint prevTime;
   343 	TUint timeDiff;
   344 
   345 	prevTime = User::FastCounter();
   346 	TInt noSuccessfulSamples=0;
   347 	for(;noSuccessfulSamples<noSample; ++noSuccessfulSamples)
   348 		{
   349 		if (StartEmptyExeL() != KErrArgument)
   350 			{
   351 			break;
   352 			}
   353 		//else continue;
   354 		}
   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);
   359 	}
   360 
   361 
   362 
   363 /**
   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
   370 */
   371 
   372 void TestHALDataSizeMismatchL()
   373 	{
   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");
   377 	RFs fs;
   378 	if (err == KErrNone)
   379 		{
   380 		fs.Connect();
   381 		RFile file;
   382 		TInt pos = 0;
   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);
   386 
   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++)
   389 			{
   390 			file.Write(_L8("junkjunkjunkjunk"));
   391 			}
   392 		file.Close();
   393 		}
   394 
   395 	if(err == KErrNone)
   396 		{
   397 		TInt result = TestInitialiseHALWaitL();
   398 		TEST2(result, KErrCorrupt);
   399 		}
   400 	err = fs.Delete(KFileName);
   401 	fs.Close();
   402 	}
   403 
   404 /**
   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.
   413 @SYMDEF						DEF115375
   414 */
   415 void TestTimeChangesDEF115375()
   416 	{
   417 	TTime time;
   418 	RProcess process;
   419 	
   420 	TheTest.Next (_L ("TestTimeChangesDEF115375"));
   421 	_LIT(KFileName,"c:\\private\\102825B1\\hal.dat");
   422 	
   423 	TEST2(process.Create(KInitialiseLocaleExeName, KNullDesC),KErrNone);
   424 	
   425 	TRequestStatus stat;
   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);
   431 	
   432 	RFs fs;
   433 	fs.Connect(); 
   434 	
   435 	//Delete the File if it exists
   436 	if(BaflUtils::FileExists(fs,KFileName))
   437 		{
   438 		TEST2(BaflUtils::DeleteFile(fs,KFileName),KErrNone);
   439 		}
   440 	
   441 	time.UniversalTime();
   442 	time+=TTimeIntervalMinutes(30);
   443 	TInt r=User::SetUTCTime(time);
   444 	TEST2(r, KErrNone);
   445 	
   446 	User::After(1000000);
   447 	TEST(BaflUtils::FileExists(fs,KFileName));
   448 	fs.Close();
   449 	
   450 	process.Close();
   451 	User::After(1000000);
   452 	}
   453 
   454 /**
   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.
   461 @SYMDEF 					INC121402
   462 */
   463 void TestVendorIdINC121402()
   464 	{
   465 	TheTest.Next (_L ("TestVendorIDINC121402"));
   466 	
   467 	RProcess process;
   468 	TEST2(process.Create(KHALSettingsExeName, _L("INITIALISE")), KErrNone);
   469 	
   470 	// Test that the VendorID of HALSettings.exe is set to the Symbian VendorID
   471 	TEST2(KSymbianVendorId.iId, process.VendorId().iId);
   472 	
   473 	process.Close();
   474 	}
   475 
   476 LOCAL_C void RunTestsL()
   477 	{
   478 
   479 	//To create hal.dat
   480 	TEST2(TestPersistHALWaitL(),KErrNone);
   481 	//Initialise HAL
   482 	TEST2(TestInitialiseHALWaitL(),KErrNone);
   483 	TestHALFileWrongHeaderL();
   484 	TestHALFileEmptyL();
   485 	TestHALFileMissingL();
   486 	TestInitialiseHALWrongParameterL();
   487 	TestHALFileNoAccessL();
   488 	TestTimeChangesDEF115375();
   489 	TestVendorIdINC121402();
   490 	//Performance Test
   491 	PerformanceBaseLineL();
   492 	TestPerformanceInitialiseWithFileL();
   493 	TestPerformanceInitialiseNoFileL();
   494 	TestHALDataSizeMismatchL();
   495 	}
   496 
   497 GLDEF_C TInt E32Main()
   498 	{
   499 	__UHEAP_MARK;
   500 	TheTest.Title ();
   501 	TheTest.Start (_L ("HAL Initialise test"));
   502 	CTrapCleanup* tc = CTrapCleanup::New();
   503 
   504 	TRAPD(err, ::RunTestsL());
   505 
   506 	delete tc;
   507 
   508 	TheTest.End ();
   509 	TheTest.Close ();
   510 
   511 	__UHEAP_MARKEND;
   512 	return err;
   513 	}