os/kernelhwsrv/kerneltest/e32test/usbho/t_usbdi/inc/PBASE-T_USBDI-1235.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-1235.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,145 @@
     1.4 +#ifndef __TEST_CASE_PBASE_T_USBDI_1235_H
     1.5 +#define __TEST_CASE_PBASE_T_USBDI_1235_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-1235.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 <d32usbdi_hubdriver.h>
    1.34 +#include "FDFActor.h"
    1.35 +#include "modelleddevices.h"
    1.36 +#include "controltransferrequests.h"
    1.37 +#include "basicwatcher.h"
    1.38 +#include "basebulktestcase.h" // use the bulktransfertimer.
    1.39 +#include "hosttransfers.h"
    1.40 +
    1.41 +namespace NUnitTesting_USBDI
    1.42 +	{
    1.43 +
    1.44 +/**
    1.45 +	
    1.46 +	@SYMTestCaseID				PBASE-T_USBDI-1235
    1.47 +	@SYMTestCaseDesc			Cancel immediately after requesting device suspension , do not care the devic's tate is suspend or resume.
    1.48 +	@SYMFssID                   DEF126984
    1.49 +	@SYMPREQ					BR2609
    1.50 +
    1.51 +	@SYMTestType				UT
    1.52 +	@SYMTestPriority			1 
    1.53 +	@SYMTestActions 			suspend device and immediately cancel suspend request.
    1.54 +	@SYMTestExpectedResults 	Correct suspension and device resumption can be established
    1.55 +	@SYMTestStatus				Implemented	
    1.56 +
    1.57 +*/	
    1.58 +
    1.59 +	class CBulkTransfer;
    1.60 +
    1.61 +	class CUT_PBASE_T_USBDI_1235 : public CBaseTestCase,
    1.62 +		public MUsbBusObserver, public MCommandObserver
    1.63 +		
    1.64 +		{
    1.65 +public:
    1.66 +		static CUT_PBASE_T_USBDI_1235* NewL(TBool aHostRole);
    1.67 +		~CUT_PBASE_T_USBDI_1235();
    1.68 +
    1.69 +		static TInt Interface0ResumedL(TAny* aPtr);
    1.70 +		static TInt Interface1ResumedL(TAny* aPtr);
    1.71 +
    1.72 +private:
    1.73 +		enum TCaseSteps
    1.74 +			{
    1.75 +			EInProcess,
    1.76 +			ECancelSuspendWhenInterfaceSuspension,
    1.77 +			EValidCancelSuspendAfterInterfaceSuspend,
    1.78 +			EFailed,
    1.79 +			EPassed
    1.80 +			};
    1.81 +
    1.82 +		enum TDeviceInsertedError
    1.83 +			{
    1.84 +			ENone,
    1.85 +			EError,
    1.86 +			EFatalError,
    1.87 +			};
    1.88 +
    1.89 +public:
    1.90 +		// From MUsbBusObserver
    1.91 +		void DeviceInsertedL(TUint aDeviceHandle);
    1.92 +		void DeviceRemovedL(TUint aDeviceHandle);
    1.93 +		void BusErrorL(TInt aError);
    1.94 +		void DeviceStateChangeL(RUsbDevice::TDeviceState aPreviousState,
    1.95 +				RUsbDevice::TDeviceState aNewState, TInt aCompletionCode);
    1.96 +
    1.97 +public:
    1.98 +		// From MCommandObserver
    1.99 +		void Ep0TransferCompleteL(TInt aCompletionCode);
   1.100 +
   1.101 +public:
   1.102 +		
   1.103 +
   1.104 +public:
   1.105 +	
   1.106 +private:
   1.107 +		CUT_PBASE_T_USBDI_1235(TBool aHostRole);
   1.108 +		void ConstructL();
   1.109 +		void ExecuteHostTestCaseL();
   1.110 +		void ExecuteDeviceTestCaseL();
   1.111 +		void HostDoCancel();
   1.112 +		void DeviceDoCancel();
   1.113 +		void HostRunL();
   1.114 +		void DeviceRunL();
   1.115 +
   1.116 +	
   1.117 +private:
   1.118 +
   1.119 +		void SuspendDeviceByInterfacesAndCancelWaitForResume();	
   1.120 +		void SendEp0Request(); // for b device stop
   1.121 +		
   1.122 +
   1.123 +private:
   1.124 +
   1.125 +		CActorFDF* iActorFDF;
   1.126 +		CEp0Transfer* iControlEp0;
   1.127 +		RUsbInterface iUsbInterface0;
   1.128 +		RUsbInterface iUsbInterface1;
   1.129 +		CInterfaceWatcher* iInterface0Watcher;
   1.130 +		CInterfaceWatcher* iInterface1Watcher;
   1.131 +		TBool iSuspendedI0;
   1.132 +		TBool iSuspendedI1;
   1.133 +		TUint iDeviceHandle;
   1.134 +		
   1.135 +		RUsbDeviceA* iTestDevice;					
   1.136 +		TCaseSteps iCaseStep;
   1.137 +
   1.138 +
   1.139 +private:
   1.140 +		/**
   1.141 +		 The functor for this test case for the factory
   1.142 +		 */
   1.143 +		const static TFunctorTestCase<CUT_PBASE_T_USBDI_1235,TBool> iFunctor;
   1.144 +		};
   1.145 +
   1.146 +	}
   1.147 +	
   1.148 +#endif