sl@0: // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Capability test sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "TCAPABILITY.H" sl@0: sl@0: _LIT(KTestResultsFile, "C:\\DATA\\TestResult.Dat"); sl@0: _LIT(KSpace, " "); sl@0: _LIT(KTest0Name, "All capabilities"); sl@0: _LIT(KTest0Exe, "TCAP_ALL.exe"); sl@0: _LIT(KTest0Cap, "CAPABILITY_ALL"); sl@0: _LIT(KTest1Name, "No capabilities"); sl@0: _LIT(KTest1Exe, "TCAP_NONE.exe"); sl@0: _LIT(KTest1Cap, "CAPABILITY_NONE"); sl@0: _LIT(KTest2Name, "WriteDeviceData and SwEvent capabilities"); sl@0: _LIT(KTest2Exe, "TCAP_ONE.exe"); sl@0: _LIT(KTest2Cap, "WRITEDATA+SWEVENT"); sl@0: _LIT(KTest3Name, "WriteDeviceData and PowerMgnt capabilities"); sl@0: _LIT(KTest3Exe, "TCAP_TWO.exe"); sl@0: _LIT(KTest3Cap, "WRITEDATA+POWERMGMT"); sl@0: _LIT(KTest4Name, "PowerMgnt and SwEvent capabilities"); sl@0: _LIT(KTest4Exe, "TCAP_THREE.exe"); sl@0: _LIT(KTest4Cap, "POWERMGMT+SWEVENT"); sl@0: sl@0: sl@0: //CCapabilityTest sl@0: CTCapability::CTCapability(CTestStep* aStep): sl@0: CTWsGraphicsBase(aStep) sl@0: { sl@0: } sl@0: sl@0: CTCapability::~CTCapability() sl@0: { sl@0: } sl@0: sl@0: void CTCapability::ConstructL() sl@0: { sl@0: //Empty function ConstructL is pure virtual function and this sl@0: //definition required to satisfy the compiler sl@0: } sl@0: sl@0: //Reads the shared files which contains the total tests run and tests passed. sl@0: void CTCapability::GetCapabilityTestResultsL(TInt& aNoOfTests, TInt& aNoOfTestsPass) sl@0: { sl@0: TBuf<256> noOfTest; sl@0: TBuf<256> noOfTestPass; sl@0: RFs fileSession; sl@0: RFile file; sl@0: TFileText textFile; sl@0: User::LeaveIfError(fileSession.Connect()); sl@0: CleanupClosePushL(fileSession); sl@0: User::LeaveIfError(file.Open(fileSession,KTestResultsFile,EFileRead)); sl@0: CleanupClosePushL(file); sl@0: textFile.Set(file); sl@0: if(textFile.Read(noOfTest)==KErrNone) sl@0: { sl@0: TLex lexVar(noOfTest); sl@0: lexVar.Val(aNoOfTests); sl@0: if(textFile.Read(noOfTestPass)==KErrNone) sl@0: { sl@0: lexVar=noOfTestPass; sl@0: lexVar.Val(aNoOfTestsPass); sl@0: } sl@0: else sl@0: { sl@0: aNoOfTestsPass=0; sl@0: } sl@0: } sl@0: CleanupStack::PopAndDestroy(&file); sl@0: CleanupStack::PopAndDestroy(&fileSession); sl@0: } sl@0: sl@0: void CTCapability::LaunchNewProcess(const TDesC& aExecutable,const TDesC& aCapability) sl@0: { sl@0: TBuf<128> args; sl@0: args.Append(aCapability); sl@0: args.Append(KSpace); sl@0: args.AppendNum(TheClient->iGroup->GroupWin()->Identifier()); sl@0: RProcess pr; sl@0: // TInt noOfTest,noOfTestPass; sl@0: if (pr.Create(aExecutable,args)==KErrNone) sl@0: { sl@0: TRequestStatus status=NULL; sl@0: pr.Logon(status); sl@0: pr.Resume(); sl@0: User::WaitForRequest(status); sl@0: //Close all the panic windows to avoid "Hangs the H4" sl@0: //PDEF100501: TEF Migrated Test TCapability Hangs the H4 sl@0: if (iTest->iScreenNumber == 0) sl@0: iTest->CloseAllPanicWindows(); sl@0: pr.Close(); sl@0: // GetCapabilityTestResultsL(noOfTest,noOfTestPass); sl@0: // UpdateTestResults(noOfTest,noOfTestPass); sl@0: } sl@0: } sl@0: sl@0: void CTCapability::RunTestCaseL(TInt /*aCurTestCase*/) sl@0: { sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName); sl@0: switch(++iTest->iState) sl@0: { sl@0: /** sl@0: sl@0: @SYMTestCaseID GRAPHICS-WSERV-0305 sl@0: sl@0: @SYMDEF DEF081259 sl@0: sl@0: @SYMTestCaseDesc Capability test with a process with all capability sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The security threat API's are called with all sl@0: capability to test whether the API's are accessible or not. sl@0: sl@0: @SYMTestExpectedResults If the required capability is defined to test code then API should sl@0: accessible, otherwise it should panic the test. sl@0: sl@0: */ sl@0: case 1: sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0305")); sl@0: iTest->LogSubTest(KTest0Name); sl@0: LaunchNewProcess(KTest0Exe, KTest0Cap); sl@0: break; sl@0: /** sl@0: sl@0: @SYMTestCaseID GRAPHICS-WSERV-0306 sl@0: sl@0: @SYMDEF DEF081259 sl@0: sl@0: @SYMTestCaseDesc Capability test with a process with no capability sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The security threat API's are called with no sl@0: capability to test whether the API's are accessible or not. sl@0: sl@0: @SYMTestExpectedResults If the required capability is defined to test code then API should sl@0: accessible, otherwise it should panic the test. sl@0: sl@0: */ sl@0: case 2: sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0306")); sl@0: //create process with no capability sl@0: RDebug::Print(KPlatsecBegin); sl@0: iTest->LogSubTest(KTest1Name); sl@0: LaunchNewProcess(KTest1Exe,KTest1Cap); sl@0: break; sl@0: /** sl@0: sl@0: @SYMTestCaseID GRAPHICS-WSERV-0307 sl@0: sl@0: @SYMDEF DEF081259 sl@0: sl@0: @SYMTestCaseDesc Capability test with a process with WriteDevicedata and SwEvent capability sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The security threat API's are called with WriteDevicedata and SwEvent sl@0: capability to test whether the API's are accessible or not. sl@0: sl@0: @SYMTestExpectedResults If the required capability is defined to test code then API should sl@0: accessible, otherwise it should panic the test. sl@0: sl@0: */ sl@0: case 3: sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0307")); sl@0: //create process with WriteDevicedata and SwEvent capability sl@0: iTest->LogSubTest(KTest2Name); sl@0: LaunchNewProcess(KTest2Exe,KTest2Cap); sl@0: break; sl@0: /** sl@0: sl@0: @SYMTestCaseID GRAPHICS-WSERV-0308 sl@0: sl@0: @SYMDEF DEF081259 sl@0: sl@0: @SYMTestCaseDesc Capability test with a process with WriteDevicedata and PowerMgmt capability sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The security threat API's are called with WriteDevicedata and PowerMgmt sl@0: capability to test whether the API's are accessible or not. sl@0: sl@0: @SYMTestExpectedResults If the required capability is defined to test code then API should sl@0: accessible, otherwise it should panic the test. sl@0: sl@0: */ sl@0: case 4: sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0308")); sl@0: //create process with WriteDevicedata and PowerMgmt capability sl@0: iTest->LogSubTest(KTest3Name); sl@0: LaunchNewProcess(KTest3Exe,KTest3Cap); sl@0: break; sl@0: /** sl@0: sl@0: @SYMTestCaseID GRAPHICS-WSERV-0309 sl@0: sl@0: @SYMDEF DEF081259 sl@0: sl@0: @SYMTestCaseDesc Capability test with a process with PowerMgmt and SwEvent capability sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions The security threat API's are called with PowerMgmt and SwEvent sl@0: capability to test whether the API's are accessible or not. sl@0: sl@0: @SYMTestExpectedResults If the required capability is defined to test code then API should sl@0: accessible, otherwise it should panic the test. sl@0: sl@0: */ sl@0: case 5: sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0309")); sl@0: //create process with PowerMgmt and SwEvent capability sl@0: iTest->LogSubTest(KTest4Name); sl@0: LaunchNewProcess(KTest4Exe, KTest4Cap); sl@0: break; sl@0: default : sl@0: ((CTCapabilityStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName); sl@0: ((CTCapabilityStep*)iStep)->CloseTMSGraphicsStep(); sl@0: RDebug::Print(KPlatsecEnd); sl@0: RFs fileSession; sl@0: User::LeaveIfError(fileSession.Connect()); sl@0: CleanupClosePushL(fileSession); sl@0: CFileMan *fileMan=CFileMan::NewL(fileSession); sl@0: fileMan->Delete(KTestResultsFile); sl@0: delete fileMan; sl@0: CleanupStack::PopAndDestroy(&fileSession); sl@0: TestComplete(); sl@0: break; sl@0: } sl@0: ((CTCapabilityStep*)iStep)->RecordTestResultL(); sl@0: } sl@0: sl@0: __WS_CONSTRUCT_STEP__(Capability)