Update contrib.
1 // Copyright (c) 2007-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.
14 // Tests for the TWsGraphicMsgBufParser
21 @internalComponent - Internal Symbian test code
24 #include "TGRAPHICSDRAWER.H"
25 #include "graphics/WSGRAPHICMSGBUF.H"
27 CTGraphicsDrawer::CTGraphicsDrawer(CTestStep* aStep):
30 INFO_PRINTF1(_L("Testing TWsGraphicMsgBufParser"));
33 void CTGraphicsDrawer::RunTestCaseL(TInt aCurTestCase)
35 ((CTGraphicsDrawerStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
39 ((CTGraphicsDrawerStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0449"));
40 INFO_PRINTF1(_L("TWsGraphicMsgBufParser Indefinite Loop Test"));
45 ((CTGraphicsDrawerStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
46 ((CTGraphicsDrawerStep*)iStep)->CloseTMSGraphicsStep();
47 INFO_PRINTF1(_L("Test complete\n"));
51 ((CTGraphicsDrawerStep*)iStep)->RecordTestResultL();
55 void CTGraphicsDrawer::ConstructL()
59 CTGraphicsDrawer::~CTGraphicsDrawer()
64 @SYMTestCaseID GRAPHICS-WSERV-0449
66 @SYMDEF DEF110513, PDEF112710
68 @SYMTestCaseDesc Tests that a zero length buffer does not cause an indefinate loop during verify
70 @SYMTestPriority Normal
72 @SYMTestStatus Implemented
74 @SYMTestActions Creates a buffer, puts it into a TWsGraphicMsgBufParser and calls verify on it
75 then removes the message from the buffer and re-tests verify.
77 @SYMTestExpectedResults Test should pass and not timeout
80 void CTGraphicsDrawer::IndefiniteLoopL()
82 RWsGraphicMsgBuf msgBuffer;
83 msgBuffer.CleanupClosePushL();
84 msgBuffer.Append(TUid::Uid(0x12345670),KNullDesC8);
85 TWsGraphicMsgBufParser msgParser(msgBuffer.Pckg());
87 // test the verify method with a single message in the buffer
88 if(msgParser.Verify() != KErrNone)
90 INFO_PRINTF1(_L("TWsGraphicMsgBufParser::Verify() failed for buffer length 1"));
94 // remove the (only) message so the message buffer now has a length of zero
96 TEST(msgBuffer.Count()==0);
98 // test the verify method with an zero length buffer
99 if(msgParser.Verify() != KErrNone)
101 INFO_PRINTF1(_L("TWsGraphicMsgBufParser::Verify() failed for zero length buffer"));
105 CleanupStack::PopAndDestroy(&msgBuffer);
109 __CONSTRUCT_STEP__(GraphicsDrawer)