os/kernelhwsrv/kerneltest/e32test/usbho/t_usbdi/inc/PBASE-T_USBDI-0472.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/kerneltest/e32test/usbho/t_usbdi/inc/PBASE-T_USBDI-0472.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,109 @@
     1.4 +#ifndef __TEST_CASE_PBASE_T_USBDI_0472_H
     1.5 +#define __TEST_CASE_PBASE_T_USBDI_0472_H
     1.6 +
     1.7 +/*
     1.8 +* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.9 +* All rights reserved.
    1.10 +* This component and the accompanying materials are made available
    1.11 +* under the terms of the License "Eclipse Public License v1.0"
    1.12 +* which accompanies this distribution, and is available
    1.13 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.14 +*
    1.15 +* Initial Contributors:
    1.16 +* Nokia Corporation - initial contribution.
    1.17 +*
    1.18 +* Contributors:
    1.19 +*
    1.20 +* Description:
    1.21 +* @file PBASE-T_USBDI-0472.h 
    1.22 +* @internalComponent
    1.23 +* 
    1.24 +*
    1.25 +*/
    1.26 +
    1.27 +
    1.28 +
    1.29 +
    1.30 +#include "BaseTestCase.h"
    1.31 +#include "TestCaseFactory.h"
    1.32 +#include <d32usbdi.h>
    1.33 +#include "modelleddevices.h"
    1.34 +#include "FDFActor.h"
    1.35 +#include "controltransferrequests.h"
    1.36 +
    1.37 +namespace NUnitTesting_USBDI
    1.38 +	{
    1.39 +
    1.40 +/**
    1.41 +
    1.42 +	
    1.43 +	@SYMTestCaseID				PBASE-T_USBDI-0472
    1.44 +	@SYMTestCaseDesc			Test for device attachement notification
    1.45 +	@SYMFssID 
    1.46 +	@SYMPREQ					1782
    1.47 +	@SYMREQ						7072 [USBD : Device attachment notification]
    1.48 +								7073 [USBD : Device removal notification]
    1.49 +								7058 [USBD : Descriptor access]
    1.50 +	@SYMTestType				UT
    1.51 +	@SYMTestPriority			1 
    1.52 +	@SYMTestActions 			1. Monitor for USB device connections
    1.53 +								2. Once a device is connected wait for notification of removal
    1.54 +								3. Monitor for device connection again and then succesfully cancel
    1.55 +								   the notification.
    1.56 +	@SYMTestExpectedResults 	Notification of correct device attached
    1.57 +	@SYMTestStatus				Implemented
    1.58 +	
    1.59 +
    1.60 +*/	
    1.61 +class CUT_PBASE_T_USBDI_0472 : public CBaseTestCase, public MUsbBusObserver, public MCommandObserver
    1.62 +	{
    1.63 +public:
    1.64 +	static CUT_PBASE_T_USBDI_0472* NewL(TBool aHostRole);
    1.65 +	~CUT_PBASE_T_USBDI_0472(); 
    1.66 +
    1.67 +public: // From MDeviceNotifier
    1.68 +	void DeviceInsertedL(TUint aDeviceHandle);
    1.69 +	void DeviceRemovedL(TUint aDeviceHandle);
    1.70 +	void BusErrorL(TInt aError);
    1.71 +	void DeviceStateChangeL(RUsbDevice::TDeviceState aPreviousState,RUsbDevice::TDeviceState aNewState,
    1.72 +		TInt aCompletionCode);
    1.73 +
    1.74 +public: // From MCommandObserver
    1.75 +	void Ep0TransferCompleteL(TInt aCompletionCode);
    1.76 +
    1.77 +private:
    1.78 +	CUT_PBASE_T_USBDI_0472(TBool aHostRole);
    1.79 +	void ConstructL();
    1.80 +	void ExecuteHostTestCaseL();
    1.81 +	void ExecuteDeviceTestCaseL();
    1.82 +	void HostDoCancel();
    1.83 +	void DeviceDoCancel();
    1.84 +	void HostRunL();
    1.85 +	void DeviceRunL();
    1.86 +	
    1.87 +private:
    1.88 +	enum TCaseSteps 
    1.89 +		{
    1.90 +		EConnectDevice,
    1.91 +		ERemoveDevice,
    1.92 +		EConnectCancelled,
    1.93 +		EPassed,
    1.94 +		EFailed
    1.95 +		};
    1.96 +		
    1.97 +	RUsbDeviceVendor* iTestDevice;
    1.98 +	CActorFDF* iActorFDF;
    1.99 +	RUsbInterface iInterface0;
   1.100 +	CEp0Transfer* iClientAction;
   1.101 +	TCaseSteps iCaseStep;
   1.102 +	
   1.103 +private:
   1.104 +	/**
   1.105 +	The functor for this test case for the factory
   1.106 +	*/
   1.107 +	const static TFunctorTestCase<CUT_PBASE_T_USBDI_0472,TBool> iFunctor;
   1.108 +	};
   1.109 +
   1.110 +	}
   1.111 +	
   1.112 +#endif // __TEST_CASE_PBASE_T_USBDI_0472_H
   1.113 \ No newline at end of file