Update contrib.
1 // Copyright (c) 1996-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.
21 @internalComponent - Internal Symbian test code
24 #include "TCAPABILITY.H"
26 _LIT(KTestResultsFile, "C:\\DATA\\TestResult.Dat");
28 _LIT(KTest0Name, "All capabilities");
29 _LIT(KTest0Exe, "TCAP_ALL.exe");
30 _LIT(KTest0Cap, "CAPABILITY_ALL");
31 _LIT(KTest1Name, "No capabilities");
32 _LIT(KTest1Exe, "TCAP_NONE.exe");
33 _LIT(KTest1Cap, "CAPABILITY_NONE");
34 _LIT(KTest2Name, "WriteDeviceData and SwEvent capabilities");
35 _LIT(KTest2Exe, "TCAP_ONE.exe");
36 _LIT(KTest2Cap, "WRITEDATA+SWEVENT");
37 _LIT(KTest3Name, "WriteDeviceData and PowerMgnt capabilities");
38 _LIT(KTest3Exe, "TCAP_TWO.exe");
39 _LIT(KTest3Cap, "WRITEDATA+POWERMGMT");
40 _LIT(KTest4Name, "PowerMgnt and SwEvent capabilities");
41 _LIT(KTest4Exe, "TCAP_THREE.exe");
42 _LIT(KTest4Cap, "POWERMGMT+SWEVENT");
46 CTCapability::CTCapability(CTestStep* aStep):
47 CTWsGraphicsBase(aStep)
51 CTCapability::~CTCapability()
55 void CTCapability::ConstructL()
57 //Empty function ConstructL is pure virtual function and this
58 //definition required to satisfy the compiler
61 //Reads the shared files which contains the total tests run and tests passed.
62 void CTCapability::GetCapabilityTestResultsL(TInt& aNoOfTests, TInt& aNoOfTestsPass)
65 TBuf<256> noOfTestPass;
69 User::LeaveIfError(fileSession.Connect());
70 CleanupClosePushL(fileSession);
71 User::LeaveIfError(file.Open(fileSession,KTestResultsFile,EFileRead));
72 CleanupClosePushL(file);
74 if(textFile.Read(noOfTest)==KErrNone)
76 TLex lexVar(noOfTest);
77 lexVar.Val(aNoOfTests);
78 if(textFile.Read(noOfTestPass)==KErrNone)
81 lexVar.Val(aNoOfTestsPass);
88 CleanupStack::PopAndDestroy(&file);
89 CleanupStack::PopAndDestroy(&fileSession);
92 void CTCapability::LaunchNewProcess(const TDesC& aExecutable,const TDesC& aCapability)
95 args.Append(aCapability);
97 args.AppendNum(TheClient->iGroup->GroupWin()->Identifier());
99 // TInt noOfTest,noOfTestPass;
100 if (pr.Create(aExecutable,args)==KErrNone)
102 TRequestStatus status=NULL;
105 User::WaitForRequest(status);
106 //Close all the panic windows to avoid "Hangs the H4"
107 //PDEF100501: TEF Migrated Test TCapability Hangs the H4
108 if (iTest->iScreenNumber == 0)
109 iTest->CloseAllPanicWindows();
111 // GetCapabilityTestResultsL(noOfTest,noOfTestPass);
112 // UpdateTestResults(noOfTest,noOfTestPass);
116 void CTCapability::RunTestCaseL(TInt /*aCurTestCase*/)
118 ((CTCapabilityStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
119 switch(++iTest->iState)
123 @SYMTestCaseID GRAPHICS-WSERV-0305
127 @SYMTestCaseDesc Capability test with a process with all capability
129 @SYMTestPriority High
131 @SYMTestStatus Implemented
133 @SYMTestActions The security threat API's are called with all
134 capability to test whether the API's are accessible or not.
136 @SYMTestExpectedResults If the required capability is defined to test code then API should
137 accessible, otherwise it should panic the test.
141 ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0305"));
142 iTest->LogSubTest(KTest0Name);
143 LaunchNewProcess(KTest0Exe, KTest0Cap);
147 @SYMTestCaseID GRAPHICS-WSERV-0306
151 @SYMTestCaseDesc Capability test with a process with no capability
153 @SYMTestPriority High
155 @SYMTestStatus Implemented
157 @SYMTestActions The security threat API's are called with no
158 capability to test whether the API's are accessible or not.
160 @SYMTestExpectedResults If the required capability is defined to test code then API should
161 accessible, otherwise it should panic the test.
165 ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0306"));
166 //create process with no capability
167 RDebug::Print(KPlatsecBegin);
168 iTest->LogSubTest(KTest1Name);
169 LaunchNewProcess(KTest1Exe,KTest1Cap);
173 @SYMTestCaseID GRAPHICS-WSERV-0307
177 @SYMTestCaseDesc Capability test with a process with WriteDevicedata and SwEvent capability
179 @SYMTestPriority High
181 @SYMTestStatus Implemented
183 @SYMTestActions The security threat API's are called with WriteDevicedata and SwEvent
184 capability to test whether the API's are accessible or not.
186 @SYMTestExpectedResults If the required capability is defined to test code then API should
187 accessible, otherwise it should panic the test.
191 ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0307"));
192 //create process with WriteDevicedata and SwEvent capability
193 iTest->LogSubTest(KTest2Name);
194 LaunchNewProcess(KTest2Exe,KTest2Cap);
198 @SYMTestCaseID GRAPHICS-WSERV-0308
202 @SYMTestCaseDesc Capability test with a process with WriteDevicedata and PowerMgmt capability
204 @SYMTestPriority High
206 @SYMTestStatus Implemented
208 @SYMTestActions The security threat API's are called with WriteDevicedata and PowerMgmt
209 capability to test whether the API's are accessible or not.
211 @SYMTestExpectedResults If the required capability is defined to test code then API should
212 accessible, otherwise it should panic the test.
216 ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0308"));
217 //create process with WriteDevicedata and PowerMgmt capability
218 iTest->LogSubTest(KTest3Name);
219 LaunchNewProcess(KTest3Exe,KTest3Cap);
223 @SYMTestCaseID GRAPHICS-WSERV-0309
227 @SYMTestCaseDesc Capability test with a process with PowerMgmt and SwEvent capability
229 @SYMTestPriority High
231 @SYMTestStatus Implemented
233 @SYMTestActions The security threat API's are called with PowerMgmt and SwEvent
234 capability to test whether the API's are accessible or not.
236 @SYMTestExpectedResults If the required capability is defined to test code then API should
237 accessible, otherwise it should panic the test.
241 ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0309"));
242 //create process with PowerMgmt and SwEvent capability
243 iTest->LogSubTest(KTest4Name);
244 LaunchNewProcess(KTest4Exe, KTest4Cap);
247 ((CTCapabilityStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
248 ((CTCapabilityStep*)iStep)->CloseTMSGraphicsStep();
249 RDebug::Print(KPlatsecEnd);
251 User::LeaveIfError(fileSession.Connect());
252 CleanupClosePushL(fileSession);
253 CFileMan *fileMan=CFileMan::NewL(fileSession);
254 fileMan->Delete(KTestResultsFile);
256 CleanupStack::PopAndDestroy(&fileSession);
260 ((CTCapabilityStep*)iStep)->RecordTestResultL();
263 __WS_CONSTRUCT_STEP__(Capability)