sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "t_logutil2.h" sl@0: #include sl@0: sl@0: #define PRECONDITION_TRUE(x) TEST((x)) sl@0: #define PRECONDITION_EQ(x,y) TEST2((x),(y)) sl@0: sl@0: // If LOWCAP is defined in the .mmp file 'hiCapabilityTest' will be set to FALSE. sl@0: #ifdef LOWCAP sl@0: TBool hiCapabilityTest = EFalse; sl@0: RTest TheTest(_L("t_logsecureview_lowcap")); sl@0: _LIT(KTestTitle, "t_logsecureview (low capability)"); sl@0: #else sl@0: TBool hiCapabilityTest = ETrue; sl@0: RTest TheTest(_L("t_logsecureview_hicap")); sl@0: _LIT(KTestTitle, "t_logsecureview (high capability)"); sl@0: #endif sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0135 sl@0: @SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list sl@0: @SYMTestActions See the description and expected results. sl@0: @SYMTestPriority High sl@0: @SYMTestExpectedResults Should always succeed sl@0: @SYMREQ REQ3431 sl@0: */ sl@0: LOCAL_C void TestDuplicateRemoveIdL(CLogViewDuplicate* aView) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0135 ")); sl@0: TLogId id = aView->Event().Id(); sl@0: TRAPD(error, aView->RemoveL(id)); sl@0: sl@0: if(hiCapabilityTest) sl@0: { sl@0: TEST2(error, KErrNone); sl@0: TEST2(aView->CountL(), 3); sl@0: } sl@0: else sl@0: { sl@0: TEST2(error, KErrPermissionDenied); sl@0: TEST2(aView->CountL(), 4); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0136 sl@0: @SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list sl@0: @SYMTestActions See the description and expected results. sl@0: @SYMTestPriority High sl@0: @SYMTestExpectedResults Should always succeed sl@0: @SYMREQ REQ3431 sl@0: */ sl@0: LOCAL_C void TestDuplicateRemoveCurrentL(CLogViewDuplicate* aView, CTestActive* aTestActive) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0136 ")); sl@0: aTestActive->StartL(); sl@0: PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus)); sl@0: CActiveScheduler::Start(); sl@0: PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone); sl@0: sl@0: if(hiCapabilityTest) sl@0: { sl@0: aTestActive->StartL(); sl@0: PRECONDITION_TRUE(aView->RemoveL(aTestActive->iStatus)); sl@0: CActiveScheduler::Start(); sl@0: PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone); sl@0: sl@0: TEST2(aView->CountL(), 2); sl@0: } sl@0: else sl@0: { sl@0: TRAPD(error, aView->RemoveL(aTestActive->iStatus)); sl@0: sl@0: TEST2(error, KErrPermissionDenied); sl@0: TEST2(aView->CountL(), 4); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0137 sl@0: @SYMTestCaseDesc Ensures only a capable client can clear duplicate events from a recent list sl@0: @SYMTestActions See the description and expected results. sl@0: @SYMTestPriority High sl@0: @SYMTestExpectedResults Should always succeed sl@0: @SYMREQ REQ3431 sl@0: */ sl@0: LOCAL_C void TestRecentClearDuplicatesL(CLogViewRecent* aRecentView, CLogViewDuplicate* aDuplicateView) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0137 ")); sl@0: TRAPD(error, aRecentView->ClearDuplicatesL()); sl@0: sl@0: if(hiCapabilityTest) sl@0: { sl@0: TEST2(error, KErrNone); sl@0: TEST2(aDuplicateView->CountL(), 0); sl@0: } sl@0: else sl@0: { sl@0: TEST2(error, KErrPermissionDenied); sl@0: TEST2(aDuplicateView->CountL(), 4); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0138 sl@0: @SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list sl@0: @SYMTestActions See the description and expected results. sl@0: @SYMTestPriority High sl@0: @SYMTestExpectedResults Should always succeed sl@0: @SYMREQ REQ3431 sl@0: */ sl@0: LOCAL_C void TestRecentRemoveIdL(CLogViewRecent* aView) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0138 ")); sl@0: TLogId id = aView->Event().Id(); sl@0: TRAPD(error, aView->RemoveL(id)); sl@0: sl@0: if(hiCapabilityTest) sl@0: { sl@0: TEST2(error, KErrNone); sl@0: TEST2(aView->CountL(), 1); sl@0: } sl@0: else sl@0: { sl@0: TEST2(error, KErrPermissionDenied); sl@0: TEST2(aView->CountL(), 2); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0139 sl@0: @SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list sl@0: @SYMTestActions See the description and expected results. sl@0: @SYMTestPriority High sl@0: @SYMTestExpectedResults Should always succeed sl@0: @SYMREQ REQ3431 sl@0: */ sl@0: LOCAL_C void TestRecentRemoveCurrentL(CLogViewRecent* aView, CTestActive* aTestActive) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0139 ")); sl@0: aTestActive->StartL(); sl@0: PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus)); sl@0: CActiveScheduler::Start(); sl@0: PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone); sl@0: sl@0: TRAPD(error, aView->RemoveL(aTestActive->iStatus)); sl@0: sl@0: if(hiCapabilityTest) sl@0: { sl@0: TEST2(error, KErrNone); sl@0: TEST2(aView->CountL(), 0); sl@0: } sl@0: else sl@0: { sl@0: TEST2(error, KErrPermissionDenied); sl@0: TEST2(aView->CountL(), 2); sl@0: } sl@0: } sl@0: sl@0: LOCAL_C void TestViewsL() sl@0: { sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* testActive = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(testActive); sl@0: sl@0: CLogViewRecent* recentView = CLogViewRecent::NewL(*client); sl@0: CleanupStack::PushL(recentView); sl@0: sl@0: testActive->StartL(); sl@0: PRECONDITION_TRUE(recentView->SetRecentListL(KLogRecentIncomingCalls, testActive->iStatus)); sl@0: CActiveScheduler::Start(); sl@0: PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone); sl@0: PRECONDITION_EQ(recentView->CountL(), 2); sl@0: sl@0: CLogViewDuplicate* duplicateView = CLogViewDuplicate::NewL(*client); sl@0: CleanupStack::PushL(duplicateView); sl@0: sl@0: testActive->StartL(); sl@0: PRECONDITION_TRUE(recentView->DuplicatesL(*duplicateView, testActive->iStatus)); sl@0: CActiveScheduler::Start(); sl@0: PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone); sl@0: PRECONDITION_EQ(duplicateView->CountL(), 4); sl@0: sl@0: TheTest.Start(_L("RemoveL on duplicate view with id as argument")); sl@0: TestDuplicateRemoveIdL(duplicateView); sl@0: sl@0: TheTest.Next(_L("RemoveL on duplicate view at current cursor position")); sl@0: TestDuplicateRemoveCurrentL(duplicateView, testActive); sl@0: sl@0: TheTest.Next(_L("ClearDuplicatesL on recent view")); sl@0: TestRecentClearDuplicatesL(recentView, duplicateView); sl@0: sl@0: TheTest.Next(_L("RemoveL on recent view with id as argument")); sl@0: TestRecentRemoveIdL(recentView); sl@0: sl@0: TheTest.Next(_L("RemoveL on recent view at current cursor position")); sl@0: TestRecentRemoveCurrentL(recentView, testActive); sl@0: sl@0: CleanupStack::PopAndDestroy(4); sl@0: } sl@0: sl@0: //............................................................................. sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(KTestTitle); sl@0: TestUtils::DeleteDatabaseL(); sl@0: TestUtils::AddViewTestEventsL(); sl@0: sl@0: TestViewsL(); sl@0: sl@0: TestUtils::DeleteDatabaseL(); sl@0: }