sysstatemgmt/systemstateplugins/test/tunitadptplugin/src/tmisc_adaptationplugin_step.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 00:53:00 +0200
changeset 0 4e1aa6a622a0
child 21 ccb4f6b3db21
permissions -rw-r--r--
Revision: 201003

// 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 <s32mem.h>
#include "tmisc_adaptationplugin_step.h"

//
// Run the tests
//

CTestMiscAdaptationPlugin::CTestMiscAdaptationPlugin()
	:CAdaptationTestBase(KTCTestMiscAdaptationPlugin)
	{
	
	}

CTestMiscAdaptationPlugin::~CTestMiscAdaptationPlugin()
	{

	}



void CTestMiscAdaptationPlugin::TestSecurityStateChange()
	{
	INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::TestSecurityStateChange"));

	TRequestStatus status;
	TPckgBuf <TInt> responsePckg;
	TInt state = 0;
	iSsmMiscAdaptation.SecurityStateChange(state, responsePckg, status);
	User::WaitForRequest(status);

	if(iSsmMiscAdaptation.Handle())
		{
		TEST(KErrNone == status.Int());	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestSecurityStateChange completed with %d error : expected %d>"),status.Int(),KErrNone);	
		}
	else
		{
		TEST(KErrDisconnected == status.Int());	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestSecurityStateChange completed with %d error : expected %d>"),status.Int(),KErrDisconnected);	
		}
	}

void CTestMiscAdaptationPlugin::TestGetGlobalStartupMode()
	{
	INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::TestGetGlobalStartupMode"));

	TRequestStatus status;
	TPckgBuf <TInt> modePckg;
	iSsmMiscAdaptation.GetGlobalStartupMode(modePckg, status);
	User::WaitForRequest(status);

	if(iSsmMiscAdaptation.Handle())
		{
		TEST(KErrNone == status.Int());	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestGetGlobalStartupMode completed with %d error : expected %d>"),status.Int(),KErrNone);	
		}
	else
		{
		TEST(KErrDisconnected == status.Int());	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestGetGlobalStartupMode completed with %d error : expected %d>"),status.Int(),KErrDisconnected);	
		}
	}

void CTestMiscAdaptationPlugin::DoTestPrepareSimLanguages(TSsmLanguageListPriority aPriority)
    {
    INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::DoTestPrepareSimLanguages"));

    TRequestStatus status;
    TPckgBuf <TInt> sizePckg;

    iSsmMiscAdaptation.PrepareSimLanguages(aPriority, sizePckg, status);
    User::WaitForRequest(status);
    
    if(iSsmMiscAdaptation.Handle())
        {
        TEST(KErrNotSupported == status.Int()); 
        INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::DoTestPrepareSimLanguages completed with %d error : expected %d>"),status.Int(),KErrNotSupported);    
        }
    else
        {
        TEST(KErrDisconnected == status.Int()); 
        INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::DoTestPrepareSimLanguages completed with %d error : expected %d>"),status.Int(),KErrDisconnected);    
        }

    }

void CTestMiscAdaptationPlugin::TestPrepareSimLanguages()
	{
	INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::TestPrepareSimLanguages"));

	DoTestPrepareSimLanguages(EPrimaryLanguages);

	DoTestPrepareSimLanguages(ESecondaryLanguages);
	
	DoTestPrepareSimLanguages(ETertiaryLanguages);
	}

void CTestMiscAdaptationPlugin::TestGetSimLanguages()
	{
	INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::TestGetSimLanguages"));

	//Testing PrepareSimLaguages 
	DoTestPrepareSimLanguages(EPrimaryLanguages);

	TInt simLanguageCount = 2; //Setting simLanguageCount to dummy value '2' for testing as the server would not have written any response in sizePckg and hence it will contain garbage value
	TRAPD(res,iSsmMiscAdaptation.SimLanguagesArrayL(simLanguageCount));
	
	if(iSsmMiscAdaptation.Handle())
		{
		TEST(KErrNotSupported == res);	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestGetSimLanguages completed with %d error : expected %d>"),res,KErrNotSupported);	
		}
	else
		{
		TEST(KErrDisconnected == res);	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestGetSimLanguages completed with %d error : expected %d>"),res,KErrDisconnected);	
		}
	}

void CTestMiscAdaptationPlugin::TestGetHiddenReset()
	{
	INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::TestGetHiddenReset"));

	TRequestStatus status;
	TPckgBuf<TBool> hiddenResetPckg;
	iSsmMiscAdaptation.GetHiddenReset(hiddenResetPckg, status);
	User::WaitForRequest(status);

	if(iSsmMiscAdaptation.Handle())
		{
		TEST(KErrNotSupported == status.Int());	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestGetHiddenReset completed with %d error : expected %d>"),status.Int(),KErrNotSupported);	
		}
	else
		{
		TEST(KErrDisconnected == status.Int());	
		INFO_PRINTF3(_L("CTestMiscAdaptationPlugin::TestGetHiddenReset completed with %d error : expected %d>"),status.Int(),KErrDisconnected);	
		}
	}

void CTestMiscAdaptationPlugin::TestCancel()
	{
	INFO_PRINTF1(_L(" >CTestMiscAdaptationPlugin::TestCancel"));
	iSsmMiscAdaptation.Cancel();
	INFO_PRINTF1(_L(" CTestMiscAdaptationPlugin::TestCancel>"));	
	}


//from CAdaptationTestBase
TVerdict CTestMiscAdaptationPlugin::doTestStepL()
	{
	__UHEAP_MARK;
	
	TestSecurityStateChange();

	TestGetGlobalStartupMode();
	
	TestPrepareSimLanguages();

	TestGetSimLanguages();
	
	TestGetHiddenReset();

	TestCancel();
	
	User::LeaveIfError(iSsmMiscAdaptation.Connect());

	TestSecurityStateChange();

	TestGetGlobalStartupMode();
	
	TestPrepareSimLanguages();

	TestGetSimLanguages();
	
	TestGetHiddenReset();

	TestCancel();
	//TestRelease();			// have to test this part too ...

	__UHEAP_MARKEND;

	return TestStepResult();
	}