os/graphics/windowing/windowserver/test/tauto/TCAPABILITY.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-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
// Capability test
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @test
sl@0
    21
 @internalComponent - Internal Symbian test code
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include "TCAPABILITY.H"
sl@0
    25
sl@0
    26
_LIT(KTestResultsFile, "C:\\DATA\\TestResult.Dat");
sl@0
    27
_LIT(KSpace, " ");
sl@0
    28
_LIT(KTest0Name, "All capabilities");
sl@0
    29
_LIT(KTest0Exe, "TCAP_ALL.exe");
sl@0
    30
_LIT(KTest0Cap, "CAPABILITY_ALL");
sl@0
    31
_LIT(KTest1Name, "No capabilities");
sl@0
    32
_LIT(KTest1Exe, "TCAP_NONE.exe");
sl@0
    33
_LIT(KTest1Cap, "CAPABILITY_NONE");
sl@0
    34
_LIT(KTest2Name, "WriteDeviceData and SwEvent capabilities");
sl@0
    35
_LIT(KTest2Exe, "TCAP_ONE.exe");
sl@0
    36
_LIT(KTest2Cap, "WRITEDATA+SWEVENT");
sl@0
    37
_LIT(KTest3Name, "WriteDeviceData and PowerMgnt capabilities");
sl@0
    38
_LIT(KTest3Exe, "TCAP_TWO.exe");
sl@0
    39
_LIT(KTest3Cap, "WRITEDATA+POWERMGMT");
sl@0
    40
_LIT(KTest4Name, "PowerMgnt and SwEvent capabilities");
sl@0
    41
_LIT(KTest4Exe, "TCAP_THREE.exe");
sl@0
    42
_LIT(KTest4Cap, "POWERMGMT+SWEVENT");
sl@0
    43
sl@0
    44
sl@0
    45
//CCapabilityTest 
sl@0
    46
CTCapability::CTCapability(CTestStep* aStep):
sl@0
    47
	CTWsGraphicsBase(aStep)
sl@0
    48
	{
sl@0
    49
	}
sl@0
    50
sl@0
    51
CTCapability::~CTCapability()
sl@0
    52
	{
sl@0
    53
	}
sl@0
    54
sl@0
    55
void CTCapability::ConstructL()
sl@0
    56
	{
sl@0
    57
	//Empty function ConstructL is pure virtual function and this 
sl@0
    58
	//definition required to satisfy the compiler
sl@0
    59
	}
sl@0
    60
sl@0
    61
//Reads the shared files which contains the total tests	run and tests passed.
sl@0
    62
void CTCapability::GetCapabilityTestResultsL(TInt& aNoOfTests, TInt& aNoOfTestsPass)
sl@0
    63
	{	
sl@0
    64
	TBuf<256> noOfTest;
sl@0
    65
	TBuf<256> noOfTestPass;
sl@0
    66
	RFs fileSession;
sl@0
    67
	RFile file;
sl@0
    68
	TFileText textFile;
sl@0
    69
	User::LeaveIfError(fileSession.Connect());
sl@0
    70
	CleanupClosePushL(fileSession);
sl@0
    71
	User::LeaveIfError(file.Open(fileSession,KTestResultsFile,EFileRead));
sl@0
    72
	CleanupClosePushL(file);
sl@0
    73
	textFile.Set(file);
sl@0
    74
	if(textFile.Read(noOfTest)==KErrNone)
sl@0
    75
		{
sl@0
    76
		TLex lexVar(noOfTest);
sl@0
    77
		lexVar.Val(aNoOfTests);
sl@0
    78
		if(textFile.Read(noOfTestPass)==KErrNone)
sl@0
    79
			{
sl@0
    80
			lexVar=noOfTestPass;
sl@0
    81
			lexVar.Val(aNoOfTestsPass);
sl@0
    82
			}
sl@0
    83
		else
sl@0
    84
			{
sl@0
    85
			aNoOfTestsPass=0;
sl@0
    86
			}
sl@0
    87
		}
sl@0
    88
	CleanupStack::PopAndDestroy(&file);
sl@0
    89
	CleanupStack::PopAndDestroy(&fileSession);
sl@0
    90
	}
sl@0
    91
	
sl@0
    92
 void CTCapability::LaunchNewProcess(const TDesC& aExecutable,const TDesC& aCapability)
sl@0
    93
	{
sl@0
    94
	TBuf<128> args;
sl@0
    95
 	args.Append(aCapability);
sl@0
    96
 	args.Append(KSpace);
sl@0
    97
 	args.AppendNum(TheClient->iGroup->GroupWin()->Identifier());
sl@0
    98
	RProcess pr;
sl@0
    99
//	TInt noOfTest,noOfTestPass;
sl@0
   100
	if (pr.Create(aExecutable,args)==KErrNone)
sl@0
   101
		{
sl@0
   102
		TRequestStatus status=NULL;
sl@0
   103
		pr.Logon(status);
sl@0
   104
		pr.Resume();
sl@0
   105
		User::WaitForRequest(status);
sl@0
   106
		//Close all the panic windows to avoid "Hangs the H4" 
sl@0
   107
		//PDEF100501: TEF Migrated Test TCapability Hangs the H4 
sl@0
   108
	   	if (iTest->iScreenNumber == 0)
sl@0
   109
			iTest->CloseAllPanicWindows();
sl@0
   110
		pr.Close();
sl@0
   111
//		GetCapabilityTestResultsL(noOfTest,noOfTestPass);
sl@0
   112
//		UpdateTestResults(noOfTest,noOfTestPass);
sl@0
   113
		}
sl@0
   114
	}
sl@0
   115
	
sl@0
   116
void CTCapability::RunTestCaseL(TInt /*aCurTestCase*/)
sl@0
   117
	{
sl@0
   118
	((CTCapabilityStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
   119
	switch(++iTest->iState)
sl@0
   120
		{
sl@0
   121
/**
sl@0
   122
sl@0
   123
  @SYMTestCaseID GRAPHICS-WSERV-0305
sl@0
   124
  
sl@0
   125
  @SYMDEF             DEF081259
sl@0
   126
 
sl@0
   127
  @SYMTestCaseDesc Capability test with a process with all capability
sl@0
   128
    
sl@0
   129
  @SYMTestPriority High
sl@0
   130
 
sl@0
   131
  @SYMTestStatus Implemented
sl@0
   132
 
sl@0
   133
  @SYMTestActions The security threat API's are called with all 
sl@0
   134
 				 capability to test whether the API's are accessible or not.
sl@0
   135
  
sl@0
   136
  @SYMTestExpectedResults If the required capability is defined to test code then API should 
sl@0
   137
 							 accessible, otherwise it should panic the test.
sl@0
   138
 
sl@0
   139
*/
sl@0
   140
		case 1:
sl@0
   141
			((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0305"));
sl@0
   142
			iTest->LogSubTest(KTest0Name);
sl@0
   143
 			LaunchNewProcess(KTest0Exe, KTest0Cap);
sl@0
   144
			break;
sl@0
   145
/**
sl@0
   146
sl@0
   147
  @SYMTestCaseID GRAPHICS-WSERV-0306
sl@0
   148
  
sl@0
   149
  @SYMDEF             DEF081259
sl@0
   150
 
sl@0
   151
  @SYMTestCaseDesc Capability test with a process with no capability
sl@0
   152
    
sl@0
   153
  @SYMTestPriority High
sl@0
   154
 
sl@0
   155
  @SYMTestStatus Implemented
sl@0
   156
 
sl@0
   157
  @SYMTestActions The security threat API's are called with no 
sl@0
   158
 				 capability to test whether the API's are accessible or not.
sl@0
   159
  
sl@0
   160
  @SYMTestExpectedResults If the required capability is defined to test code then API should 
sl@0
   161
 							 accessible, otherwise it should panic the test.
sl@0
   162
 
sl@0
   163
*/
sl@0
   164
		case 2:
sl@0
   165
			((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0306"));
sl@0
   166
			//create process with no capability 
sl@0
   167
			RDebug::Print(KPlatsecBegin);
sl@0
   168
			iTest->LogSubTest(KTest1Name);
sl@0
   169
 			LaunchNewProcess(KTest1Exe,KTest1Cap);
sl@0
   170
			break;
sl@0
   171
/**
sl@0
   172
sl@0
   173
  @SYMTestCaseID GRAPHICS-WSERV-0307
sl@0
   174
  
sl@0
   175
  @SYMDEF             DEF081259
sl@0
   176
 
sl@0
   177
  @SYMTestCaseDesc Capability test with a process with WriteDevicedata and SwEvent capability
sl@0
   178
    
sl@0
   179
  @SYMTestPriority High
sl@0
   180
 
sl@0
   181
  @SYMTestStatus Implemented
sl@0
   182
 
sl@0
   183
  @SYMTestActions The security threat API's are called with WriteDevicedata and SwEvent 
sl@0
   184
 				 capability to test whether the API's are accessible or not.
sl@0
   185
  
sl@0
   186
  @SYMTestExpectedResults If the required capability is defined to test code then API should 
sl@0
   187
 							 accessible, otherwise it should panic the test.
sl@0
   188
 
sl@0
   189
*/
sl@0
   190
		case 3:
sl@0
   191
			((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0307"));
sl@0
   192
			//create process with WriteDevicedata and SwEvent capability 
sl@0
   193
			iTest->LogSubTest(KTest2Name);
sl@0
   194
 			LaunchNewProcess(KTest2Exe,KTest2Cap);
sl@0
   195
			break;
sl@0
   196
/**
sl@0
   197
sl@0
   198
  @SYMTestCaseID GRAPHICS-WSERV-0308
sl@0
   199
  
sl@0
   200
  @SYMDEF             DEF081259
sl@0
   201
 
sl@0
   202
  @SYMTestCaseDesc Capability test with a process with WriteDevicedata and PowerMgmt capability
sl@0
   203
    
sl@0
   204
  @SYMTestPriority High
sl@0
   205
 
sl@0
   206
  @SYMTestStatus Implemented
sl@0
   207
 
sl@0
   208
  @SYMTestActions The security threat API's are called with WriteDevicedata and PowerMgmt 
sl@0
   209
 				 capability to test whether the API's are accessible or not.
sl@0
   210
  
sl@0
   211
  @SYMTestExpectedResults If the required capability is defined to test code then API should 
sl@0
   212
 							 accessible, otherwise it should panic the test.
sl@0
   213
 
sl@0
   214
*/
sl@0
   215
		case 4:
sl@0
   216
			((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0308"));
sl@0
   217
			//create process with WriteDevicedata and PowerMgmt capability 
sl@0
   218
			iTest->LogSubTest(KTest3Name);
sl@0
   219
 			LaunchNewProcess(KTest3Exe,KTest3Cap);
sl@0
   220
			break;
sl@0
   221
/**
sl@0
   222
sl@0
   223
  @SYMTestCaseID GRAPHICS-WSERV-0309
sl@0
   224
  
sl@0
   225
  @SYMDEF             DEF081259
sl@0
   226
 
sl@0
   227
  @SYMTestCaseDesc Capability test with a process with PowerMgmt and SwEvent capability
sl@0
   228
    
sl@0
   229
  @SYMTestPriority High
sl@0
   230
 
sl@0
   231
  @SYMTestStatus Implemented
sl@0
   232
 
sl@0
   233
  @SYMTestActions The security threat API's are called with PowerMgmt and SwEvent 
sl@0
   234
 				 capability to test whether the API's are accessible or not.
sl@0
   235
  
sl@0
   236
  @SYMTestExpectedResults If the required capability is defined to test code then API should 
sl@0
   237
 							 accessible, otherwise it should panic the test.
sl@0
   238
 
sl@0
   239
*/
sl@0
   240
		case 5:
sl@0
   241
			((CTCapabilityStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0309"));
sl@0
   242
			//create process with PowerMgmt and SwEvent capability 
sl@0
   243
			iTest->LogSubTest(KTest4Name);
sl@0
   244
 			LaunchNewProcess(KTest4Exe, KTest4Cap);
sl@0
   245
			break;
sl@0
   246
		default :
sl@0
   247
			((CTCapabilityStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
   248
			((CTCapabilityStep*)iStep)->CloseTMSGraphicsStep();
sl@0
   249
			RDebug::Print(KPlatsecEnd);
sl@0
   250
			RFs fileSession;
sl@0
   251
			User::LeaveIfError(fileSession.Connect());
sl@0
   252
			CleanupClosePushL(fileSession);
sl@0
   253
			CFileMan *fileMan=CFileMan::NewL(fileSession);
sl@0
   254
			fileMan->Delete(KTestResultsFile);
sl@0
   255
			delete fileMan;
sl@0
   256
			CleanupStack::PopAndDestroy(&fileSession);
sl@0
   257
			TestComplete();		
sl@0
   258
			break;
sl@0
   259
		}
sl@0
   260
	((CTCapabilityStep*)iStep)->RecordTestResultL();
sl@0
   261
	}
sl@0
   262
	
sl@0
   263
__WS_CONSTRUCT_STEP__(Capability)