diff -r 000000000000 -r 96e5fb8b040d kerneltest/e32test/usbho/t_otgdi/src/testcase0671.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kerneltest/e32test/usbho/t_otgdi/src/testcase0671.cpp Thu Dec 17 09:24:54 2009 +0200 @@ -0,0 +1,230 @@ +// 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: +// @internalComponent +// +// + +#include +#include +#include // unicode builds +#include +#include +#include // RTest headder +#include "testcaseroot.h" +#include "testcasewd.h" +#include "testcase0671.h" + + + +// the name below is used to add a pointer to our construction method to a pointer MAP in +// the class factory +_LIT(KTestCaseId,"PBASE-USB_OTGDI-0671"); +const TTestCaseFactoryReceipt CTestCase0671::iFactoryReceipt(KTestCaseId); + +CTestCase0671* CTestCase0671::NewL(TBool aHost) + { + LOG_FUNC + CTestCase0671* self = new (ELeave) CTestCase0671(aHost); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + + +CTestCase0671::CTestCase0671(TBool aHost) +: CTestCaseRoot(KTestCaseId, aHost) + { + LOG_FUNC + + } + + +/** + ConstructL +*/ +void CTestCase0671::ConstructL() + { + iWDTimer = CTestCaseWatchdog::NewL(); + + BaseConstructL(); + } + + +CTestCase0671::~CTestCase0671() + { + + Cancel(); + delete iWDTimer; + } + + +void CTestCase0671::ExecuteTestCaseL() + { + iCaseStep = EPreconditions; + iRepeats = KOperationRetriesMax; // VBus event rise retries + CActiveScheduler::Add(this); + SelfComplete(); + + } + + +void CTestCase0671::DoCancel() + { + LOG_FUNC + + // cancel our timer + iTimer.Cancel(); + } + + +void CTestCase0671::CancelKB(CTestCaseRoot *pThis) + { + CTestCase0671 * p = REINTERPRET_CAST(CTestCase0671 *,pThis); + + // cancel the pending call + p->iConsole->ReadCancel(); + } + + +void CTestCase0671::CancelDrive(CTestCaseRoot *pThis) + { + CTestCase0671 * p = REINTERPRET_CAST(CTestCase0671 *,pThis); + // cancel any pending call, and then complete our active obj with a timeout value + p->SelfComplete(KTestCaseWatchdogTO); + } + + +void CTestCase0671::DescribePreconditions() + { + // H4 width **************************** + test.Printf(_L("***************************\n")); + test.Printf(_L("* This test uses a Mini-A *\n")); + test.Printf(_L("* to Mini-B cable to link *\n")); + test.Printf(_L("* the H4 board to the OPT *\n")); + test.Printf(_L("* and makes use of the *\n")); + test.Printf(_L("* USB OPT test code *\n")); + test.Printf(_L("***************************\n")); + } + + +// handle event completion +void CTestCase0671::RunStepL() + { + LOG_FUNC + // Obtain the completion code for this CActive obj. + TInt completionCode(iStatus.Int()); + TBuf aDescription; + + switch(iCaseStep) + { + case EPreconditions: + if (iAutomated) + { + return TestFailed(KErrAbort,_L("This Test Cannot Run in Automated Mode")); + } + SelfComplete(); + iCaseStep = ELoadWithOptTestMode; + break; + + case ELoadWithOptTestMode: + if (!StepLoadClient(0x0671/*use default settings for SRP/HNP support*/)) + { + return TestFailed(KErrAbort,_L("Client Load Failure")); + } + StepSetOptActive(); + if (!StepLoadLDD()) + { + return TestFailed(KErrAbort,_L("OTG Load Failure")); + } + iCaseStep = EConnectAtoB; + SelfComplete(); + break; + + case EConnectAtoB: + // H4 width **************************** + test.Printf(_L("\n")); + test.Printf(_L("***********************\n")); + test.Printf(_L("Connect H4(B) to OPT(A)\n")); + test.Printf(KPressAnyKeyToContinue); + + iCaseStep = EStartOptTD5_5; + RequestCharacter(); + break; + + case EStartOptTD5_5: + // H4 width **************************** + test.Printf(_L("On the OPT, select:\n")); + test.Printf(_L(" Certified FS-B-UUT Test\n")); + test.Printf(_L(" Test TD.5.5\n")); + test.Printf(_L(" And then Click 'Run' ")); + test.Printf(_L(" When test starts, press any key")); + iCaseStep = EPromptYOpt5_5; + RequestCharacter(); + break; + + case EPromptYOpt5_5: + iCaseStep = EConfirmOpt5_5; + test.Printf(_L("Did it PASS (Y/N)?")); + RequestCharacter(); // 30 seconds for user input + iWDTimer->IssueRequest(KDelayDurationForTest4_5, this, &CancelKB); + break; + + case EConfirmOpt5_5: + // Check watchdog timeout, assume it failed + if (KTestCaseWatchdogTO == iStatus.Int()) + { + // H4 width **************************** + return TestFailed(KErrAbort, _L("OPT timeout - Test Failed")); + } + iWDTimer->Cancel(); + + // Check user response, look only for 'Y' + if (('y' == iKeyCodeInput) ||('Y' == iKeyCodeInput)) + { + iCaseStep = EUnloadLdd; + SelfComplete(); + } + else + { + return TestFailed(KErrAbort, _L("TD.5.5 - FAILED!")); + } + break; + + case EUnloadLdd: + // unload otg + if (!StepUnloadLDD()) + { + return TestFailed(KErrAbort,_L("OTG Unload Failure")); + } + // unload client + if (!StepUnloadClient()) + { + return TestFailed(KErrAbort,_L("Client Unload Failure")); + } + iCaseStep = ELastStep; + SelfComplete(); + break; + + case ELastStep: + TestPassed(); + break; + + default: + test.Printf(_L(" unknown test step")); + Cancel(); + return (TestFailed(KErrCorrupt, _L(" unknown test step"))); + } + } +