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 Persist HAL :
29 #define TEST(arg) ::Check((arg), __LINE__)
30 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
32 LOCAL_D RTest TheTest (_L ("T_PersistHAL"));
36 LOCAL_C void Check(TInt aValue, TInt aLine)
40 TheTest(EFalse, aLine);
44 LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
46 if(aValue != aExpected)
48 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
49 TheTest(EFalse, aLine);
53 TInt TestPersistHALWaitDirectL()
56 TEST2(process.Create(_L("HALSettings.exe"), _L("PERSIST")),KErrNone);
57 TRequestStatus status;
58 process.Logon(status);
60 User::WaitForRequest(status);
61 TInt exitReason = process.ExitReason();
67 //====================================================================
70 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1721
71 @SYMTestCaseDesc Performance Test Persist HAL
72 @SYMTestPriority Medium
73 @SYMTestActions This test trys to persist HAL settings by starting HALSetting.exe
75 @SYMTestExpectedResults Tests must not fail
76 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
78 void TestPerformancePersistDirectL()
80 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1721 Performance Persist test directly calling EXE "));
82 HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
83 TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
88 prevTime = User::FastCounter();
89 TInt noSuccessfulSamples=0;
90 for(; noSuccessfulSamples < noSample; ++noSuccessfulSamples)
92 if(TestPersistHALWaitDirectL() !=KErrNone )
94 break;//Stop performing the tests, calculate average with no of successful Samples.
97 TEST(noSuccessfulSamples >0);
98 timeDiff = User::FastCounter() - prevTime;
99 TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
100 TheTest.Printf(_L("Time to Persist HAL directly calling exe = %10.2lf microseconds\n"), fsSessionMicroSecs);
104 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1722
105 @SYMTestCaseDesc Performance Test Persist HAL through BAFL DLL
106 @SYMTestPriority Medium
107 @SYMTestActions This test trys to persist HAL settings by calling BAFL
109 @SYMTestExpectedResults Tests must not fail
110 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
112 void TestPerformancePersistThroughBAFL()
115 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1722 Performance Persist test Through BAFL DLL "));
117 HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
118 TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
123 prevTime = User::FastCounter();
124 TInt noSuccessfulSamples=0;
125 for(;noSuccessfulSamples< noSample; ++noSuccessfulSamples)
127 if(BaflUtils::PersistHAL()!=KErrNone)
129 break;//Stop performing the tests, calculate average with no of successful Samples.
132 TEST(noSuccessfulSamples >0);
133 timeDiff = User::FastCounter() - prevTime;
134 TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
135 TheTest.Printf(_L("Time to Persist HAL through BAFL DLL = %10.2lf microseconds\n"), fsSessionMicroSecs);
139 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1723
140 @SYMTestCaseDesc Capability Test
141 @SYMTestPriority Medium
142 @SYMTestActions This test exe do not have the capability to initialise HAL settings
143 try to initialise HAL setting by starting HALSetting.exe
144 @SYMTestExpectedResults Tests must not fail
145 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
147 void CapabilityTest()
149 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1723 Capability Test "));
151 //To initialise processes should have SID == SID of EStart, This process's SID is '0'
152 TEST2(process.Create(_L("HALSettings.exe"), _L("INITIALISE")),KErrNone);
153 TRequestStatus status;
154 process.Logon(status);
156 User::WaitForRequest(status);
157 TInt exitReason = process.ExitReason();
159 TEST2(exitReason,KErrPermissionDenied);
162 LOCAL_C void RunTestsL()
164 TEST2(TestPersistHALWaitDirectL (),KErrNone);
165 TEST2(BaflUtils::PersistHAL(),KErrNone);
168 TestPerformancePersistDirectL ();
169 TestPerformancePersistThroughBAFL ();
172 GLDEF_C TInt E32Main()
176 TheTest.Start (_L ("HAL Persist test"));
177 CTrapCleanup* tc = CTrapCleanup::New();
179 TRAPD(err, ::RunTestsL());