os/persistentdata/loggingservices/eventlogger/test/src/t_logsimid.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2009-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 // t_logsimid.cpp - Log event tests using the SimId event property
    15 // 
    16 //
    17 #include <s32file.h>
    18 #include <s32mem.h>
    19 #include <e32math.h>
    20 #include <bautils.h>
    21 #include <logview.h>
    22 #include <logcli.h>
    23 #include "t_logutil2.h"
    24 #include "LogServSqlStrings.h"
    25 
    26 RTest TheTest(_L("t_logsimid"));
    27 
    28 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM	
    29 
    30 const TLogId KEvId1 = 101;
    31 _LIT(KEvDesc1, "Event Type Description 1");
    32 _LIT(KEvRemote1, "Remote Party 1");
    33 
    34 //Event type related
    35 //KLogCallEventType is used in order to use the "recent list" related functionality on the server side
    36 //(KEvDirection1 value also plays important role)
    37 const TUid KEvTypeUid = {KLogCallEventType};
    38 //KEvDirection1 together with the KEvTypeUid guarantee that the properties of events being added match the conditions of one
    39 //of the LogEng server recent lists and thus the "recent list" related functionality on the server side will be used.
    40 _LIT(KEvDirection1, "Missed call");
    41 
    42 _LIT(KEvStatus1, "Status 1");
    43 _LIT(KEvSubject1, "Subject 1");
    44 _LIT(KEvNumber1, "11119999");
    45 const TLogDurationType KEvDurationType1 = 1;
    46 const TLogDuration KEvDuration1 = 1000;
    47 const TLogContactItemId KEvContact1 = 1010;
    48 const TLogLink KEvLink1 = 2000;
    49 _LIT8(KEvData1, "ABCDEFGH 1");
    50 const TLogFlags KEvFlags1 = 0x5;
    51 const TSimId KEvSimId1 = 3000000910U;//Bigger than KMaxTInt, to check that SQL statement formatting works as expected
    52 
    53 const TInt KDiffEvCount = 10;
    54 const TLogDurationType KEvDurationType2 = 2;
    55 _LIT(KEvNumber2, "22226666");
    56 
    57 const TUid KEvTypeUidLoggingDisabled = {0x447422};
    58 
    59 //The default max log size is 1000. But the test timeouts on hardware with max log size of 1000.
    60 const TInt KMaxLogSize = 200;
    61 const TInt KMaxPlusEvCount = 100; //Added events count on top of the max log size
    62 
    63 TInt TheAddedEventCount = -1;
    64 TInt TheMaxLogSize = -1;
    65 
    66 enum TLogViewSimId {ELogWithoutSimId, ELogWithSimId, ELogIgnoreSimId, ELogDiffEvents};
    67 
    68 TLogId TheEvId = -1;
    69 
    70 void DoTestEvent1(const CLogEvent& aEvent)
    71 	{
    72 	TEST(aEvent.Id() == KEvId1);
    73 	TEST(aEvent.EventType() == KEvTypeUid);
    74 	TEST(aEvent.RemoteParty() == KEvRemote1);
    75 	TEST(aEvent.Direction() == KEvDirection1);
    76 	TEST(aEvent.DurationType() == KEvDurationType1);
    77 	TEST(aEvent.Duration() == KEvDuration1);
    78 	TEST(aEvent.Status() == KEvStatus1);
    79 	TEST(aEvent.Subject() == KEvSubject1);
    80 	TEST(aEvent.Number() == KEvNumber1);
    81 	TEST(aEvent.Contact() == KEvContact1);	
    82 	TEST(aEvent.Link() == KEvLink1);
    83 	TEST(aEvent.Description() == KEvDesc1);
    84 	TEST(aEvent.Flags() == KEvFlags1);
    85 	TEST(aEvent.Data() == KEvData1);
    86 	TEST(aEvent.SimId() == KEvSimId1);
    87 	}
    88 
    89 void DoTestFilter1(const CLogFilter& aFilter)
    90 	{
    91 	TEST(aFilter.EventType() == KEvTypeUid);
    92 	TEST(aFilter.RemoteParty() == KEvRemote1);
    93 	TEST(aFilter.Direction() == KEvDirection1);
    94 	TEST(aFilter.DurationType() == KEvDurationType1);
    95 	TEST(aFilter.Status() == KEvStatus1);
    96 	TEST(aFilter.Contact() == KEvContact1);
    97 	TEST(aFilter.Number() == KEvNumber1);
    98 	TEST(aFilter.Flags() == KEvFlags1);
    99 	TEST(aFilter.SimId() == KEvSimId1);
   100 	}
   101 
   102 /**
   103 @SYMTestCaseID			PDS-LOGENG-UT-4025
   104 @SYMTestCaseDesc		CLogEvent API  and SimId test.
   105 						The test creates an event and checks that event Copy(), Internalize() and Externalize()
   106 						operations work properly.
   107 @SYMTestActions			CLogEvent API  and SimId test.
   108 @SYMTestExpectedResults Test must not fail
   109 @SYMTestPriority 	    Medium
   110 @SYMREQ					REQ12746
   111 */
   112 void LogEventApiTestL()
   113 	{
   114 	CLogEvent* event = CLogEvent::NewL();
   115 	CleanupStack::PushL(event);
   116 	
   117 	event->SetId(KEvId1);
   118 	event->SetEventType(KEvTypeUid);
   119 	event->SetRemoteParty(KEvRemote1);
   120 	event->SetDirection(KEvDirection1);
   121 	event->SetDurationType(KEvDurationType1);
   122 	event->SetDuration(KEvDuration1);
   123 	event->SetStatus(KEvStatus1);
   124 	event->SetSubject(KEvSubject1);
   125 	event->SetNumber(KEvNumber1);
   126 	event->SetContact(KEvContact1);
   127 	event->SetLink(KEvLink1);
   128 	event->SetDescription(KEvDesc1);
   129 	event->SetFlags(KEvFlags1);
   130 	event->SetDataL(KEvData1);
   131 	event->SetSimId( KEvSimId1);
   132 	
   133 	//Copy event
   134 	CLogEvent* event2 = CLogEvent::NewL();
   135 	CleanupStack::PushL(event2);
   136 	event2->CopyL(*event);
   137 	DoTestEvent1(*event2);
   138 	CleanupStack::PopAndDestroy(event2);
   139 
   140 	//Externalize event
   141 	TBuf8<512> buf;
   142 	RDesWriteStream strmOut;
   143 	strmOut.Open(buf);
   144 	event->ExternalizeL(strmOut);
   145 	strmOut.CommitL();
   146 	strmOut.Close();
   147 	
   148 	//Internalize event
   149 	CLogEvent* event3 = CLogEvent::NewL();
   150 	CleanupStack::PushL(event3);
   151 	RDesReadStream strmIn;
   152 	strmIn.Open(buf);
   153 	event3->InternalizeL(strmIn);
   154 	strmIn.Close();
   155 	DoTestEvent1(*event3);
   156 	CleanupStack::PopAndDestroy(event3);
   157 
   158 	CleanupStack::PopAndDestroy(event);
   159 	}
   160 
   161 /**
   162 @SYMTestCaseID			PDS-LOGENG-UT-4026
   163 @SYMTestCaseDesc		CLogEvent API  and SimId test.
   164 						The test creates a filter and checks that filter Copy() operation work properly.
   165 @SYMTestActions			CLogEvent API  and SimId test.
   166 @SYMTestExpectedResults Test must not fail
   167 @SYMTestPriority 	    Medium
   168 @SYMREQ					REQ12747
   169 */
   170 void LogFilterApiTestL()
   171 	{
   172 	CLogFilter* filter = CLogFilter::NewL();
   173 	CleanupStack::PushL(filter);
   174 	
   175 	filter->SetEventType(KEvTypeUid);
   176 	filter->SetRemoteParty(KEvRemote1);
   177 	filter->SetDirection(KEvDirection1);
   178 	filter->SetDurationType(KEvDurationType1);
   179 	filter->SetStatus(KEvStatus1);
   180 	filter->SetContact(KEvContact1);
   181 	filter->SetNumber(KEvNumber1);
   182 	filter->SetFlags(KEvFlags1);
   183 	filter->SetSimId( KEvSimId1);
   184 
   185 	//Copy filter
   186 	CLogFilter* filter2 = CLogFilter::NewL();
   187 	CleanupStack::PushL(filter2);
   188 	filter2->Copy(*filter);
   189 	DoTestFilter1(*filter2);
   190 	CleanupStack::PopAndDestroy(filter2);
   191 
   192 	CleanupStack::PopAndDestroy(filter);
   193 	}
   194 
   195 void DoSetNewMaxLogSizeL(CLogClient& aClient, CTestActive& aActive)
   196 	{
   197 	//Check what is the max log size.
   198 	TLogConfig config;
   199 	aActive.StartL();
   200 	aClient.GetConfig(config, aActive.iStatus);
   201 	CActiveScheduler::Start();
   202 	TEST2(aActive.iStatus.Int(), KErrNone);
   203 	//Set new max log size
   204 	config.iMaxLogSize = KMaxLogSize;
   205 	aActive.StartL();
   206 	aClient.ChangeConfig(config, aActive.iStatus);
   207 	CActiveScheduler::Start();
   208 	TEST2(aActive.iStatus.Int(), KErrNone);
   209 	//Test the new max log size
   210 	aActive.StartL();
   211 	aClient.GetConfig(config, aActive.iStatus);
   212 	CActiveScheduler::Start();
   213 	TEST2(aActive.iStatus.Int(), KErrNone);
   214 	TEST2(config.iMaxLogSize, KMaxLogSize);
   215 	//
   216 	TheMaxLogSize = config.iMaxLogSize;
   217 	TheAddedEventCount = config.iMaxLogSize + KMaxPlusEvCount;
   218 	}
   219 
   220 /**
   221 @SYMTestCaseID			PDS-LOGENG-UT-4027
   222 @SYMTestCaseDesc		Add events test.
   223 						The test adds events to the LogEng database. The events count is bigger than the
   224 						max log size. Half of the events will be with non-zero SimId property. 
   225 						10 of the events will have different DurationType and Number values than the other events.
   226 						Apart from checking that the "add event" opertaion works with the new SimId property, this 
   227 						test case also prepares data for the other "view event" test cases.
   228 @SYMTestActions			Add events test.
   229 @SYMTestExpectedResults Test must not fail
   230 @SYMTestPriority 	    Medium
   231 @SYMREQ					REQ12746
   232 */
   233 void LogAddEventsTestL()
   234 	{
   235 	CLogClient* client = CLogClient::NewL(theFs);
   236 	CleanupStack::PushL(client);
   237 	CTestActive* active = new(ELeave)CTestActive();
   238 	CleanupStack::PushL(active);
   239 	
   240 	//Set new max log size
   241 	DoSetNewMaxLogSizeL(*client, *active);
   242 
   243 	//Add TheAddedEventCount events. Some of them with SimId, some - not.
   244 	//This certainly will involve some log purging operations when the log size reaches the max.
   245 	CLogEvent* event = CLogEvent::NewL();
   246 	CleanupStack::PushL(event);
   247 	event->SetEventType(KLogCallEventTypeUid);
   248 	event->SetRemoteParty(KEvRemote1);
   249 	event->SetDirection(KEvDirection1);
   250 	event->SetDurationType(KEvDurationType1);
   251 	event->SetDuration(KEvDuration1);
   252 	event->SetStatus(KEvStatus1);
   253 	event->SetSubject(KEvSubject1);
   254 	event->SetNumber(KEvNumber1);
   255 	event->SetContact(KEvContact1);
   256 	event->SetLink(KEvLink1);
   257 	event->SetDescription(KEvDesc1);
   258 	event->SetFlags(KEvFlags1);
   259 	event->SetDataL(KEvData1);
   260 	
   261 	TTime st_time;
   262 	st_time.UniversalTime();
   263 	
   264 	TheTest.Printf(_L("Added events:\n"));
   265 	TInt diffEvCount = KDiffEvCount;
   266 	for(TInt i=0;i<TheAddedEventCount;++i)
   267 		{
   268 		event->SetSimId(KLogNullSimId);
   269 		event->SetDurationType(KEvDurationType1);
   270 		event->SetNumber(KEvNumber1);
   271 		if((i %2) == 0)
   272 			{
   273 			event->SetSimId(KEvSimId1);
   274 			if((i > TheMaxLogSize / 2 + 1) && (i % 10) == 0 && --diffEvCount >= 0)
   275 				{//Add after the second half because when the log grows above the max log size, the first events will be deleted
   276 				event->SetDurationType(KEvDurationType2);
   277 				event->SetNumber(KEvNumber2);
   278 				}
   279 			}
   280 		active->StartL();
   281 		client->AddEvent(*event, active->iStatus);
   282 		CActiveScheduler::Start();
   283 		TEST(!active->IsActive());
   284 		TEST2(active->iStatus.Int(), KErrNone);
   285 		if((i % 50) == 0)
   286 			{
   287 			TheTest.Printf(_L("%d\r"), i);
   288 			}
   289 		}
   290 	TheTest.Printf(_L("%d\n"), TheAddedEventCount);
   291 	
   292 	TTime end_time;
   293 	end_time.UniversalTime();
   294 	
   295 	CleanupStack::PopAndDestroy(event);
   296 	
   297 	CleanupStack::PopAndDestroy(active);
   298 	CleanupStack::PopAndDestroy(client);
   299 	
   300 	TTimeIntervalMicroSeconds us = end_time.MicroSecondsFrom(st_time);
   301 	TheTest.Printf(_L("%d events added. Time: %ld milliseconds\n"), TheAddedEventCount, us.Int64() / 1000);
   302 	}
   303 
   304 void DoSetFilterL(TLogViewSimId aViewSimId, TInt aExpectedEventCount, 
   305 				 CLogViewEvent& aLogView, CLogFilter& aLogFilter, CTestActive& aActive)
   306 	{
   307 	switch(aViewSimId)
   308 		{
   309 		case ELogWithoutSimId:
   310 			aLogFilter.SetNullFields(ELogSimIdField);
   311 			break;
   312 		case ELogWithSimId:
   313 			aLogFilter.SetSimId(KEvSimId1);
   314 			break;
   315 		case ELogDiffEvents:
   316 			aLogFilter.SetSimId(KEvSimId1);
   317 			aLogFilter.SetDurationType(KEvDurationType2);
   318 			aLogFilter.SetNumber(KEvNumber2);
   319 			break;
   320 		case ELogIgnoreSimId:
   321 		default:
   322 			break;
   323 		}
   324 	TBool res = aLogView.SetFilterL(aLogFilter, aActive.iStatus);
   325 	TEST(res);
   326 	aActive.StartL();
   327 	CActiveScheduler::Start();
   328 	TEST2(aActive.iStatus.Int(), KErrNone);
   329 	TInt count = aLogView.CountL();
   330 	TheTest.Printf(_L("===Events count: %d\n"), count);
   331 	TEST2(count, aExpectedEventCount);
   332 	}
   333 
   334 void DoTestViewEvent(TLogViewSimId aViewSimId, CLogViewEvent& aLogView)
   335 	{
   336 	const CLogEvent& e = aLogView.Event();
   337 	TSimId simid = e.SimId();
   338 	TLogDurationType durationType = e.DurationType();
   339 	const TDesC& number = e.Number();
   340 	switch(aViewSimId)
   341 		{
   342 		case ELogWithoutSimId:
   343 			TEST2(simid, KLogNullSimId);
   344 			break;
   345 		case ELogWithSimId:
   346 			TEST2U(simid, KEvSimId1);
   347 			break;
   348 		case ELogDiffEvents:
   349 			TEST2U(simid, KEvSimId1);
   350 			TEST2(durationType, KEvDurationType2);
   351 			TEST(number == KEvNumber2);
   352 			break;
   353 		case ELogIgnoreSimId:
   354 		default:
   355 			break;
   356 		}
   357 	}
   358 
   359 /**
   360 @SYMTestCaseID			PDS-LOGENG-UT-4028
   361 @SYMTestCaseDesc		View events test.
   362 						The test case expects the LogEng database to be already filled with events.
   363 						Depending what is the value of the aViewSimId, the test will prepare a view and
   364 						set the view filter to filter in events without SimId, events with SimId, all events,
   365 						or the events with different DurationType and Number property values. The purpose
   366 						of the test is to check that the event filtering works as expected with the new SimId
   367 						property. 
   368 @SYMTestActions			View events test.
   369 @SYMTestExpectedResults Test must not fail
   370 @SYMTestPriority 	    Medium
   371 @SYMREQ					REQ12746
   372 */
   373 void LogViewEventsTestL(TLogViewSimId aViewSimId, TInt aExpectedEventCount)
   374 	{
   375 	CLogClient* client = CLogClient::NewL(theFs);
   376 	CleanupStack::PushL(client);
   377 	CTestActive* active = new(ELeave)CTestActive();
   378 	CleanupStack::PushL(active);
   379 	CLogViewEvent* view = CLogViewEvent::NewL(*client);
   380 	CleanupStack::PushL(view);
   381 	CLogFilter* filter = CLogFilter::NewL();
   382 	CleanupStack::PushL(filter);
   383 	
   384 	TTime st_time;
   385 	st_time.UniversalTime();
   386 	DoSetFilterL(aViewSimId, aExpectedEventCount, *view, *filter, *active); 
   387 	TTime end_time;
   388 	end_time.UniversalTime();
   389 	TTimeIntervalMicroSeconds us = end_time.MicroSecondsFrom(st_time);
   390 	TheTest.Printf(_L("SetFilter(). Time: %ld milliseconds\n"), us.Int64() / 1000);
   391 	
   392 	TInt count = 0; 
   393 	st_time.UniversalTime();
   394 	if(view->FirstL(active->iStatus))
   395 		{
   396 		do
   397 			{
   398 			active->StartL();
   399 			CActiveScheduler::Start();
   400 			TEST2(active->iStatus.Int(), KErrNone);
   401 			DoTestViewEvent(aViewSimId, *view);
   402 			++count;
   403 			}
   404 		while(view->NextL(active->iStatus));
   405 		}
   406 	end_time.UniversalTime();
   407 	us = end_time.MicroSecondsFrom(st_time);
   408 	TheTest.Printf(_L("Event view walk completed. Events count: %d. Time: %ld milliseconds\n"), count, us.Int64() / 1000);
   409 		
   410 	CleanupStack::PopAndDestroy(filter);
   411 	CleanupStack::PopAndDestroy(view);
   412 	CleanupStack::PopAndDestroy(active);
   413 	CleanupStack::PopAndDestroy(client);
   414 	}
   415 
   416 //Add a new event type with "logging disabled"
   417 void DoAddEventTypeL(CLogClient& aClient, CTestActive& aActive)
   418 	{
   419 	CLogEventType* type = CLogEventType::NewL();
   420 	CleanupStack::PushL(type);
   421 
   422 	type->SetUid(KEvTypeUidLoggingDisabled);
   423 	type->SetDescription(_L("110111011011"));
   424 	type->SetLoggingEnabled(EFalse);
   425 
   426 	aClient.AddEventType(*type, aActive.iStatus);
   427 	aActive.StartL();
   428 	CActiveScheduler::Start();
   429 	TEST2(aActive.iStatus.Int(), KErrNone);
   430 
   431 	CleanupStack::PopAndDestroy(type);
   432 	}
   433 
   434 void doTestsL()
   435 	{
   436     TestUtils::Initialize(_L("t_logsimid"));
   437 	TestUtils::DeleteDatabaseL();
   438 	//
   439 	TheTest.Start(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4025: CLogEvent API test"));
   440 	LogEventApiTestL();
   441 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4026: CLogFilter API test"));
   442 	LogFilterApiTestL();
   443 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4027: Add events test"));
   444 	LogAddEventsTestL();
   445 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: View events without SimId test"));
   446 	LogViewEventsTestL(ELogWithoutSimId, TheMaxLogSize / 2);
   447 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: View events with SimId test"));
   448 	LogViewEventsTestL(ELogWithSimId, TheMaxLogSize / 2);
   449 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: View events with or without SimId test"));
   450 	LogViewEventsTestL(ELogIgnoreSimId, TheMaxLogSize);
   451 	TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-UT-4028: More complex event view test"));
   452 	LogViewEventsTestL(ELogDiffEvents, KDiffEvCount);
   453 	//
   454 	TestUtils::DeleteDatabaseL();
   455 	}
   456 
   457 #else//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
   458 
   459 void doTestsL()
   460 	{
   461     TestUtils::Initialize(_L("t_logsimid"));
   462 	TheTest.Start(_L("The t_simid test cases are compiled only when SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM macro is defined!"));
   463 	}
   464 
   465 #endif//SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM