usbmgmt/usbmgrtest/t_usbmanager_suite/T_UsbManager/src/CStartNewPersonality.cpp
changeset 0 c9bc50fca66e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/usbmgmt/usbmgrtest/t_usbmanager_suite/T_UsbManager/src/CStartNewPersonality.cpp	Tue Feb 02 02:02:59 2010 +0200
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "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
+*/
+#include <test/testexecutelog.h>
+#include "CUsbTestStepBase.h"
+#include "CStartNewPersonality.h"
+
+CStartNewPersonality::CStartNewPersonality()
+
+	{
+	// Call base class method to set up the human readable name for logging
+	SetTestStepName(KStartNewPersonality);
+	//We need the service to continue running after the test so that usbcheck
+	//can find the device connected to the PC.
+	iStopService = EFalse;
+	}
+
+TVerdict CStartNewPersonality::doTestStepL()
+	{
+	SetTestStepResult(EFail);
+	//Read personality from ini file
+	TInt personality;
+	_LIT(KPersonality, "personality"); 
+	if (!GetIntFromConfig(ConfigSection(), KPersonality, personality))
+		{
+		INFO_PRINTF1(_L("Can't get personality id from config file"));
+		return TestStepResult();
+		}
+		
+	TInt err;
+	err = SetIdle(iUsb);
+	if (err != KErrNone)
+		{
+		INFO_PRINTF2(_L("Unable to stop USB service: %d"), err);
+		return TestStepResult();
+		}
+	
+	//TryStart with new personality
+	TUsbServiceState state;
+	TRequestStatus status;
+	iUsb.TryStart(personality, status);
+	User::WaitForRequest(status);
+	if (status != KErrNone)
+		{
+		INFO_PRINTF2(_L("Unable to start USB service: %d"), status.Int());
+		return TestStepResult();
+		}
+	err = iUsb.GetServiceState(state);
+	if (err != KErrNone)
+		{
+		INFO_PRINTF2(_L("GetServiceState returned error code %d"), err);
+		return TestStepResult();
+		}
+	if (state != EUsbServiceStarted)
+		{
+		INFO_PRINTF2(_L("USB service is in the wrong state: %d"), state);
+		return TestStepResult();
+		}
+		
+	SetTestStepResult(EPass);
+	return TestStepResult();
+	}
+