os/graphics/windowing/windowserver/test/tauto/TGRAPHICSDRAWER.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) 2007-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
// Tests for the TWsGraphicMsgBufParser 
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 "TGRAPHICSDRAWER.H"
sl@0
    25
#include "graphics/WSGRAPHICMSGBUF.H"
sl@0
    26
sl@0
    27
CTGraphicsDrawer::CTGraphicsDrawer(CTestStep* aStep):
sl@0
    28
	CTGraphicsBase(aStep)
sl@0
    29
	{
sl@0
    30
	INFO_PRINTF1(_L("Testing TWsGraphicMsgBufParser"));
sl@0
    31
	}
sl@0
    32
		
sl@0
    33
void CTGraphicsDrawer::RunTestCaseL(TInt aCurTestCase)
sl@0
    34
	{	
sl@0
    35
	((CTGraphicsDrawerStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
    36
	switch(aCurTestCase)
sl@0
    37
		{
sl@0
    38
	case 1:		
sl@0
    39
		((CTGraphicsDrawerStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0449"));
sl@0
    40
		INFO_PRINTF1(_L("TWsGraphicMsgBufParser Indefinite Loop Test"));		
sl@0
    41
		IndefiniteLoopL();
sl@0
    42
		break;
sl@0
    43
		
sl@0
    44
	case 2:
sl@0
    45
		((CTGraphicsDrawerStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
    46
		((CTGraphicsDrawerStep*)iStep)->CloseTMSGraphicsStep();
sl@0
    47
		INFO_PRINTF1(_L("Test complete\n"));
sl@0
    48
		TestComplete();
sl@0
    49
		break;
sl@0
    50
		}
sl@0
    51
	((CTGraphicsDrawerStep*)iStep)->RecordTestResultL();
sl@0
    52
	}
sl@0
    53
sl@0
    54
sl@0
    55
void CTGraphicsDrawer::ConstructL()
sl@0
    56
	{
sl@0
    57
	}
sl@0
    58
	
sl@0
    59
CTGraphicsDrawer::~CTGraphicsDrawer()
sl@0
    60
	{
sl@0
    61
	}
sl@0
    62
sl@0
    63
/**
sl@0
    64
@SYMTestCaseID		GRAPHICS-WSERV-0449
sl@0
    65
sl@0
    66
@SYMDEF  			DEF110513, PDEF112710
sl@0
    67
sl@0
    68
@SYMTestCaseDesc    Tests that a zero length buffer does not cause an indefinate loop during verify 
sl@0
    69
sl@0
    70
@SYMTestPriority    Normal
sl@0
    71
sl@0
    72
@SYMTestStatus      Implemented
sl@0
    73
sl@0
    74
@SYMTestActions    	Creates a buffer, puts it into a TWsGraphicMsgBufParser and calls verify on it
sl@0
    75
					then removes the message from the buffer and re-tests verify.
sl@0
    76
sl@0
    77
@SYMTestExpectedResults Test should pass and not timeout
sl@0
    78
*/
sl@0
    79
sl@0
    80
void CTGraphicsDrawer::IndefiniteLoopL()
sl@0
    81
	{
sl@0
    82
	RWsGraphicMsgBuf msgBuffer;
sl@0
    83
	msgBuffer.CleanupClosePushL();
sl@0
    84
	msgBuffer.Append(TUid::Uid(0x12345670),KNullDesC8);
sl@0
    85
	TWsGraphicMsgBufParser msgParser(msgBuffer.Pckg());
sl@0
    86
	
sl@0
    87
	// test the verify method with a single message in the buffer
sl@0
    88
	if(msgParser.Verify() != KErrNone)
sl@0
    89
		{
sl@0
    90
		INFO_PRINTF1(_L("TWsGraphicMsgBufParser::Verify() failed for buffer length 1"));
sl@0
    91
		TEST(EFalse);
sl@0
    92
		}
sl@0
    93
		
sl@0
    94
	// remove the (only) message so the message buffer now has a length of zero
sl@0
    95
	msgBuffer.Remove(0);
sl@0
    96
	TEST(msgBuffer.Count()==0);
sl@0
    97
	
sl@0
    98
	// test the verify method with an zero length buffer
sl@0
    99
	if(msgParser.Verify() != KErrNone)
sl@0
   100
		{
sl@0
   101
		INFO_PRINTF1(_L("TWsGraphicMsgBufParser::Verify() failed for zero length buffer"));
sl@0
   102
		TEST(EFalse);
sl@0
   103
		}
sl@0
   104
	
sl@0
   105
	CleanupStack::PopAndDestroy(&msgBuffer);
sl@0
   106
	}
sl@0
   107
sl@0
   108
//--------------
sl@0
   109
__CONSTRUCT_STEP__(GraphicsDrawer)
sl@0
   110
sl@0
   111
sl@0
   112