kerneltest/e32test/usbho/t_usbdi/inc/PBASE-T_USBDI-0479.h
author hgs
Wed, 22 Sep 2010 10:53:45 +0100
changeset 271 dc268b18d709
parent 0 a41df078684a
permissions -rw-r--r--
201037_07

#ifndef __TEST_CASE_PBASE_T_USBDI_0479_H
#define __TEST_CASE_PBASE_T_USBDI_0479_H

/*
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:
* @file PBASE-T_USBDI-0479.h
* @internalComponent
* 
*
*/



 
#include "BaseTestCase.h"
#include "TestCaseFactory.h"
#include "FDFActor.h"
#include "modelleddevices.h"
#include "controltransferrequests.h"
#include <d32usbc.h>
#include <e32debug.h>
#include <d32usbdi.h>

namespace NUnitTesting_USBDI
	{

/**

	
	@SYMTestCaseID				PBASE-T_USBDI-0479
	@SYMTestCaseDesc			Validation of interface ownership
	@SYMFssID 
	@SYMPREQ					1782
	@SYMREQ						7044 [USBD : Controlled access to 'owned' interfaces]
	@SYMTestType				UT
	@SYMTestPriority			1 
	@SYMTestActions 			1. Open interfaces on connected device
								2. Attempt to open an interface with a token
								   that is known to be invalid
	@SYMTestExpectedResults 	Error from opening an interface with an invalid token
	@SYMTestStatus				Implemented
	

*/
class CUT_PBASE_T_USBDI_0479 : public CBaseTestCase, public MUsbBusObserver, public MCommandObserver
	{
public:
	static CUT_PBASE_T_USBDI_0479* NewL(TBool aHostRole);
	~CUT_PBASE_T_USBDI_0479(); 

public: // From MUsbBusObserver
	void DeviceInsertedL(TUint aDeviceHandle);
	void DeviceRemovedL(TUint aDeviceHandle);
	void BusErrorL(TInt aError);
	void DeviceStateChangeL(RUsbDevice::TDeviceState aPreviousState,RUsbDevice::TDeviceState aNewState,
		TInt aCompletionCode);
		
public: // From MCommandObserver
	void Ep0TransferCompleteL(TInt aCompletionCode);
	
private:
	CUT_PBASE_T_USBDI_0479(TBool aHostRole);
	void ConstructL();
	void ExecuteHostTestCaseL();
	void ExecuteDeviceTestCaseL();
	void HostDoCancel();
	void DeviceDoCancel();
	void HostRunL();
	void DeviceRunL();

private:
	enum TCaseStep
		{
		EInProgress,
		EFailed,
		EPassed
		};
	
	CActorFDF* iActorFDF;
	RUsbInterface iUsbInterface0;
	RUsbInterface iDuplicateUsbInterface0;
	CEp0Transfer* iClientAction;
	
	TCaseStep iCaseStep;
	
	RUsbDeviceVendor* iTestDevice;

private:
	/**
	The functor for this test case for the factory
	*/
	const static TFunctorTestCase<CUT_PBASE_T_USBDI_0479,TBool> iFunctor;
	};

	}


#endif