1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/systemagent/test/rtest/t_persisthal/t_persisthal.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,186 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// For testing Persist HAL :
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @internalComponent
1.24 + @test
1.25 +*/
1.26 +
1.27 +#include <e32base.h>
1.28 +#include <hal.h>
1.29 +#include <bautils.h>
1.30 +#include <e32test.h>
1.31 +
1.32 +#define TEST(arg) ::Check((arg), __LINE__)
1.33 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
1.34 +
1.35 +LOCAL_D RTest TheTest (_L ("T_PersistHAL"));
1.36 +
1.37 +TInt noSample = 25;
1.38 +
1.39 +LOCAL_C void Check(TInt aValue, TInt aLine)
1.40 + {
1.41 + if(!aValue)
1.42 + {
1.43 + TheTest(EFalse, aLine);
1.44 + }
1.45 + }
1.46 +
1.47 +LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
1.48 + {
1.49 + if(aValue != aExpected)
1.50 + {
1.51 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.52 + TheTest(EFalse, aLine);
1.53 + }
1.54 + }
1.55 +
1.56 +TInt TestPersistHALWaitDirectL()
1.57 + {
1.58 + RProcess process;
1.59 + TEST2(process.Create(_L("HALSettings.exe"), _L("PERSIST")),KErrNone);
1.60 + TRequestStatus status;
1.61 + process.Logon(status);
1.62 + process.Resume();
1.63 + User::WaitForRequest(status);
1.64 + TInt exitReason = process.ExitReason();
1.65 + process.Close();
1.66 + return exitReason;
1.67 + }
1.68 +
1.69 +//Tests
1.70 +//====================================================================
1.71 +
1.72 +/**
1.73 +@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1721
1.74 +@SYMTestCaseDesc Performance Test Persist HAL
1.75 +@SYMTestPriority Medium
1.76 +@SYMTestActions This test trys to persist HAL settings by starting HALSetting.exe
1.77 + directly
1.78 +@SYMTestExpectedResults Tests must not fail
1.79 +@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
1.80 +*/
1.81 +void TestPerformancePersistDirectL()
1.82 + {
1.83 + TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1721 Performance Persist test directly calling EXE "));
1.84 + TInt fastTimerFreq;
1.85 + HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
1.86 + TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
1.87 +
1.88 + TUint prevTime;
1.89 + TUint timeDiff;
1.90 +
1.91 + prevTime = User::FastCounter();
1.92 + TInt noSuccessfulSamples=0;
1.93 + for(; noSuccessfulSamples < noSample; ++noSuccessfulSamples)
1.94 + {
1.95 + if(TestPersistHALWaitDirectL() !=KErrNone )
1.96 + {
1.97 + break;//Stop performing the tests, calculate average with no of successful Samples.
1.98 + }
1.99 + }
1.100 + TEST(noSuccessfulSamples >0);
1.101 + timeDiff = User::FastCounter() - prevTime;
1.102 + TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
1.103 + TheTest.Printf(_L("Time to Persist HAL directly calling exe = %10.2lf microseconds\n"), fsSessionMicroSecs);
1.104 + }
1.105 +
1.106 +/**
1.107 +@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1722
1.108 +@SYMTestCaseDesc Performance Test Persist HAL through BAFL DLL
1.109 +@SYMTestPriority Medium
1.110 +@SYMTestActions This test trys to persist HAL settings by calling BAFL
1.111 + API
1.112 +@SYMTestExpectedResults Tests must not fail
1.113 +@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
1.114 +*/
1.115 +void TestPerformancePersistThroughBAFL()
1.116 + {
1.117 +
1.118 + TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1722 Performance Persist test Through BAFL DLL "));
1.119 + TInt fastTimerFreq;
1.120 + HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
1.121 + TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
1.122 +
1.123 + TUint prevTime;
1.124 + TUint timeDiff;
1.125 +
1.126 + prevTime = User::FastCounter();
1.127 + TInt noSuccessfulSamples=0;
1.128 + for(;noSuccessfulSamples< noSample; ++noSuccessfulSamples)
1.129 + {
1.130 + if(BaflUtils::PersistHAL()!=KErrNone)
1.131 + {
1.132 + break;//Stop performing the tests, calculate average with no of successful Samples.
1.133 + }
1.134 + }
1.135 + TEST(noSuccessfulSamples >0);
1.136 + timeDiff = User::FastCounter() - prevTime;
1.137 + TReal64 fsSessionMicroSecs = timeDiff / (noSuccessfulSamples * ticksPerMicroSec);
1.138 + TheTest.Printf(_L("Time to Persist HAL through BAFL DLL = %10.2lf microseconds\n"), fsSessionMicroSecs);
1.139 + }
1.140 +
1.141 +/**
1.142 +@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1723
1.143 +@SYMTestCaseDesc Capability Test
1.144 +@SYMTestPriority Medium
1.145 +@SYMTestActions This test exe do not have the capability to initialise HAL settings
1.146 + try to initialise HAL setting by starting HALSetting.exe
1.147 +@SYMTestExpectedResults Tests must not fail
1.148 +@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
1.149 +*/
1.150 +void CapabilityTest()
1.151 + {
1.152 + TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1723 Capability Test "));
1.153 + RProcess process;
1.154 + //To initialise processes should have SID == SID of EStart, This process's SID is '0'
1.155 + TEST2(process.Create(_L("HALSettings.exe"), _L("INITIALISE")),KErrNone);
1.156 + TRequestStatus status;
1.157 + process.Logon(status);
1.158 + process.Resume();
1.159 + User::WaitForRequest(status);
1.160 + TInt exitReason = process.ExitReason();
1.161 + process.Close();
1.162 + TEST2(exitReason,KErrPermissionDenied);
1.163 + }
1.164 +
1.165 +LOCAL_C void RunTestsL()
1.166 + {
1.167 + TEST2(TestPersistHALWaitDirectL (),KErrNone);
1.168 + TEST2(BaflUtils::PersistHAL(),KErrNone);
1.169 +
1.170 + CapabilityTest();
1.171 + TestPerformancePersistDirectL ();
1.172 + TestPerformancePersistThroughBAFL ();
1.173 + }
1.174 +
1.175 +GLDEF_C TInt E32Main()
1.176 + {
1.177 + __UHEAP_MARK;
1.178 + TheTest.Title ();
1.179 + TheTest.Start (_L ("HAL Persist test"));
1.180 + CTrapCleanup* tc = CTrapCleanup::New();
1.181 +
1.182 + TRAPD(err, ::RunTestsL());
1.183 +
1.184 + delete tc;
1.185 + TheTest.End ();
1.186 + TheTest.Close ();
1.187 + __UHEAP_MARKEND;
1.188 + return err;
1.189 + }