telephonyserverplugins/simtsy/test/Te_Sim/Te_SimPhBkErrorOOBTest.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 11 May 2010 17:18:08 +0300
branchRCL_3
changeset 10 4284d6390a82
parent 0 3553901f7fa8
permissions -rw-r--r--
Revision: 201019 Kit: 201019

// Copyright (c) 2005-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:
//

#include "Te_SimPhBkErrorOOBTest.h"

CSimPhBkErrorOOBTest::CSimPhBkErrorOOBTest() 
	{ 
	SetTestStepName(_L("ErrorOOBTest"));
	}

TVerdict CSimPhBkErrorOOBTest::doTestStepL()
	{
	INFO_PRINTF1(_L("BeginPhBkErrorOOBTest"));

 	CreateConfigFileL(_L("c:\\config3.txt"));
 	SetTestNumberL(1);

  	TInt ret = iPhone.Open(iTelServer,KPhoneName); 
	INFO_PRINTF2(_L("Result: %d"),ret); 
	TESTL(ret == KErrNone); 
  	INFO_PRINTF1(_L("Opened phone object"));

  	INFO_PRINTF1(_L("Testing Get Phonebook store info from Phone level."));
  	TRequestStatus stat0;
  
  	TESTL(iPhonebook.Open(iPhone,KETelIccAdnPhoneBook)==KErrNone);
  	INFO_PRINTF1(_L("Opened Phonebook object"));
  
  	INFO_PRINTF1(_L("Retrieve Phonebook Information"));
  	RMobilePhoneBookStore::TMobilePhoneBookInfoV1 info;
  	RMobilePhoneBookStore::TMobilePhoneBookInfoV1Pckg infoPckg(info);
  	iPhonebook.GetInfo(stat0,infoPckg);
  	User::WaitForRequest(stat0);
  	TESTL(stat0==KErrNone);
  
  	INFO_PRINTF1(_L("Testing Phonebook Read"));
  	TESTL(info.iMaxNumLength==50);
  	TESTL(info.iMaxTextLength==60);
  	TESTL(info.iLocation==RMobilePhoneBookStore::ELocationIccMemory);
  	TESTL(info.iChangeCounter==0);
  	TESTL(info.iType==RMobilePhoneStore::EPhoneBookStore);
  	TESTL(info.iTotalEntries==100);
  	TESTL(info.iUsedEntries==2);
  	TESTL(info.iCaps==KPhBkStoreCaps);
  	TESTL(info.iName.Match(KETelIccAdnPhoneBook)==0);
  
  	INFO_PRINTF1(_L("Test simulated errors"));
  	iPhonebook.GetInfo(stat0,infoPckg);
  	User::WaitForRequest(stat0);
  	TESTL(stat0==-1000);
  
  	iPhonebook.GetInfo(stat0,infoPckg);
  	User::WaitForRequest(stat0);
  	TESTL(stat0==KErrNone);
  
  	iPhonebook.GetInfo(stat0,infoPckg);
  	User::WaitForRequest(stat0);
   	TESTL(stat0==-1001);
  
  	INFO_PRINTF1(_L("Test Out of Band Store"));
  	TUint32 notifyEvent;
  	TInt notifyIndex;
  	iPhonebook.NotifyStoreEvent(stat0,notifyEvent,notifyIndex);
  	User::WaitForRequest(stat0);
  	TESTL(stat0==KErrNone);
  	TESTL(notifyEvent==(RMobilePhoneStore::KStoreHasSpace |
  						RMobilePhoneStore::KStoreEntryAdded));
  	TESTL(notifyIndex==5);
  
  	iPhonebook.GetInfo(stat0,infoPckg);
  	User::WaitForRequest(stat0);
  	TESTL(stat0==KErrNone);
  	TESTL(info.iUsedEntries==3);
  
  	TInt numEntries=1;
  	TBuf8<100> phBkBuf;
  	iPhonebook.Read(stat0,notifyIndex,numEntries,phBkBuf);
  	User::WaitForRequest(stat0);
	CHECKPOINT_EXL((stat0==KErrNone), CHP_PHBK_CASE("F.3"));

	TESTL(phBkBuf.Length()==sizeof(KTestPhonebookC));
  	
  	for(TInt i=0;i<phBkBuf.Length();i++)
  	    {
        TESTL(phBkBuf[i]==KTestPhonebookC[i]);
		}
  		
	
  	INFO_PRINTF1(_L("Test Out of Band Delete"));
  	iPhonebook.NotifyStoreEvent(stat0,notifyEvent,notifyIndex);
  	User::WaitForRequest(stat0);
	CHECKPOINT_EXL((stat0==KErrNone), CHP_PHBK_CASE("F.9"));
  	TESTL(notifyEvent==(RMobilePhoneStore::KStoreHasSpace |
  						RMobilePhoneStore::KStoreEntryDeleted));
  	TESTL(notifyIndex==5);
	notifyIndex=101;
	iPhonebook.Read(stat0,notifyIndex,numEntries,phBkBuf);
  	User::WaitForRequest(stat0);
	CHECKPOINTL(stat0, KErrArgument, CHP_PHBK_CASE("F.4"));

  	iPhonebook.GetInfo(stat0,infoPckg);
  	User::WaitForRequest(stat0);
  	TESTL(stat0==KErrNone);
  	TESTL(info.iUsedEntries==2);
  
  	iPhonebook.Close(); //CHP_PHBK_CASE("F.12");
  	iPhone.Close();
	ASSERT(RThread().RequestCount()==0);

	return TestStepResult();
	}