sysstatemgmt/systemstatereferenceplugins/test/tunitcustcmd/src/tcmd_step_coopsysperformshutdownactions.cpp
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:34:26 +0100
branchRCL_3
changeset 22 8cb079868133
parent 21 ccb4f6b3db21
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

// 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 "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
 @test
 @internalComponent - Internal Symbian test code 
*/

#include "tcmd_step_coopsysperformshutdownactions.h"
#include "ssmcustomcmdfactory.h"
#include "cmdcoopsysperformshutdownactions.h"

CCustomCmdTestCoopSysPerformShutdownActions::~CCustomCmdTestCoopSysPerformShutdownActions()
	{
	}

CCustomCmdTestCoopSysPerformShutdownActions::CCustomCmdTestCoopSysPerformShutdownActions()
	{
	SetTestStepName(KTCCustomCmdTestCoopSysPerformShutdownActions);
	}

/**
Old Test CaseID 		APPFWK-CUSTCMD-0004
New Test CaseID 		DEVSRVS-SSREFPLUGINS-CUSTCMD-0004
 */

void CCustomCmdTestCoopSysPerformShutdownActions::TestCustomCmdCoopSysPerformShutdownActionsL()
	{
	_LIT(KTESTLOG, "TestCustomCmdCoopSysPerformShutdownActionsL");
	INFO_PRINTF1(KTESTLOG);

	MSsmCustomCommand* customCmdCoopSysPerformShutdownActions = SsmCustomCmdFactory::CmdCcoopSysPerformShutdownActionsNewL();
	CSsmCustomCommandEnv* cmdEnv = NULL;
	
	//Initialise the command. CSsmCustomCommandEnv is not used inside the Initialize so passing
	//null should be fine.
	customCmdCoopSysPerformShutdownActions->Initialize(cmdEnv);

	TRequestStatus status;
	//Some dummy reason code
	TInt reason = 1;
	TPckgC<TInt> pckgReasonCode(reason);

	//Execute the command
	customCmdCoopSysPerformShutdownActions->Execute(pckgReasonCode, status);
	
	//Wait for the command to be completed
	User::WaitForRequest(status);
	
	TEST(KErrNone == status.Int());
	
	//Execute the command once again
	customCmdCoopSysPerformShutdownActions->Execute(pckgReasonCode, status);

	TEST(KRequestPending == status.Int());
	
	//Cancel the commmand execution.
	customCmdCoopSysPerformShutdownActions->ExecuteCancel();
	
	//Refernce plugins doesnt have Cancel implementation and also by the time ExecuteCancel()
	// is called it might have completed executing Execute() function. Thats is the reason for 
	//checking the status to KErrNone instead of KErrCancel.
	User::WaitForRequest(status);
	TEST(KErrNone == status.Int());
	
	//Close the command
	customCmdCoopSysPerformShutdownActions->Close();
	
	//Releasing the comand will delete itself.
	customCmdCoopSysPerformShutdownActions->Release();
	}

TVerdict CCustomCmdTestCoopSysPerformShutdownActions::doTestStepL()
	{
	__UHEAP_MARK;
	TestCustomCmdCoopSysPerformShutdownActionsL();
	__UHEAP_MARKEND;
	return TestStepResult();
	}