sysstatemgmt/systemstateplugins/test/tintgsapolicy/src/tgsa_step_fleximergediffsubstate.cpp
author Tapani Kanerva <Tapani.Kanerva@nice.fi>
Thu, 11 Nov 2010 14:35:29 +0000
branchRCL_3
changeset 86 79105dd92dc2
parent 0 4e1aa6a622a0
permissions -rw-r--r--
Export meaningful default HWRM policy files, to fix Bug 3852

// Copyright (c) 2008-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 "tgsa_step_fleximergediffsubstate.h"
#include <f32file.h>
#include <s32file.h>
_LIT(KTestProcess, "gsatestprocgood.exe");

/**
Old Test CaseID 		AFSS-GSA-0036
New Test CaseID 		DEVSRVS-SSPLUGINS-GSA-0036
*/
void CGsaFlexiMergeDiffSubstateTest::DoTestFlexiMergeDiffSubstateL()
	{
	INFO_PRINTF1(_L("DoTestFlexiMergeDiffSubstateL test started...."));
	TInt num = FindAndKill(KTestProcess);
	INFO_PRINTF2(_L("The  number of processes found were: %d"),num);
	TEST (num == 2);
	INFO_PRINTF1(_L("DoTestFlexiMergeDiffSubstateL case completed\n"));
	}

//---------------- CGsaFlexiMergeDiffSubstateTest step ---------------------------------------


CGsaFlexiMergeDiffSubstateTest::~CGsaFlexiMergeDiffSubstateTest()
	{
	}

CGsaFlexiMergeDiffSubstateTest::CGsaFlexiMergeDiffSubstateTest()
	{
	SetTestStepName(KTGsaGsaFlexiMergeDiffSubstateStep);
	}

TVerdict CGsaFlexiMergeDiffSubstateTest::doTestStepPreambleL()
	{
	return CTestStep::doTestStepPreambleL();
	}

TVerdict CGsaFlexiMergeDiffSubstateTest::doTestStepPostambleL()
	{
	return CTestStep::doTestStepPostambleL();
	}

TVerdict CGsaFlexiMergeDiffSubstateTest::doTestStepL()
	{
	INFO_PRINTF1(_L("CGsaFlexiMergeDiffSubstateTest started...."));
	
	__UHEAP_MARK;
	// Run the tests
	TRAPD(err, DoTestFlexiMergeDiffSubstateL());
	INFO_PRINTF2(_L("DoTestFlexiMergeDiffSubstateL test completed with %d...."),err);
	TEST(err == KErrNone);
	__UHEAP_MARKEND;

	INFO_PRINTF1(_L("....CGsaFlexiMergeDiffSubstateTest completed!!"));
	return TestStepResult();
	}

/**
Helper function to find and kill the specified process
*/
TInt CGsaFlexiMergeDiffSubstateTest::FindAndKill(const TDesC& aProcessName)
	{
	TFullName searchTerm(aProcessName);
	StripExtension(searchTerm);
	searchTerm += _L("*");
	TFindProcess find(searchTerm);
	TFullName name;
	TInt instancesFound = 0;
	while(find.Next(name) == KErrNone)
		{
		RProcess process;
		const TInt err = process.Open(find);

		if (KErrNone == err)
			{
			if (process.ExitType() == EExitPending)
				{
				instancesFound++;
				process.Kill(KErrCancel);
				process.Close();
				INFO_PRINTF2(_L("Process %S found and killed"), &aProcessName);
				}
			process.Close();
			}
		}
	return instancesFound;
	}

/**
Helper function to strip extension
*/
void CGsaFlexiMergeDiffSubstateTest::StripExtension(TDes& aFilename)
	{
	TInt dot = aFilename.Find(_L("."));

	if(KErrNotFound != dot)
		{
		aFilename.SetLength(dot);
		}
	}