commsconfig/commsdatabaseshim/TE_commdb/src/step_055_xx.cpp
author hgs
Mon, 06 Sep 2010 13:49:23 +0100
changeset 72 ae47d0499bee
permissions -rw-r--r--
201033_02

//
// Copyright (c) 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:
//
//
// 
 
// EPOC includes
#include <e32base.h>
#include <commdb.h>
#include <d32comm.h>
#include <cdbstore.h>

// Test system includes
#include "Teststepcommdb.h"
#include "comms-infras/commdb/protection/protectdb.h"
#include "comms-infras/commdb/protection/protectcpdb.h"

#include <cdbpreftable.h>

#include "step_055_xx.h"

/////////////////////
//	Test step 055.01
/////////////////////

//TestProtectTables
CCommDbTest055_01::CCommDbTest055_01()
{
	// store the name of this test case
	SetTestStepName(_L("step_055_01"));
}

CCommDbTest055_01::~CCommDbTest055_01()
{
	delete iTheDb;
}

TVerdict CCommDbTest055_01::doTestStepPreambleL()
	{	
	iTheDb = CCommsDatabase::NewL(EDatabaseTypeIAP);
        SetTestStepResult(EPass);	return TestStepResult();
	}

enum TVerdict CCommDbTest055_01::doTestStepL( void )
	{

	INFO_PRINTF1(_L("Test Normal Table : Protection .."));
	SetTestStepResult(EPass);
	CCommsDbProtectTableView* table = (CCommsDbProtectTableView *)iTheDb->OpenTableLC(TPtrC(DIAL_OUT_ISP));
	CheckTableIsNotProtectedL(table);

	TUint32 recordId;
	table->ReadUintL(TPtrC(COMMDB_ID),recordId);
	
	TESTL(table->ProtectTable()==KErrNone);
	TUint32 postProtectRecordId;
	table->ReadUintL(TPtrC(COMMDB_ID),postProtectRecordId);
	TESTL(postProtectRecordId==recordId);
	
	CheckTableIsProtectedL(table);
	SetTestStepResult(EPass);	INFO_PRINTF1(_L("\t\tSUCCESS"));

	CleanupStack::PopAndDestroy(); 
	return TestStepResult();
	}


/////////////////////
//	Test step 055.02
/////////////////////


//TestUnprotectTables
CCommDbTest055_02::CCommDbTest055_02()
{
	// store the name of this test case
	SetTestStepName(_L("step_055_02"));
}

CCommDbTest055_02::~CCommDbTest055_02()
{
	delete iTheDb;
}

TVerdict CCommDbTest055_02::doTestStepPreambleL()
	{	
	iTheDb = CCommsDatabase::NewL(EDatabaseTypeIAP);
        SetTestStepResult(EPass);	return TestStepResult();
	}

//Protect Connection Preference Record
enum TVerdict CCommDbTest055_02::doTestStepL( void )
	{

	INFO_PRINTF1(_L("Test Normal Table : unprotection .."));
	SetTestStepResult(EPass);
	CCommsDbProtectTableView* table = (CCommsDbProtectTableView *)iTheDb->OpenTableLC(TPtrC(DIAL_OUT_ISP));
	CheckTableIsProtectedL(table);

	TUint32 recordId;
	table->ReadUintL(TPtrC(COMMDB_ID),recordId);
	
	TESTL(table->UnprotectTable()==KErrNone);
	TUint32 postProtectRecordId;
	table->ReadUintL(TPtrC(COMMDB_ID),postProtectRecordId);
	TESTL(postProtectRecordId==recordId);
	
	CheckTableIsNotProtectedL(table);
	
	SetTestStepResult(EPass);	INFO_PRINTF1(_L("\t\tSUCCESS"));

	CleanupStack::PopAndDestroy(); 
	return TestStepResult();
	}