usbmgmt/usbmgrtest/t_usbmanager_suite/T_UsbManager/src/CStartNewPersonality.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 02:02:59 +0200
changeset 0 c9bc50fca66e
permissions -rw-r--r--
Revision: 201001 Kit: 201005

/*
* 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();
	}