--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/commsconfig/commsdatabaseshim/ts_commdb/step_054_xx.cpp Thu Dec 17 09:22:25 2009 +0200
@@ -0,0 +1,140 @@
+// Copyright (c) 2003-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 <networking/log.h>
+#include <networking/teststep.h>
+#include "Teststepcommdb.h"
+#include "TestSuiteCommdb.h"
+
+#ifdef SYMBIAN_OLD_EXPORT_LOCATION
+#include <comms-infras/commdb/protection/protectdb.h>
+#include <comms-infras/commdb/protection/protectcpdb.h>
+#else
+//these headers are user includes in the new env.
+#include "protectdb.h"
+#include "protectcpdb.h"
+#endif
+
+#include <cdbpreftable.h>
+
+#include "step_054_xx.h"
+
+//
+// Test step 054.01
+//
+
+CCommDbTest054_01::CCommDbTest054_01()
+{
+ // store the name of this test case
+ iTestStepName = _L("step_054_01");
+}
+
+CCommDbTest054_01::~CCommDbTest054_01()
+{
+ delete iTheDb;
+}
+
+TVerdict CCommDbTest054_01::doTestStepPreambleL()
+ {
+ iTheDb = CCommsDatabase::NewL(EDatabaseTypeIAP);
+ return EPass;
+ }
+
+//Protect Connection Preference Record
+enum TVerdict CCommDbTest054_01::doTestStepL( void )
+ {
+
+ Log(_L("Connection Preference Record : Protection .."));
+ iTestStepResult = EPass;
+
+ CCommsDbProtectConnectPrefTableView* table = (CCommsDbProtectConnectPrefTableView *)iTheDb->OpenConnectionPrefTableLC();
+ TESTL(iTheDb->BeginTransaction()==KErrNone);
+
+ if(table->GotoFirstRecord()==KErrNone)
+ {
+ // Protect the first record
+ ProtectRecordL(table,KErrNone);
+ iTestStepResult = EPass;
+ Log(_L("\t\tSUCCESS"));
+ }
+ else
+ {
+ iTestStepResult = EFail;
+ Log(_L("\t\tFAIL"));
+ }
+
+ TESTL(iTheDb->CommitTransaction()==KErrNone);
+
+ CleanupStack::PopAndDestroy();
+ return iTestStepResult;
+ }
+
+//
+// Test step 054.02
+//
+
+CCommDbTest054_02::CCommDbTest054_02()
+{
+ // store the name of this test case
+ iTestStepName = _L("step_054_02");
+}
+
+CCommDbTest054_02::~CCommDbTest054_02()
+{
+ delete iTheDb;
+}
+
+TVerdict CCommDbTest054_02::doTestStepPreambleL()
+ {
+ iTheDb = CCommsDatabase::NewL(EDatabaseTypeIAP);
+ return EPass;
+ }
+
+//Protect Connection Preference Record
+enum TVerdict CCommDbTest054_02::doTestStepL( void )
+ {
+
+ Log(_L("Connection Preference Record : Unprotection .."));
+ iTestStepResult = EPass;
+
+ CCommsDbProtectConnectPrefTableView* table = (CCommsDbProtectConnectPrefTableView *)iTheDb->OpenConnectionPrefTableLC();
+ TESTL(iTheDb->BeginTransaction()==KErrNone);
+
+ if(table->GotoFirstRecord()==KErrNone)
+ {
+ // UnProtect the first record
+ UnprotectRecordL(table,KErrNone);
+ iTestStepResult = EPass;
+ Log(_L("\t\tSUCCESS"));
+ }
+ else
+ {
+ iTestStepResult = EFail;
+ Log(_L("\t\tFAIL"));
+ }
+
+ TESTL(iTheDb->CommitTransaction()==KErrNone);
+
+ CleanupStack::PopAndDestroy();
+ return iTestStepResult;
+ }
+