os/persistentdata/loggingservices/eventlogger/test/src/t_logplatformsecurity.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 
     2 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 // All rights reserved.
     4 // This component and the accompanying materials are made available
     5 // under the terms of "Eclipse Public License v1.0"
     6 // which accompanies this distribution, and is available
     7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 //
     9 // Initial Contributors:
    10 // Nokia Corporation - initial contribution.
    11 //
    12 // Contributors:
    13 //
    14 // Description:
    15 //
    16 
    17 
    18 #include <s32file.h>
    19 #include <logcntdef.h>
    20 #include "t_logutil2.h"
    21 #include <logview.h>
    22 
    23 //LOWCAP defined in t_loglowcapability.mmp file.
    24 #ifdef LOWCAP
    25     TBool TheHiCapability = EFalse;
    26     RTest TheTest(_L("t_loglowcapability"));
    27     _LIT(KTestTitle, "t_loglowcapability");
    28 #else
    29     TBool TheHiCapability = ETrue;
    30     RTest TheTest(_L("t_loghicapability"));
    31     _LIT(KTestTitle, "t_loghicapability");
    32 #endif
    33 
    34 const TUid KTestEventUid = {0x10005393};
    35 _LIT(KTestEventDesc1, "Event Type Description");
    36 _LIT(KTestEventDesc2, "Changed Event Description");
    37 _LIT(KTestRemoteParty1, "Remote Party");
    38 _LIT(KTestDirection1, "Direction");
    39 const TLogDurationType KTestDurationType1 = 1;
    40 const TLogDuration KTestDuration1 = 0x1234;
    41 _LIT(KTestStatus1, "Status");
    42 _LIT(KTestSubject1, "Subject");
    43 _LIT(KTestNumber1, "Number");
    44 const TLogContactItemId KTestContact1 = 0x1234;
    45 const TLogContactItemId KTestContact2 = 0x1234567;
    46 const TLogLink KTestLink1 = 0x1234;
    47 _LIT8(KTestData1, "ABCDEFGH");
    48 const TLogSize KTestMaxLogSize = 0xFFF;
    49 const TLogRecentSize KTestMaxRecentLogSize = 0xF;
    50 const TLogAge KTestMaxEventAge = 0xFFFFFFF;
    51 
    52 
    53 /**
    54 @SYMTestCaseID SYSLIB-LOGENG-CT-0118
    55 @SYMTestCaseDesc The test aims to ensure that the log server starts in reponse 
    56 to a client request.
    57 @SYMTestPriority High
    58 @SYMTestActions The test asks the server for details of a built in event type.
    59 A successful server start-up is essential for the completion of subsequent tests.
    60 @SYMTestExpectedResults Success. (active->iStatus == 0) Regardless of the capability 
    61 of the process running this test, it should always succeed because the GetEventType 
    62 is not policed by platform security.
    63 @SYMREQ REQ3431
    64 */
    65 LOCAL_C void TestStartupL()
    66 	{
    67 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0118 "));
    68 	CLogClient* client = CLogClient::NewL(theFs);
    69 	CleanupStack::PushL(client);
    70 
    71 	CTestActive* active = new(ELeave)CTestActive();
    72 	CleanupStack::PushL(active);
    73 
    74 	CLogEventType *type = CLogEventType::NewL();
    75 	CleanupStack::PushL(type);
    76 
    77 	type->SetUid(KLogCallEventTypeUid);
    78 	active->StartL();
    79 	client->GetEventType(*type, active->iStatus);
    80 	CActiveScheduler::Start();
    81 	TEST2(active->iStatus.Int(), KErrNone);
    82 		
    83 	CleanupStack::PopAndDestroy(3); // client, active, type
    84 	}
    85 
    86 
    87 
    88 
    89 /**
    90 @SYMTestCaseID SYSLIB-LOGENG-CT-0119
    91 @SYMTestCaseDesc Tests AddEvent, GetEvent, ChangeEvent and DeleteEvent.
    92 @SYMTestPriority High
    93 @SYMTestActions See the description and expected results.
    94 @SYMTestExpectedResults 
    95 
    96 1. a client with sufficient capability succeed in all cases would expect the following...
    97 AddEvent - KErrNone
    98 GetEvent - KErrNone
    99 ChangeEvent - KErrNone
   100 DeleteEvent - KErrNone
   101 
   102 2. a client with insufficient capability would expect the following results...
   103 AddEvent - KErrPermissionDenied
   104 GetEvent - KErrNone
   105 ChangeEvent - KErrPermissionDenied
   106 DeleteEvent - KErrPermissionDenied
   107 
   108 @SYMREQ REQ3431
   109 */
   110 LOCAL_C void TestBasicL(CLogClient& aClient)
   111 	{
   112 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0119 "));
   113 	CTestActive* active = new(ELeave)CTestActive();
   114 	CleanupStack::PushL(active);
   115 
   116 	CLogEvent* event = CLogEvent::NewL();
   117 	CleanupStack::PushL(event);
   118 	
   119 	TTime now;
   120 	now.UniversalTime();
   121 
   122 	event->SetEventType(KLogCallEventTypeUid);
   123 
   124 	active->StartL();
   125 	aClient.AddEvent(*event, active->iStatus);
   126 	CActiveScheduler::Start();
   127 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   128 
   129 	if(!TheHiCapability)
   130 		{
   131 		TInt eventId = TestUtils::AddEventL();
   132 		TEST(eventId >= 0);
   133 		event->SetId(eventId);
   134 		}
   135 
   136 
   137 	TEST(event->EventType() == KLogCallEventTypeUid);
   138 
   139 	now = event->Time();
   140 
   141 	TLogId id = event->Id();
   142 
   143 	event->SetRemoteParty(KTestRemoteParty1);
   144 	event->SetDirection(KTestDirection1);
   145 	event->SetDurationType(KTestDurationType1);
   146 	event->SetDuration(KTestDuration1);
   147 	event->SetStatus(KTestStatus1);
   148 	event->SetSubject(KTestSubject1);
   149 	event->SetNumber(KTestNumber1);
   150 	event->SetContact(KTestContact1);
   151 	event->SetLink(KTestLink1);
   152 	event->SetDataL(KTestData1);
   153 
   154 	active->StartL();
   155 	aClient.ChangeEvent(*event, active->iStatus);
   156 	CActiveScheduler::Start();
   157     TheTest.Printf(_L("TestBasicL(), TheHiCapability=%d, event id=%d\r\n"), TheHiCapability, id);
   158 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   159 
   160 	TEST(event->Id() == id );
   161 	TEST(event->EventType() == KLogCallEventTypeUid);
   162 
   163 	if(TheHiCapability)
   164 		{
   165 		TEST(event->Description().Length() > 0);
   166 		TEST(event->Time() == now);
   167 		TEST(event->RemoteParty() == KTestRemoteParty1);
   168 		TEST(event->Direction() == KTestDirection1);
   169 		TEST(event->DurationType() == KTestDurationType1);
   170 		TEST(event->Duration() == KTestDuration1);
   171 		TEST(event->Status() == KTestStatus1);
   172 		TEST(event->Subject() == KTestSubject1);
   173 		TEST(event->Number() == KTestNumber1);
   174 		TEST(event->Contact() == KTestContact1);
   175 		TEST(event->Link() == KTestLink1);
   176 		TEST(event->Data() == KTestData1);
   177 		}
   178 		
   179 	CleanupStack::PopAndDestroy(); // event;
   180 
   181 	event = CLogEvent::NewL();
   182 	CleanupStack::PushL(event);
   183 
   184 	event->SetId(id);
   185 
   186 	active->StartL();
   187 	aClient.GetEvent(*event, active->iStatus);
   188 	CActiveScheduler::Start();
   189 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   190 
   191 	if(TheHiCapability)
   192 		{
   193 		TEST(event->Id() == id);
   194 		TEST(event->EventType() == KLogCallEventTypeUid);
   195 		TEST(event->Description().Length() > 0);
   196 		TEST(event->Time() == now);
   197 		TEST(event->RemoteParty() == KTestRemoteParty1);
   198 		TEST(event->Direction() == KTestDirection1);
   199 		TEST(event->DurationType() == KTestDurationType1);
   200 		TEST(event->Duration() == KTestDuration1);
   201 		TEST(event->Status() == KTestStatus1);
   202 		TEST(event->Subject() == KTestSubject1);
   203 		TEST(event->Number() == KTestNumber1);
   204 		TEST(event->Contact() == KTestContact1);
   205 		TEST(event->Link() == KTestLink1);
   206 		TEST(event->Data() == KTestData1);
   207 		}
   208 			
   209 	active->StartL();
   210 	aClient.DeleteEvent(id, active->iStatus);
   211 	CActiveScheduler::Start();
   212 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   213 
   214 	active->StartL();
   215 	aClient.GetEvent(*event, active->iStatus);
   216 	CActiveScheduler::Start();
   217 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNotFound : KErrPermissionDenied);
   218 	
   219 	// try to delete a non-existent event...
   220 	active->StartL();
   221 	aClient.DeleteEvent(123, active->iStatus);
   222 	CActiveScheduler::Start();
   223 	TEST2(active->iStatus.Int(), KErrNotFound);
   224 
   225 	CleanupStack::PopAndDestroy(2); // event, active
   226 	}
   227 
   228 
   229 
   230 /**
   231 @SYMTestCaseID SYSLIB-LOGENG-CT-0120
   232 @SYMTestCaseDesc Test AddEventType for high and low capability clients
   233 @SYMTestPriority High
   234 @SYMTestActions 
   235 1.  For a clients of all capabilities...
   236 	a. Add a new event type
   237 	b. Fill a CLogEventType object with details of the new type
   238 	c. Try to add the new event type for a second time 
   239 
   240 @SYMTestExpectedResults 
   241 1.  For a client with sufficient capability...
   242 	Test a. - KErrNone - the new event type was added OK
   243 	Test b. - KErrNone - the new event type is fully visible
   244 	Test c. - KErrAlreadyExists - it was already added by test a. !
   245 
   246 2.  For a client with insufficient capability...
   247 	Test a. - KErrPermissionDenied - not allowed !
   248 	Test b. - KErrNotFound - allowed, but it isn't there because test a. failed.
   249 	Test c. - KErrPermissionDenied - exactly the same as test a.
   250 	
   251 @SYMREQ REQ3431
   252 */
   253 LOCAL_C void TestAddEventTypeL(CLogClient& aClient)
   254 	{
   255 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0120 "));
   256 	CLogEventType* type = CLogEventType::NewL();
   257 	CleanupStack::PushL(type);
   258 
   259 	type->SetUid(KTestEventUid);
   260 	type->SetDescription(KTestEventDesc1);
   261 	type->SetLoggingEnabled(ETrue);
   262 
   263 	CTestActive* active = new(ELeave)CTestActive();
   264 	CleanupStack::PushL(active);
   265 
   266 	aClient.AddEventType(*type, active->iStatus);
   267 	active->StartL();
   268 	CActiveScheduler::Start();
   269 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   270 		
   271 	active->StartL();
   272 	aClient.GetEventType(*type, active->iStatus);
   273 	CActiveScheduler::Start();
   274 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrNotFound);
   275 			
   276 	active->StartL();
   277 	aClient.AddEventType(*type, active->iStatus);
   278 	CActiveScheduler::Start();
   279 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrAlreadyExists : KErrPermissionDenied);
   280 
   281 	CleanupStack::PopAndDestroy(2); // active, type
   282 	}
   283 
   284 
   285 
   286 /**
   287 @SYMTestCaseID SYSLIB-LOGENG-CT-0121
   288 @SYMTestCaseDesc Try to populate an CLogEventType object with details of a 
   289 non built-in event type.
   290 @SYMTestPriority High
   291 @SYMTestActions Calls GetEventType(...)
   292 @SYMTestExpectedResults Always succeeds - all clients should be able to do this as
   293 the GetEventType operation is not policed by platform security.
   294 @SYMREQ REQ3431
   295 */
   296 LOCAL_C void TestGetEventTypeL(CLogClient& aClient)
   297 	//
   298 	// This test should succeed, regardless of capability
   299 	// GetEventType is not policed.
   300 	//
   301 	{
   302 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0121 "));
   303 	CLogEventType* type = CLogEventType::NewL();
   304 	CleanupStack::PushL(type);
   305 
   306 	type->SetUid(KTestEventUid);
   307 
   308 	CTestActive* active = new(ELeave)CTestActive();
   309 	CleanupStack::PushL(active);
   310 
   311 	aClient.GetEventType(*type, active->iStatus);
   312 	active->StartL();
   313 	CActiveScheduler::Start();
   314 	TEST2(active->iStatus.Int(), KErrNone);
   315 
   316 	TEST(type->Uid() == KTestEventUid);
   317 	TEST(type->Description() == KTestEventDesc1);
   318 	TEST(type->LoggingEnabled());
   319 
   320 	CleanupStack::PopAndDestroy(2); // active, type
   321 	}
   322 
   323 
   324 
   325 
   326 /**
   327 @SYMTestCaseID SYSLIB-LOGENG-CT-0122
   328 @SYMTestCaseDesc Tries to change existing event types.
   329 @SYMTestActions See the description and expected results.
   330 @SYMTestPriority High
   331 @SYMTestExpectedResults Should always succeed
   332 @SYMREQ REQ3431
   333 */
   334 LOCAL_C void TestChangeEventTypeL(CLogClient& aClient)
   335 	{
   336 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0122 "));
   337 	CTestActive* active = new(ELeave)CTestActive();
   338 	CleanupStack::PushL(active);
   339 
   340 	CLogEventType* type = CLogEventType::NewL();
   341 	CleanupStack::PushL(type);
   342 
   343 	type->SetUid(KTestEventUid);
   344 
   345 	type->SetDescription(KTestEventDesc1);
   346 	type->SetDescription(KTestEventDesc2);
   347 
   348 #ifdef _DEBUG
   349 	TInt failCount = 0;
   350 #endif
   351 
   352 	TBool finished = EFalse;
   353 	TInt error;
   354 
   355 	while(!finished)
   356 		{
   357 		error = KErrNone;
   358 
   359 		type->SetDescription(KTestEventDesc2);
   360 		type->SetLoggingEnabled(EFalse);
   361 
   362 		__UHEAP_FAILNEXT(failCount++);
   363 		
   364 		aClient.ChangeEventType(*type, active->iStatus);
   365 
   366 		active->StartL();
   367 		CActiveScheduler::Start();
   368 
   369 		if (active->iStatus == KErrNone)
   370 			finished = ETrue;
   371 		else
   372 			error = active->iStatus.Int();
   373 
   374 		__UHEAP_RESET;
   375 
   376 		if (error == KErrNoMemory)
   377 			{
   378 			active->StartL();
   379 			aClient.GetEventType(*type, active->iStatus);
   380 			CActiveScheduler::Start();
   381 			TEST2(active->iStatus.Int(), KErrNone);
   382 
   383 			TEST(type->Description() == KTestEventDesc1);
   384 			TEST(type->LoggingEnabled());
   385 			}
   386 		else
   387 			{
   388 			TEST2(error, TheHiCapability ? KErrNone : KErrPermissionDenied);
   389 			
   390 			if(!TheHiCapability)
   391 				finished = TRUE;
   392 			}
   393 		}
   394 
   395 	type->SetUid(KTestEventUid);
   396 
   397 	active->StartL();
   398 	aClient.GetEventType(*type, active->iStatus);
   399 	CActiveScheduler::Start();
   400 	TEST2(active->iStatus.Int(), KErrNone);
   401 
   402 	if(TheHiCapability)
   403 		{
   404 		TEST(type->Uid() == KTestEventUid);
   405 		TEST(type->Description() == KTestEventDesc2);
   406 		TEST(type->LoggingEnabled() == EFalse);
   407 		}
   408 	else
   409 		{
   410 		TEST(type->Uid() == KTestEventUid);
   411 		TEST(type->Description() == KTestEventDesc1);
   412 		TEST(type->LoggingEnabled());
   413 		}
   414 
   415 	CleanupStack::PopAndDestroy(2); // type, active
   416 	}
   417 
   418 
   419 
   420 
   421 /**
   422 @SYMTestCaseID SYSLIB-LOGENG-CT-0123
   423 @SYMTestCaseDesc Delete event types
   424 @SYMTestActions See the description and expected results.
   425 @SYMTestPriority High
   426 @SYMTestExpectedResults Should always succeed
   427 @SYMREQ REQ3431
   428 */
   429 LOCAL_C void TestDeleteEventTypeL(CLogClient& aClient)
   430 	{
   431 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0123 "));
   432 	CTestActive* active = new(ELeave)CTestActive();
   433 	CleanupStack::PushL(active);
   434 
   435 	CLogEventType* type = CLogEventType::NewL();
   436 	CleanupStack::PushL(type);
   437 
   438 	type->SetUid(KTestEventUid);
   439 
   440 #ifdef _DEBUG
   441 	TInt failCount = 0;
   442 #endif
   443 
   444 	TBool finished = EFalse;
   445 	TInt error;
   446 
   447 	while(!finished)
   448 		{
   449 		error = KErrNone;
   450 
   451 		__UHEAP_FAILNEXT(failCount++);
   452 		aClient.DeleteEventType(KTestEventUid, active->iStatus);
   453 
   454 		active->StartL();
   455 		CActiveScheduler::Start();
   456 
   457 		if (active->iStatus == KErrNone)
   458 			finished = ETrue;
   459 		else
   460 			error = active->iStatus.Int();
   461 
   462 		__UHEAP_RESET;
   463 
   464 		if (error == KErrNoMemory)
   465 			{
   466 			active->StartL();
   467 			aClient.GetEventType(*type, active->iStatus);
   468 			CActiveScheduler::Start();
   469 			TEST2(active->iStatus.Int(), KErrNone);
   470 			}
   471 		else
   472 			{
   473 			TEST2(error, TheHiCapability ? KErrNone : KErrPermissionDenied);
   474 			
   475 			if(!TheHiCapability)
   476 				finished = TRUE;
   477 			}
   478 		}
   479 
   480 	active->StartL();
   481 	aClient.GetEventType(*type, active->iStatus);
   482 	CActiveScheduler::Start();
   483 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNotFound : KErrNone);
   484 
   485 	CleanupStack::PopAndDestroy(2); // type, active
   486 	}
   487 
   488 
   489 
   490 
   491 /**
   492 @SYMTestCaseID SYSLIB-LOGENG-CT-0124
   493 @SYMTestCaseDesc Try to delete built in event types
   494 @SYMTestPriority High
   495 @SYMTestActions No one is allowed to delete built in event types !
   496 @SYMTestExpectedResults Should always succeed
   497 @SYMREQ REQ3431
   498 */
   499 LOCAL_C void TestDeleteBuiltInEventTypeL(CLogClient& aClient)
   500 	{
   501 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0124 "));
   502 	CTestActive* active = new(ELeave)CTestActive();
   503 	CleanupStack::PushL(active);
   504 
   505 	CLogEventType* type = CLogEventType::NewL();
   506 	CleanupStack::PushL(type);
   507 	
   508 	TUid someBuiltInTypes [] = 
   509 		{
   510 		KLogCallEventTypeUid, 
   511 		KLogDataEventTypeUid, 
   512 		KLogFaxEventTypeUid
   513 		};
   514 	
   515 	for (TInt i=0; i < 3; i++)
   516 		{
   517 		aClient.DeleteEventType(someBuiltInTypes [i], active->iStatus);
   518 		active->StartL();
   519 		CActiveScheduler::Start();
   520 		TEST2(active->iStatus.Int(), KErrPermissionDenied);
   521 
   522 		type->SetUid(someBuiltInTypes [i]);
   523 		active->StartL();
   524 		aClient.GetEventType(*type, active->iStatus);
   525 		CActiveScheduler::Start();
   526 		TEST2(active->iStatus.Int(), KErrNone);
   527 		TEST(type->Uid() == someBuiltInTypes [i]);
   528 		}
   529 
   530 	CleanupStack::PopAndDestroy(2); // type, active
   531 	}
   532 
   533 
   534 
   535 
   536 
   537 /**
   538 @SYMTestCaseID SYSLIB-LOGENG-CT-0125
   539 @SYMTestCaseDesc Get database configuration
   540 @SYMTestPriority High
   541 @SYMTestActions All clients are allowed to do this
   542 @SYMTestExpectedResults Should always succeed
   543 @SYMREQ REQ3431
   544 */
   545 LOCAL_C void TestGetConfigL(CLogClient& aClient)
   546 	{
   547 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0125 "));
   548 	CTestActive* active = new(ELeave)CTestActive();
   549 	CleanupStack::PushL(active);
   550 
   551 	TLogConfig config;
   552 
   553 	TEST(config.iMaxEventAge == 0);
   554 	TEST(config.iMaxLogSize == 0);
   555 	TEST(config.iMaxRecentLogSize == 0);
   556 
   557 #ifdef _DEBUG
   558 	TInt failCount = 0;
   559 #endif
   560 
   561 	TBool finished = EFalse;
   562 
   563 	while(!finished)
   564 		{
   565 		__UHEAP_FAILNEXT(failCount++);
   566 		aClient.GetConfig(config, active->iStatus);
   567 
   568 		active->StartL();
   569 		CActiveScheduler::Start();
   570 
   571 		if (active->iStatus == KErrNone)
   572 			finished = ETrue;
   573 		else
   574 			TEST2(active->iStatus.Int(), KErrNoMemory);
   575 
   576 		__UHEAP_RESET;
   577 		}
   578 
   579 	TEST(config.iMaxEventAge > 0);
   580 	TEST(config.iMaxLogSize > 0);
   581 	TEST(config.iMaxRecentLogSize > 0);
   582 
   583 	CleanupStack::PopAndDestroy(); // active
   584 	}
   585 
   586 
   587 
   588 
   589 /**
   590 @SYMTestCaseID SYSLIB-LOGENG-CT-0126
   591 @SYMTestCaseDesc Change the database configuration
   592 @SYMTestPriority High
   593 @SYMTestActions Low capability clients can't do this
   594 @SYMTestExpectedResults Should always succeed
   595 @SYMREQ REQ3431
   596 */
   597 LOCAL_C void TestChangeConfigL(CLogClient& aClient)
   598 	{
   599 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0126 "));
   600 	CTestActive* active = new(ELeave)CTestActive();
   601 	CleanupStack::PushL(active);
   602 
   603 	TLogConfig configOld;
   604 
   605 	active->StartL();
   606 	aClient.GetConfig(configOld, active->iStatus);
   607 	CActiveScheduler::Start();
   608 	TEST2(active->iStatus.Int(), KErrNone);
   609 
   610 	TLogConfig config;
   611 
   612 #ifdef _DEBUG
   613 	TInt failCount = 0;
   614 #endif
   615 
   616 	TBool finished = EFalse;
   617 	TInt error;
   618 
   619 	while(!finished)
   620 		{
   621 		error = KErrNone;
   622 
   623 		config.iMaxLogSize = KTestMaxLogSize;
   624 		config.iMaxRecentLogSize = KTestMaxRecentLogSize;
   625 		config.iMaxEventAge = KTestMaxEventAge;
   626 
   627 		__UHEAP_FAILNEXT(failCount++);
   628 		aClient.ChangeConfig(config, active->iStatus);
   629 
   630 		active->StartL();
   631 		CActiveScheduler::Start();
   632 
   633 		if (active->iStatus == KErrNone)
   634 			finished = ETrue;
   635 		else
   636 			error = active->iStatus.Int();
   637 		
   638 		__UHEAP_RESET;
   639 
   640 		if ((error == KErrNoMemory) || (error == KErrPermissionDenied))
   641 			{
   642 			active->StartL();
   643 			aClient.GetConfig(config, active->iStatus);
   644 			CActiveScheduler::Start();
   645 			TEST2(active->iStatus.Int(), KErrNone);
   646 
   647 			TEST(config.iMaxLogSize == configOld.iMaxLogSize);
   648 			TEST(config.iMaxRecentLogSize == configOld.iMaxRecentLogSize);
   649 			TEST(config.iMaxEventAge == configOld.iMaxEventAge);
   650 			}
   651 		else
   652 			{
   653 			TEST2(error, KErrNone);		
   654 			}
   655 			
   656 		if(! TheHiCapability)
   657 			finished = TRUE;
   658 						
   659 		}
   660 
   661 	if(TheHiCapability)
   662 		{
   663 		TEST(config.iMaxLogSize == KTestMaxLogSize);
   664 		TEST(config.iMaxRecentLogSize == KTestMaxRecentLogSize);
   665 		TEST(config.iMaxEventAge == KTestMaxEventAge);
   666 		}
   667 	else
   668 		{
   669 		TEST(config.iMaxLogSize == configOld.iMaxLogSize);
   670 		TEST(config.iMaxRecentLogSize == configOld.iMaxRecentLogSize);
   671 		TEST(config.iMaxEventAge == configOld.iMaxEventAge);
   672 		}
   673 		
   674 	CleanupStack::PopAndDestroy(); // active
   675 	}
   676 
   677 
   678 
   679 
   680 /**
   681 @SYMTestCaseID SYSLIB-LOGENG-CT-0127
   682 @SYMTestCaseDesc Clear the log
   683 @SYMTestPriority High
   684 @SYMTestActions Low capability clients can't do this
   685 @SYMTestExpectedResults Should always pass
   686 @SYMREQ REQ3431
   687 */
   688 void ClearLogL(CLogClient& aClient)
   689 	{
   690 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0127 "));
   691 	CTestActive* active = new(ELeave)CTestActive();
   692 	CleanupStack::PushL(active);
   693 
   694 	TTime now;
   695 	now.UniversalTime();
   696 	
   697 	active->StartL();
   698 	aClient.ClearLog(now, active->iStatus);
   699 		
   700 	CActiveScheduler::Start();
   701 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   702 	
   703 	CleanupStack::PopAndDestroy(); // active
   704 	}	
   705 
   706 /**
   707 @SYMTestCaseID SYSLIB-LOGENG-CT-0128
   708 @SYMTestCaseDesc Try to clear the recent event list
   709 @SYMTestPriority High
   710 @SYMTestActions Low capability clients will fail
   711 @SYMTestExpectedResults Should always succeed
   712 @SYMREQ REQ3431
   713 */
   714 void ClearRecentListL(CLogClient& aClient)
   715 	{
   716 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0128 "));
   717 	CTestActive* active = new(ELeave)CTestActive();
   718 	CleanupStack::PushL(active);
   719 
   720 	TTime now;
   721 	now.UniversalTime();
   722 	
   723 	active->StartL();
   724 	aClient.ClearLog(KLogRecentIncomingCalls, active->iStatus);
   725 	
   726 	CActiveScheduler::Start();
   727 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   728 	
   729 	CleanupStack::PopAndDestroy(); // active
   730 	}	
   731 
   732 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM	
   733 
   734 /**
   735 @SYMTestCaseID			PDS-LOGENG-UT-4040
   736 @SYMTestCaseDesc		Clear log events with specific SimId - platform security test.
   737 						This test is called from two test applications: t_logHicapability 
   738 						and t_loglowcapabilty. As the names state, t_loghicapability has platsec capabilities to 
   739 						call CLogClient::CLearLog(), t_loglowcapabilty - hasn't.
   740 						When t_loghicapability calls ClearLogL(), "TheHiCapability" flag is true and it is expected
   741 						the CLogClient::ClearLog() call to complete successfully. 
   742 						When t_loglowcapability calls ClearLogL(), "TheHiCapability" flag is false and it is expected
   743 						the CLogClient::ClearLog() call to fail with KErrPermissionDenied. 
   744 @SYMTestActions			Clear log events with specific SimId - platform security test.
   745 @SYMTestExpectedResults Test must not fail
   746 @SYMTestPriority		High
   747 @SYMREQ					REQ12748
   748 */
   749 void ClearLogL(CLogClient& aClient, TSimId aSimId)
   750 	{//This test case is compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined.
   751 	CTestActive* active = new(ELeave)CTestActive();
   752 	CleanupStack::PushL(active);
   753 
   754 	TTime now;
   755 	now.UniversalTime();
   756 	
   757 	active->StartL();
   758 	aClient.ClearLog(now, aSimId, active->iStatus);
   759 		
   760 	CActiveScheduler::Start();
   761 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   762 	
   763 	CleanupStack::PopAndDestroy(); // active
   764 	}	
   765 
   766 /**
   767 @SYMTestCaseID			PDS-LOGENG-UT-4041
   768 @SYMTestCaseDesc		Clear log events from the specified recent list with specific SimId - platform security test.
   769 						This test is called from two test applications: t_logHicapability 
   770 						and t_loglowcapabilty. As the names state, t_loghicapability has platsec capabilities to 
   771 						call CLogClient::CLearLog(), t_loglowcapabilty - hasn't.
   772 						When t_loghicapability calls ClearLogL(), "TheHiCapability" flag is true and it is expected
   773 						the CLogClient::ClearLog() call to complete successfully. 
   774 						When t_loglowcapability calls ClearLogL(), "TheHiCapability" flag is false and it is expected
   775 						the CLogClient::ClearLog() call to fail with KErrPermissionDenied. 
   776 @SYMTestActions			Clear log events from the specified recent list with specific SimId - platform security test.
   777 @SYMTestExpectedResults Test must not fail
   778 @SYMTestPriority		High
   779 @SYMREQ					REQ12748
   780 */
   781 void ClearRecentListL(CLogClient& aClient, TSimId aSimId)
   782 	{//This test case is compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined.
   783 	CTestActive* active = new(ELeave)CTestActive();
   784 	CleanupStack::PushL(active);
   785 
   786 	TTime now;
   787 	now.UniversalTime();
   788 	
   789 	active->StartL();
   790 	aClient.ClearLog(KLogRecentIncomingCalls, aSimId, active->iStatus);
   791 	
   792 	CActiveScheduler::Start();
   793 	TEST2(active->iStatus.Int(), TheHiCapability ? KErrNone : KErrPermissionDenied);
   794 	
   795 	CleanupStack::PopAndDestroy(); // active
   796 	}	
   797 
   798 #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM	
   799 
   800 /**
   801 @SYMTestCaseID SYSLIB-LOGENG-CT-0129
   802 @SYMTestCaseDesc Test that a view only contains events that are suitable for a clients cabability
   803 @SYMTestPriority High
   804 @SYMTestActions See comments in the trest code below for further info.
   805 @SYMTestExpectedResults Should always succeed
   806 @SYMREQ REQ3431
   807 */
   808 LOCAL_C void TestEventViewWithFilterL(CLogClient& aClient)
   809 	{
   810 	// TestUtils::AddTestEventsL() --> should be called before this function.
   811 	// It deletes the database, then...
   812 	// adds 8 events - 2 are visible to clients with no capabilities
   813 	// and 6 are of type KLogCallEventTypeUid, which is protected.
   814 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0129 "));
   815 	CTestActive* active = new(ELeave)CTestActive;
   816 	CleanupStack::PushL(active);
   817 
   818 	CLogFilterList* list = new(ELeave)CLogFilterList;
   819 	CleanupStack::PushL(list);
   820 
   821 	CLogViewEvent* view = CLogViewEvent::NewL(aClient);
   822 	CleanupStack::PushL(view);
   823 
   824 	CLogFilter* filter = CLogFilter::NewL();
   825 	CleanupStack::PushL(filter);
   826 	
   827 	TLogString direction;
   828 	aClient.GetString(direction, R_LOG_DIR_IN);
   829 	
   830 	// Test 1.
   831 	// Of the 8 new events, 2 have KTestContact1 as the contact field
   832 	// One of them is a secure type and the other isn't.
   833 	// So, if running at hi capability, expect 2 events, else 1
   834 	TInt expectedEventCount = (TheHiCapability) ? 2 : 1;
   835 	filter->SetContact(KTestContact1);
   836 	list->AppendL(filter);
   837 	active->StartL();
   838 	TEST(view->SetFilterL(*list, active->iStatus));
   839 	CActiveScheduler::Start();
   840 	TEST(view->CountL() == expectedEventCount);
   841 	
   842 	// Test 2.
   843 	// Of the 8 new events, 6 have KTestContact2 as the contact field
   844 	// One of them is a secure type and the other isn't.
   845 	// The filters will be combined in the query, so expect
   846 	// 8 events if running at hi capability, else 2
   847 	expectedEventCount = (TheHiCapability) ? 8 : 2;
   848 	CleanupStack::Pop(); // filter
   849 	filter = CLogFilter::NewL();
   850 	CleanupStack::PushL(filter);
   851 	filter->SetContact(KTestContact2);
   852 	list->AppendL(filter);
   853 	active->StartL();
   854 	TEST(view->SetFilterL(*list, active->iStatus));
   855 	CActiveScheduler::Start();
   856 	TEST(view->CountL() == expectedEventCount);
   857 		
   858 	// Test 3.
   859 	// Of the 8 new events, 7 have R_LOG_DIR_IN as the direction field.
   860 	// Two of these are only visible for hi capability clients, the other one
   861 	// can be viewed by all clients.
   862 	expectedEventCount = (TheHiCapability) ? 7 : 1;
   863 	CleanupStack::Pop(); // filter
   864 	filter = CLogFilter::NewL();
   865 	CleanupStack::PushL(filter);
   866 	filter->SetDirection(direction);
   867 	list->AppendL(filter);
   868 	active->StartL();
   869 	TEST(view->SetFilterL(*list, active->iStatus));
   870 	CActiveScheduler::Start();
   871 	TEST(view->CountL() == expectedEventCount);
   872 	
   873 	// clear up...
   874 	list->ResetAndDestroy();
   875 	CleanupStack::Pop(); // filter
   876 	CleanupStack::PopAndDestroy(3);  // view, list, active
   877 	}
   878 
   879 
   880 
   881 
   882 /**
   883 @SYMTestCaseID SYSLIB-LOGENG-CT-0130
   884 @SYMTestCaseDesc Test the clients ability to view recent events
   885 @SYMTestActions See the description and expected results.
   886 @SYMTestPriority High
   887 @SYMTestExpectedResults Should always succeed
   888 @SYMREQ REQ3431
   889 */
   890 LOCAL_C void TestRecentViewL(CLogClient& aClient)
   891 	{
   892 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0130 "));
   893 	CTestActive* active = new(ELeave)CTestActive();
   894 	CleanupStack::PushL(active);
   895 
   896 	CLogViewRecent* view = CLogViewRecent::NewL(aClient);
   897 	CleanupStack::PushL(view);
   898 
   899 	active->StartL();
   900 	
   901 	// will return FALSE if the view is empty, which should  be the case
   902 	// with low/no capability clients.
   903 	if (view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus))
   904 		{
   905 		__ASSERT_ALWAYS(TheHiCapability, _L("TestRecentViewL"));
   906 		CActiveScheduler::Start();
   907 		TEST2(active->iStatus.Int(), KErrNone);
   908 		TEST(view->CountL() == 2);
   909 		TInt count = view->CountL();
   910 		}
   911 	else	// low capability client won't be able to see recent incoming calls
   912 		{
   913 		__ASSERT_ALWAYS(!TheHiCapability, _L("TestRecentViewL"));
   914 		active->Cancel();
   915 		}
   916 
   917 	CleanupStack::PopAndDestroy(2);	// view, active
   918 	}
   919 
   920 //.............................................................................
   921 
   922 void doTestsL()
   923 	{
   924     TestUtils::Initialize(KTestTitle);
   925 					
   926 	TheTest.Start(_L("Starting tests..."));
   927 		
   928 	CLogClient* client = CLogClient::NewL(theFs);
   929 	CleanupStack::PushL(client);
   930 	
   931 	TestUtils::DeleteDatabaseL();
   932 	
   933 	TheTest.Next(_L("Server startup"));
   934 	TestStartupL();
   935 	User::After(100000);
   936 
   937 	TheTest.Next(_L("Test Add, Get, Change & Delete event"));
   938 	TestUtils::DeleteDatabaseL();
   939 	TestBasicL(*client);
   940 	theLog.Write(_L8("Basic tests OK\n"));
   941 
   942 	TheTest.Next(_L("Add Event Type"));
   943 	TestAddEventTypeL(*client);
   944 	theLog.Write(_L8("Add Event Type test OK\n"));
   945 	
   946 	if(!TheHiCapability)
   947 		{	
   948 		// TestAddEventTypeL() will have failed to add an event type, so
   949 		// this will ensure one is present for the next tests.
   950 		TestUtils::AddEventTypeL();
   951 		}
   952 	
   953 	TheTest.Next(_L("Get Event Type"));
   954 	TestGetEventTypeL(*client);
   955 	theLog.Write(_L8("Get Event Type test OK\n"));
   956 	
   957 	TheTest.Next(_L("Change Event Type"));
   958 	TestChangeEventTypeL(*client);
   959 	theLog.Write(_L8("Change Event Type test OK\n"));
   960 	
   961 	TheTest.Next(_L("Delete Event Type"));
   962 	TestDeleteEventTypeL(*client);
   963 	theLog.Write(_L8("Delete Event Type test OK\n"));
   964 	
   965 	TheTest.Next(_L("Delete Built-in Event Type"));
   966 	TestDeleteBuiltInEventTypeL(*client);
   967 	theLog.Write(_L8("Delete Built-in Event Type test OK\n"));
   968 	
   969 	TheTest.Next(_L("Get Server Configuration"));
   970 	TestGetConfigL(*client);
   971 	theLog.Write(_L8("Get Server Configuration test OK\n"));
   972 	
   973 	TheTest.Next(_L("Change Server Configuration"));
   974 	TestChangeConfigL(*client);
   975 	theLog.Write(_L8("Change Server Configuration test OK\n"));
   976 	
   977 	TheTest.Next(_L("Clear the Log test"));
   978 	ClearLogL(*client);
   979 	theLog.Write(_L8("Clear the Log test OK\n"));
   980 		
   981 	TheTest.Next(_L("Clear Recent List test"));
   982 	ClearRecentListL(*client);
   983 	theLog.Write(_L8("Clear Recent List test OK\n"));
   984 	
   985 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM	
   986 	const TSimId KSimId = 4000000000U;
   987 
   988 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4040 Clear the \"Log + SimId\" test"));
   989 	ClearLogL(*client, KSimId);
   990 	theLog.Write(_L8("Clear the \"Log + SimId\" test OK\n"));
   991 
   992 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4041 Clear \"Recent List + SimId\" test"));
   993 	ClearRecentListL(*client, KSimId);
   994 	theLog.Write(_L8("Clear \"Recent List + SimId\" test OK\n"));
   995 #endif
   996 	
   997 	//
   998 	// View API tests below this
   999 	//
  1000 	TestUtils::DeleteDatabaseL();
  1001 	
  1002 	// TestUtils::AddTestEventsL() -->  adds 8 events.
  1003 	// 2 are visible to clients with no capabilities
  1004 	// and 6 are of type KLogCallEventTypeUid, which is protected.
  1005 	TestUtils::AddViewTestEventsL();
  1006 	
  1007 	TheTest.Next(_L("Event View with Filter list"));
  1008 	TestEventViewWithFilterL(*client);	
  1009 	theLog.Write(_L8("Event View with Filter list test OK\n"));
  1010 	
  1011 	TheTest.Next(_L("Recent View"));
  1012 	TestRecentViewL(*client);
  1013 	theLog.Write(_L8("Recent View test OK\n"));
  1014 
  1015 	TestUtils::DeleteDatabaseL();	// ready for next test
  1016 
  1017 	CleanupStack::PopAndDestroy(); // client
  1018 	}