diff -r 000000000000 -r 96e5fb8b040d kerneltest/e32test/usbho/t_otgdi/src/testcase0456.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kerneltest/e32test/usbho/t_otgdi/src/testcase0456.cpp Thu Dec 17 09:24:54 2009 +0200 @@ -0,0 +1,164 @@ +// 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 +// Open/Close 'A' +// +// + + +#include +#include +#include // unicode builds +#include +#include +#include // RTest headder +#include "testcaseroot.h" +#include "testcasefactory.h" +#include "testcase0456.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-0456"); +const TTestCaseFactoryReceipt CTestCase0456::iFactoryReceipt(KTestCaseId); + + +CTestCase0456* CTestCase0456::NewL(TBool aHost) + { + LOG_FUNC + CTestCase0456* self = new (ELeave) CTestCase0456(aHost); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + + +CTestCase0456::CTestCase0456(TBool aHost) +: CTestCaseRoot(KTestCaseId, aHost) + { + LOG_FUNC + } + + +/** + ConstructL +*/ +void CTestCase0456::ConstructL() + { + LOG_FUNC + iRepeats = OPEN_REPEATS; + + BaseConstructL(); + } + + +CTestCase0456::~CTestCase0456() + { + LOG_FUNC + + Cancel(); + } + + +void CTestCase0456::ExecuteTestCaseL() + { + LOG_FUNC + iCaseStep = EPreconditions; + + CActiveScheduler::Add(this); + SelfComplete(); + } + + +void CTestCase0456::DescribePreconditions() + { + test.Printf(_L("Insert A connector beforehand.\n")); + } + + +void CTestCase0456::DoCancel() + { + LOG_FUNC + + // cancel our timer + iTimer.Cancel(); + } + + +// handle event completion +void CTestCase0456::RunStepL() + { + LOG_FUNC + + // Obtain the completion code for this CActive obj. + TInt completionCode(iStatus.Int()); + + switch(iCaseStep) + { + case EPreconditions: + { + test.Printf(KPressAnyKeyToStart); + iCaseStep = ELoadLdd; + RequestCharacter(); + break; + } + + + case ELoadLdd: + test.Printf(_L("Load the LDD iteration %d/%d\n"), OPEN_REPEATS-iRepeats+1, OPEN_REPEATS); + if (!StepLoadLDD()) + { + break; + } + + iCaseStep = EUnloadLdd; + SelfComplete(); + break; + case EUnloadLdd: + if (EFalse == StepUnloadLDD()) + return TestFailed(KErrAbort,_L("Unload Ldd failure")); + + iCaseStep = ELoopDecrement; + SelfComplete(); + break; + + case ELoopDecrement: + test.Printf(_L("Repeat test\n")); + + if (--iRepeats) + iCaseStep = ELoadLdd; + else + iCaseStep = ELastStep; + SelfComplete(); + break; + + // Finnished + case ELastStep: + // PASS + return TestPassed(); + + + default: + test.Printf(_L(" unknown test step")); + Cancel(); + TestPolicy().SignalTestComplete(KErrCorrupt); + break; + } + + } + +