sl@0
|
1 |
// Copyright (c) 2006-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 |
// For testing Persist HAL :
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
@test
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32base.h>
|
sl@0
|
25 |
#include <hal.h>
|
sl@0
|
26 |
#include <bautils.h>
|
sl@0
|
27 |
#include <e32test.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
30 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
31 |
|
sl@0
|
32 |
LOCAL_D RTest TheTest (_L ("T_PersistHAL"));
|
sl@0
|
33 |
|
sl@0
|
34 |
TInt noSample = 25;
|
sl@0
|
35 |
|
sl@0
|
36 |
LOCAL_C void Check(TInt aValue, TInt aLine)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
if(!aValue)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
TheTest(EFalse, aLine);
|
sl@0
|
41 |
}
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
if(aValue != aExpected)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
49 |
TheTest(EFalse, aLine);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
TInt TestPersistHALWaitDirectL()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
RProcess process;
|
sl@0
|
56 |
TEST2(process.Create(_L("HALSettings.exe"), _L("PERSIST")),KErrNone);
|
sl@0
|
57 |
TRequestStatus status;
|
sl@0
|
58 |
process.Logon(status);
|
sl@0
|
59 |
process.Resume();
|
sl@0
|
60 |
User::WaitForRequest(status);
|
sl@0
|
61 |
TInt exitReason = process.ExitReason();
|
sl@0
|
62 |
process.Close();
|
sl@0
|
63 |
return exitReason;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
//Tests
|
sl@0
|
67 |
//====================================================================
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1721
|
sl@0
|
71 |
@SYMTestCaseDesc Performance Test Persist HAL
|
sl@0
|
72 |
@SYMTestPriority Medium
|
sl@0
|
73 |
@SYMTestActions This test trys to persist HAL settings by starting HALSetting.exe
|
sl@0
|
74 |
directly
|
sl@0
|
75 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
76 |
@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
void TestPerformancePersistDirectL()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1721 Performance Persist test directly calling EXE "));
|
sl@0
|
81 |
TInt fastTimerFreq;
|
sl@0
|
82 |
HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
|
sl@0
|
83 |
TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
|
sl@0
|
84 |
|
sl@0
|
85 |
TUint prevTime;
|
sl@0
|
86 |
TUint timeDiff;
|
sl@0
|
87 |
|
sl@0
|
88 |
prevTime = User::FastCounter();
|
sl@0
|
89 |
TInt noSuccessfulSamples=0;
|
sl@0
|
90 |
for(; noSuccessfulSamples < noSample; ++noSuccessfulSamples)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
if(TestPersistHALWaitDirectL() !=KErrNone )
|
sl@0
|
93 |
{
|
sl@0
|
94 |
break;//Stop performing the tests, calculate average with no of successful Samples.
|
sl@0
|
95 |
}
|
sl@0
|
96 |
}
|
sl@0
|
97 |
TEST(noSuccessfulSamples >0);
|
sl@0
|
98 |
timeDiff = User::FastCounter() - prevTime;
|
sl@0
|
99 |
TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
|
sl@0
|
100 |
TheTest.Printf(_L("Time to Persist HAL directly calling exe = %10.2lf microseconds\n"), fsSessionMicroSecs);
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1722
|
sl@0
|
105 |
@SYMTestCaseDesc Performance Test Persist HAL through BAFL DLL
|
sl@0
|
106 |
@SYMTestPriority Medium
|
sl@0
|
107 |
@SYMTestActions This test trys to persist HAL settings by calling BAFL
|
sl@0
|
108 |
API
|
sl@0
|
109 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
110 |
@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
void TestPerformancePersistThroughBAFL()
|
sl@0
|
113 |
{
|
sl@0
|
114 |
|
sl@0
|
115 |
TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1722 Performance Persist test Through BAFL DLL "));
|
sl@0
|
116 |
TInt fastTimerFreq;
|
sl@0
|
117 |
HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
|
sl@0
|
118 |
TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
|
sl@0
|
119 |
|
sl@0
|
120 |
TUint prevTime;
|
sl@0
|
121 |
TUint timeDiff;
|
sl@0
|
122 |
|
sl@0
|
123 |
prevTime = User::FastCounter();
|
sl@0
|
124 |
TInt noSuccessfulSamples=0;
|
sl@0
|
125 |
for(;noSuccessfulSamples< noSample; ++noSuccessfulSamples)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
if(BaflUtils::PersistHAL()!=KErrNone)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
break;//Stop performing the tests, calculate average with no of successful Samples.
|
sl@0
|
130 |
}
|
sl@0
|
131 |
}
|
sl@0
|
132 |
TEST(noSuccessfulSamples >0);
|
sl@0
|
133 |
timeDiff = User::FastCounter() - prevTime;
|
sl@0
|
134 |
TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
|
sl@0
|
135 |
TheTest.Printf(_L("Time to Persist HAL through BAFL DLL = %10.2lf microseconds\n"), fsSessionMicroSecs);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
/**
|
sl@0
|
139 |
@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1723
|
sl@0
|
140 |
@SYMTestCaseDesc Capability Test
|
sl@0
|
141 |
@SYMTestPriority Medium
|
sl@0
|
142 |
@SYMTestActions This test exe do not have the capability to initialise HAL settings
|
sl@0
|
143 |
try to initialise HAL setting by starting HALSetting.exe
|
sl@0
|
144 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
145 |
@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
void CapabilityTest()
|
sl@0
|
148 |
{
|
sl@0
|
149 |
TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1723 Capability Test "));
|
sl@0
|
150 |
RProcess process;
|
sl@0
|
151 |
//To initialise processes should have SID == SID of EStart, This process's SID is '0'
|
sl@0
|
152 |
TEST2(process.Create(_L("HALSettings.exe"), _L("INITIALISE")),KErrNone);
|
sl@0
|
153 |
TRequestStatus status;
|
sl@0
|
154 |
process.Logon(status);
|
sl@0
|
155 |
process.Resume();
|
sl@0
|
156 |
User::WaitForRequest(status);
|
sl@0
|
157 |
TInt exitReason = process.ExitReason();
|
sl@0
|
158 |
process.Close();
|
sl@0
|
159 |
TEST2(exitReason,KErrPermissionDenied);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
LOCAL_C void RunTestsL()
|
sl@0
|
163 |
{
|
sl@0
|
164 |
TEST2(TestPersistHALWaitDirectL (),KErrNone);
|
sl@0
|
165 |
TEST2(BaflUtils::PersistHAL(),KErrNone);
|
sl@0
|
166 |
|
sl@0
|
167 |
CapabilityTest();
|
sl@0
|
168 |
TestPerformancePersistDirectL ();
|
sl@0
|
169 |
TestPerformancePersistThroughBAFL ();
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
GLDEF_C TInt E32Main()
|
sl@0
|
173 |
{
|
sl@0
|
174 |
__UHEAP_MARK;
|
sl@0
|
175 |
TheTest.Title ();
|
sl@0
|
176 |
TheTest.Start (_L ("HAL Persist test"));
|
sl@0
|
177 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
178 |
|
sl@0
|
179 |
TRAPD(err, ::RunTestsL());
|
sl@0
|
180 |
|
sl@0
|
181 |
delete tc;
|
sl@0
|
182 |
TheTest.End ();
|
sl@0
|
183 |
TheTest.Close ();
|
sl@0
|
184 |
__UHEAP_MARKEND;
|
sl@0
|
185 |
return err;
|
sl@0
|
186 |
}
|