fbs/fontandbitmapserver/trasterizer/test/trasterizerinvalid.cpp
author William Roberts <williamr@symbian.org>
Tue, 13 Jul 2010 17:02:10 +0100
changeset 113 f3c3c510a760
parent 0 5d03bc08d59c
permissions -rw-r--r--
Re-merge fixes for bug 1362, bug 1666, bug 1863, KhronosRI and bld.inf.

// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// trasterizerinvalid.h
// 
//

#include "trasterizerinvalid.h"

const TUid KUidInvalidInterface = {0xFFFFFFFF};

CTRasterizerInvalid::CTRasterizerInvalid()
	{
	SetTestStepName(KTRasterizerInvalidStep);
	}

/**
@SYMTestCaseID		
	GRAPHICS-FBSERV-RASTERIZER-010

@SYMTestPriority
	Normal

@SYMPREQ
	PREQ2096

@SYMREQ
	REQ10860
	REQ10861 
	
@SYMTestCaseDesc
	Test that CFbsRasterizer::GetInterface() returns the correct error code when
	passed a non-existent interface UID.

@SYMTestActions	
	Call CFbsRasterizer::GetInterface() with a UID of an interface that does not exist.

@SYMTestExpectedResults
	CFbsRasterizer::GetInterface() should return KErrExtensionNotSupported.
	The pointer to the in/out interface parameter should be set to NULL.
*/
void CTRasterizerInvalid::TestGetInterfaceL()
	{
	INFO_PRINTF1(_L("TestGetInterface"));		
	
	// Get the example rasterizer
	GetExampleRasterizerL();
	
	TAny* interfaceRet;
	TInt err = iRasterizer->GetInterface(KUidInvalidInterface, interfaceRet);
	TESTL(err == KErrExtensionNotSupported);
	TESTL(interfaceRet == NULL);
	}

/**
Override of base class pure virtual
Lists the tests to be run
*/
TVerdict CTRasterizerInvalid::doTestStepL()
	{		
	TestGetInterfaceL();
	
	return TestStepResult();
	}