os/persistentdata/loggingservices/eventlogger/test/src/t_logsecureview.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "t_logutil2.h"
    17 #include <logview.h>
    18 
    19 #define PRECONDITION_TRUE(x) TEST((x))
    20 #define PRECONDITION_EQ(x,y) TEST2((x),(y))
    21 
    22 // If LOWCAP is defined in the .mmp file 'hiCapabilityTest' will be set to FALSE.
    23 #ifdef LOWCAP
    24 	TBool hiCapabilityTest = EFalse;
    25 	RTest TheTest(_L("t_logsecureview_lowcap"));
    26 	_LIT(KTestTitle, "t_logsecureview (low capability)");
    27 #else
    28 	TBool hiCapabilityTest = ETrue;
    29 	RTest TheTest(_L("t_logsecureview_hicap"));
    30 	_LIT(KTestTitle, "t_logsecureview (high capability)");
    31 #endif
    32 
    33 
    34 /**
    35 @SYMTestCaseID SYSLIB-LOGENG-CT-0135
    36 @SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list
    37 @SYMTestActions See the description and expected results.
    38 @SYMTestPriority High
    39 @SYMTestExpectedResults Should always succeed
    40 @SYMREQ REQ3431
    41 */
    42 LOCAL_C void TestDuplicateRemoveIdL(CLogViewDuplicate* aView)
    43 	{
    44 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0135 "));
    45 	TLogId id = aView->Event().Id();
    46 	TRAPD(error, aView->RemoveL(id));
    47 	
    48 	if(hiCapabilityTest)
    49 		{
    50 		TEST2(error, KErrNone);
    51 		TEST2(aView->CountL(), 3);
    52 		}
    53 	else
    54 		{
    55 		TEST2(error, KErrPermissionDenied);
    56 		TEST2(aView->CountL(), 4);
    57 		}
    58 	}
    59 	
    60 /**
    61 @SYMTestCaseID SYSLIB-LOGENG-CT-0136
    62 @SYMTestCaseDesc Ensures only a capable client can remove an event from a recent list
    63 @SYMTestActions See the description and expected results.
    64 @SYMTestPriority High
    65 @SYMTestExpectedResults Should always succeed
    66 @SYMREQ REQ3431
    67 */
    68 LOCAL_C void TestDuplicateRemoveCurrentL(CLogViewDuplicate* aView, CTestActive* aTestActive)
    69 	{
    70 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0136 "));
    71 	aTestActive->StartL();
    72 	PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus));
    73 	CActiveScheduler::Start();
    74 	PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
    75 
    76 	if(hiCapabilityTest)
    77 		{
    78 		aTestActive->StartL();
    79 		PRECONDITION_TRUE(aView->RemoveL(aTestActive->iStatus));
    80 		CActiveScheduler::Start();
    81 		PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
    82 		
    83 		TEST2(aView->CountL(), 2);
    84 		}
    85 	else
    86 		{
    87 		TRAPD(error, aView->RemoveL(aTestActive->iStatus));
    88 	
    89 		TEST2(error, KErrPermissionDenied);
    90 		TEST2(aView->CountL(), 4);
    91 		}
    92 	}
    93 
    94 /**
    95 @SYMTestCaseID SYSLIB-LOGENG-CT-0137
    96 @SYMTestCaseDesc Ensures only a capable client can clear duplicate events from a recent list
    97 @SYMTestActions See the description and expected results.
    98 @SYMTestPriority High
    99 @SYMTestExpectedResults Should always succeed
   100 @SYMREQ REQ3431
   101 */
   102 LOCAL_C void TestRecentClearDuplicatesL(CLogViewRecent* aRecentView, CLogViewDuplicate* aDuplicateView)
   103 	{
   104 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0137 "));
   105 	TRAPD(error, aRecentView->ClearDuplicatesL());
   106 
   107 	if(hiCapabilityTest)
   108 		{
   109 		TEST2(error, KErrNone);
   110 		TEST2(aDuplicateView->CountL(), 0);
   111 		}
   112 	else
   113 		{
   114 		TEST2(error, KErrPermissionDenied);
   115 		TEST2(aDuplicateView->CountL(), 4);
   116 		}
   117 	}
   118 	
   119 /**
   120 @SYMTestCaseID SYSLIB-LOGENG-CT-0138
   121 @SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list
   122 @SYMTestActions See the description and expected results.
   123 @SYMTestPriority High
   124 @SYMTestExpectedResults Should always succeed
   125 @SYMREQ REQ3431
   126 */
   127 LOCAL_C void TestRecentRemoveIdL(CLogViewRecent* aView)
   128 	{
   129 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0138 "));
   130 	TLogId id = aView->Event().Id();
   131 	TRAPD(error, aView->RemoveL(id));
   132 	
   133 	if(hiCapabilityTest)
   134 		{
   135 		TEST2(error, KErrNone);
   136 		TEST2(aView->CountL(), 1);
   137 		}
   138 	else
   139 		{
   140 		TEST2(error, KErrPermissionDenied);
   141 		TEST2(aView->CountL(), 2);
   142 		}
   143 	}
   144 
   145 /**
   146 @SYMTestCaseID SYSLIB-LOGENG-CT-0139
   147 @SYMTestCaseDesc Ensures only a capable client can remove an event from a duplicate list
   148 @SYMTestActions See the description and expected results.
   149 @SYMTestPriority High
   150 @SYMTestExpectedResults Should always succeed
   151 @SYMREQ REQ3431
   152 */
   153 LOCAL_C void TestRecentRemoveCurrentL(CLogViewRecent* aView, CTestActive* aTestActive)
   154 	{
   155 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0139 "));
   156 	aTestActive->StartL();
   157 	PRECONDITION_TRUE(aView->FirstL(aTestActive->iStatus));
   158 	CActiveScheduler::Start();
   159 	PRECONDITION_EQ(aTestActive->iStatus.Int(), KErrNone);
   160 
   161 	TRAPD(error, aView->RemoveL(aTestActive->iStatus));
   162 
   163 	if(hiCapabilityTest)
   164 		{
   165 		TEST2(error, KErrNone);
   166 		TEST2(aView->CountL(), 0);
   167 		}
   168 	else
   169 		{
   170 		TEST2(error, KErrPermissionDenied);
   171 		TEST2(aView->CountL(), 2);
   172 		}
   173 	}
   174 	
   175 LOCAL_C void TestViewsL()
   176 	{
   177 	CLogClient* client = CLogClient::NewL(theFs);
   178 	CleanupStack::PushL(client);
   179 
   180 	CTestActive* testActive = new(ELeave)CTestActive();
   181 	CleanupStack::PushL(testActive);
   182 
   183 	CLogViewRecent* recentView = CLogViewRecent::NewL(*client);
   184 	CleanupStack::PushL(recentView);
   185 
   186 	testActive->StartL();
   187 	PRECONDITION_TRUE(recentView->SetRecentListL(KLogRecentIncomingCalls, testActive->iStatus));
   188 	CActiveScheduler::Start();
   189 	PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone);
   190 	PRECONDITION_EQ(recentView->CountL(), 2);
   191 
   192 	CLogViewDuplicate* duplicateView = CLogViewDuplicate::NewL(*client);
   193 	CleanupStack::PushL(duplicateView);
   194 
   195 	testActive->StartL();
   196 	PRECONDITION_TRUE(recentView->DuplicatesL(*duplicateView, testActive->iStatus));
   197 	CActiveScheduler::Start();
   198 	PRECONDITION_EQ(testActive->iStatus.Int(), KErrNone);
   199 	PRECONDITION_EQ(duplicateView->CountL(), 4);
   200 	
   201 	TheTest.Start(_L("RemoveL on duplicate view with id as argument"));
   202 	TestDuplicateRemoveIdL(duplicateView);
   203 
   204 	TheTest.Next(_L("RemoveL on duplicate view at current cursor position"));
   205 	TestDuplicateRemoveCurrentL(duplicateView, testActive);
   206 
   207 	TheTest.Next(_L("ClearDuplicatesL on recent view"));
   208 	TestRecentClearDuplicatesL(recentView, duplicateView);
   209 
   210 	TheTest.Next(_L("RemoveL on recent view with id as argument"));
   211 	TestRecentRemoveIdL(recentView);
   212 	
   213 	TheTest.Next(_L("RemoveL on recent view at current cursor position"));
   214 	TestRecentRemoveCurrentL(recentView, testActive);
   215 
   216 	CleanupStack::PopAndDestroy(4);
   217 	}
   218 
   219 //.............................................................................
   220 
   221 void doTestsL()
   222 	{
   223 	TestUtils::Initialize(KTestTitle);
   224 	TestUtils::DeleteDatabaseL();
   225 	TestUtils::AddViewTestEventsL();
   226 
   227 	TestViewsL();
   228 
   229 	TestUtils::DeleteDatabaseL();
   230 	}