os/persistentdata/loggingservices/eventlogger/test/src/t_logbench.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-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 #define __PROFILING__
    17 #include <s32file.h>
    18 #include "t_logutil2.h"
    19 #include <logview.h>
    20 
    21 RTest TheTest(_L("t_logbench"));
    22 
    23 TLogConfig theConfig;
    24 
    25 _LIT(KTestString, "%dabcdefghijklmnopqrstuvwxyz");
    26 _LIT(KResultFile, "C:\\LOGENG_TEST.TXT");
    27 
    28 const TInt KLogSize = 50;
    29 const TInt KTestFactor = 2;  
    30 
    31 // Class used to record test details
    32 class TTestDetails
    33 	{
    34 public:
    35 	TInt iEventNum;
    36 	TInt iTimeToAdd;
    37 	//
    38 	TInt iViewSize;
    39 	TInt iTimeToNavigate;
    40 	//
    41 	TInt iDatabaseSize;
    42 	TInt iHeapSize;
    43 	};
    44 
    45 LOCAL_C TInt GetHeapSizeL()
    46 	{	
    47 	TInt heap = 0;
    48 	heap = User::Heap().Size();
    49 
    50 	return heap;
    51 	}
    52 
    53 LOCAL_C TInt GetServerHeapSizeL()
    54 	{
    55 	return 1024 * 1024;//By default - the process heap is 1M.
    56 	}
    57 
    58 LOCAL_C TInt DatabaseSizeL()
    59 	{
    60 		return TestUtils::DatabaseSizeL();
    61 	}
    62 
    63 /**
    64 @SYMTestCaseID          SYSLIB-LOGENG-CT-0988
    65 @SYMTestCaseDesc	    Sets the configuration setup for the tests
    66 @SYMTestPriority 	    High
    67 @SYMTestActions  	    Setup for the environment for the tests
    68 @SYMTestExpectedResults Test must not fail
    69 @SYMREQ                 REQ0000
    70 */
    71 LOCAL_C void TestSetupL(CLogClient& aClient)
    72 	{
    73 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0988 "));
    74 	CTestActive* active = new(ELeave)CTestActive;
    75 	CleanupStack::PushL(active);
    76 
    77 	// Get configuration
    78 	aClient.GetConfig(theConfig, active->iStatus);
    79 	active->StartL();
    80 	CActiveScheduler::Start();
    81 	TEST2(active->iStatus.Int(), KErrNone);
    82 
    83 	TheTest.Printf(_L("  Log size: %d\n"), theConfig.iMaxLogSize);
    84 	TheTest.Printf(_L("  Recent list size: %d\n"), theConfig.iMaxRecentLogSize);
    85 	TheTest.Printf(_L("  Max Event Age: %d\n"), theConfig.iMaxEventAge);
    86 
    87 	TestUtils::DeleteDatabaseL();
    88 
    89 	// Get configuration
    90 	aClient.GetConfig(theConfig, active->iStatus);
    91 	active->StartL();
    92 	CActiveScheduler::Start();
    93 	TEST2(active->iStatus.Int(), KErrNone);
    94 
    95 	// Wait for user interation
    96 	//TheTest.Printf(_L("  Quick tests performed if no key pressed in next 10 seconds\n"));
    97     //TKeyCode key;
    98 	//if (!TestUtils::WaitForKeyL(10000000, key))
    99 		{
   100 		theConfig.iMaxLogSize = KLogSize;
   101 
   102 		// Set configuration in database
   103 		aClient.ChangeConfig(theConfig, active->iStatus);
   104 		active->StartL();
   105 		CActiveScheduler::Start();
   106 		TEST2(active->iStatus.Int(), KErrNone);
   107 		}
   108 
   109 	CleanupStack::PopAndDestroy(); // active
   110 	}
   111 
   112 /**
   113 @SYMTestCaseID          SYSLIB-LOGENG-CT-0989
   114 @SYMTestCaseDesc	    Benchmark test
   115 						Tests for writing the log details to a file
   116 @SYMTestPriority 	    High
   117 @SYMTestActions  	    Add events to the log and write the configuration details to a file
   118 @SYMTestExpectedResults Test must not fail
   119 @SYMREQ                 REQ0000
   120 */
   121 LOCAL_C void BenchmarkTestL(CLogClient& aClient, RFile& aFile)
   122 	{
   123 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0989 "));
   124 	CTestActive* active = new(ELeave)CTestActive;
   125 	CleanupStack::PushL(active);
   126 
   127 	CLogViewEvent* view = CLogViewEvent::NewL(aClient);
   128 	CleanupStack::PushL(view);
   129 
   130 	CLogFilter* filter = CLogFilter::NewL();
   131 	CleanupStack::PushL(filter);
   132 
   133 	CLogEvent* event = CLogEvent::NewL();
   134 	CleanupStack::PushL(event);
   135 	event->SetEventType(KLogCallEventTypeUid);
   136 
   137 	aFile.Write(_L8("Adding Events\n"));
   138 
   139 	TBuf8<256> buf;
   140 	TInt count = 0;
   141 
   142 	TLogString string;
   143 	string.Format(KTestString, count);
   144 
   145 	while(count++ < theConfig.iMaxLogSize * KTestFactor)
   146 		{
   147 		event->SetRemoteParty(string);
   148 		event->SetSubject(string);
   149 		event->SetNumber(string);
   150 		event->SetStatus(string);
   151 
   152 		if (count % 10 == 0)
   153 			string.Format(KTestString, count);
   154 
   155 		TTime before;
   156 		before.UniversalTime();
   157 
   158 		// Add a new event
   159 		aClient.AddEvent(*event, active->iStatus);
   160 		active->StartL();
   161 		CActiveScheduler::Start();
   162 		TEST2(active->iStatus.Int(), KErrNone);
   163 
   164 		TTime after;
   165 		after.UniversalTime();
   166 		TTimeIntervalMicroSeconds interval = after.MicroSecondsFrom(before);
   167 
   168 		TInt dbSize = DatabaseSizeL();
   169 		TInt heapSize = GetHeapSizeL();
   170 		TInt serverHeapSize = GetServerHeapSizeL();
   171 
   172 		// Store details in file
   173 		TheTest.Printf(_L("  Num: %d, Time: %d, Db Size: %d, Hs: %d, Server Hs: %d\n"), count, I64INT(interval.Int64()), dbSize, heapSize, serverHeapSize);
   174 		buf.Format(_L8("%d,%d,%d,%d,%d\n"), count, I64INT(interval.Int64()), dbSize, heapSize, serverHeapSize);
   175 		aFile.Write(buf);
   176 		}
   177 
   178 	aFile.Write(_L8("Navigating View\n"));
   179 	count = 1;
   180 
   181 	// Navigate the view
   182 	TEST(view->SetFilterL(*filter, active->iStatus));
   183 	active->StartL();
   184 	CActiveScheduler::Start();
   185 	TEST2(active->iStatus.Int(), KErrNone);
   186 
   187 	while(view->NextL(active->iStatus))
   188 		{
   189 		TTime before;
   190 		before.UniversalTime();
   191 
   192 		active->StartL();
   193 		CActiveScheduler::Start();
   194 		TEST2(active->iStatus.Int(), KErrNone);
   195 
   196 		TTime after;
   197 		after.UniversalTime();
   198 		TTimeIntervalMicroSeconds interval = after.MicroSecondsFrom(before);
   199 
   200 		TInt heapSize = GetHeapSizeL();
   201 		TInt serverHeapSize = GetServerHeapSizeL();
   202 
   203 		// Store details in file
   204 		TheTest.Printf(_L("  Count: %d, Time: %d, Hs: %d, Server Hs: %d\n"), count, I64INT(interval.Int64()), heapSize, serverHeapSize);
   205 		buf.Format(_L8("%d,%d,%d,%d\n"), count++, I64INT(interval.Int64()), heapSize, serverHeapSize);
   206 		aFile.Write(buf);
   207 		}
   208 
   209 	CleanupStack::PopAndDestroy(4); // event, filter, view, active
   210 	}
   211 
   212 /**
   213 @SYMTestCaseID          SYSLIB-LOGENG-CT-0990
   214 @SYMTestCaseDesc	    Tests for CLogViewRecent::SetRecentListL(),CLogViewRecent::DuplicatesL() functions
   215 @SYMTestPriority 	    High
   216 @SYMTestActions  	    Set the recent log view list and refresh for the duplicates view.
   217                         Check for ErrNone flag
   218 @SYMTestExpectedResults Test must not fail
   219 @SYMREQ                 REQ0000
   220 */
   221 LOCAL_C void DoTestRecentViewsL(CLogClient& aClient, TLogRecentList aList, TInt aRecentCount, TInt aDuplicateCount)
   222 	{
   223 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0990 "));
   224 	CTestActive* active = new(ELeave)CTestActive();
   225 	CleanupStack::PushL(active);
   226 
   227 	CLogViewRecent* recent = CLogViewRecent::NewL(aClient);
   228 	CleanupStack::PushL(recent);
   229 
   230 	CLogViewDuplicate* duplicate = CLogViewDuplicate::NewL(aClient);
   231 	CleanupStack::PushL(duplicate);
   232 
   233 	TEST(recent->SetRecentListL(aList, active->iStatus) || aRecentCount == 0);
   234 	do
   235 		{
   236 		if (aRecentCount == 0)
   237 			break;
   238 
   239 		active->StartL();
   240 		CActiveScheduler::Start();
   241 		TEST2(active->iStatus.Int(), KErrNone);
   242 
   243 		TEST(recent->DuplicatesL(*duplicate, active->iStatus) || aDuplicateCount == 0);
   244 		do
   245 			{
   246 			if (aDuplicateCount == 0)
   247 				break;
   248 
   249 			active->StartL();
   250 			CActiveScheduler::Start();
   251 			TEST2(active->iStatus.Int(), KErrNone);
   252 			}
   253 		while(duplicate->NextL(active->iStatus));
   254 		TEST(duplicate->CountL() == aDuplicateCount);
   255 		}
   256 	while(recent->NextL(active->iStatus));
   257 	TEST(recent->CountL() == aRecentCount);
   258 
   259 	CleanupStack::PopAndDestroy(3); // active, recent, duplicate
   260 	}
   261 
   262 /**
   263 @SYMTestCaseID          SYSLIB-LOGENG-CT-0991
   264 @SYMTestCaseDesc	    Tests to clear the duplicates in a view
   265                         Tests CLogViewRecent::ClearDuplicatesL() function
   266 @SYMTestPriority 	    High
   267 @SYMTestActions  	    Set the recent log view list.Check for ErrNone flag.
   268                         Write the details to a file.
   269 @SYMTestExpectedResults Test must not fail
   270 @SYMREQ                 REQ0000
   271 */
   272 LOCAL_C void DoTestClearDuplicateL(CLogClient& aClient, TLogRecentList aList, RFile& aFile)
   273 	{
   274 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0991 "));
   275 	CTestActive* active = new(ELeave)CTestActive();
   276 	CleanupStack::PushL(active);
   277 
   278 	CLogViewRecent* recent = CLogViewRecent::NewL(aClient);
   279 	CleanupStack::PushL(recent);
   280 
   281 	TTime before;
   282 	before.UniversalTime();
   283 
   284 	recent->SetRecentListL(aList, active->iStatus);
   285 	active->StartL();
   286 	CActiveScheduler::Start();
   287 	TEST2(active->iStatus.Int(), KErrNone);
   288 	recent->ClearDuplicatesL();
   289 
   290 	TTime after;
   291 	after.UniversalTime();
   292 	TTimeIntervalMicroSeconds interval = after.MicroSecondsFrom(before);
   293 
   294 	TBuf8<256> buf;
   295 	TheTest.Printf(_L("Clearing Duplicates for List %d, %d\n"), recent->RecentList(), I64INT(interval.Int64()));
   296 	buf.Format(_L8("Clearing Duplicates for List %d, %d\n"), recent->RecentList(), I64INT(interval.Int64()));
   297 	aFile.Write(buf);
   298 
   299 	CleanupStack::PopAndDestroy(2); // recent, active
   300 	}
   301 
   302 /**
   303 @SYMTestCaseID          SYSLIB-LOGENG-CT-0992
   304 @SYMTestCaseDesc	    Recent lists view test
   305 @SYMTestPriority 	    High
   306 @SYMTestActions  	    Add the events to the log and execute the test functions. 
   307 @SYMTestExpectedResults Test must not fail
   308 @SYMREQ                 REQ0000
   309 */
   310 LOCAL_C void TestRecentListsL(CLogClient& aClient, RFile& aFile)
   311 	{
   312 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0992 "));
   313 	aFile.Write(_L8("Recent Lists\n"));
   314 
   315 	CTestActive* active = new(ELeave)CTestActive();
   316 	CleanupStack::PushL(active);
   317 
   318 	TLogConfig config;
   319 	active->StartL();
   320 	aClient.GetConfig(config, active->iStatus);
   321 	CActiveScheduler::Start();
   322 	TEST2(active->iStatus.Int(), KErrNone);
   323 
   324 	CLogEvent* event = CLogEvent::NewL();
   325 	CleanupStack::PushL(event);
   326 	event->SetEventType(KLogCallEventTypeUid);
   327 
   328 	for(TInt duplicates = 0; duplicates < 10; duplicates++)
   329 		{
   330 		TTime before;
   331 		before.UniversalTime();
   332 
   333 		// Incoming
   334 		TLogString incoming;
   335 		aClient.GetString(incoming, R_LOG_DIR_IN);
   336 		event->SetDirection(incoming);
   337 
   338 		TInt count;
   339 		for(count = 0; count < config.iMaxRecentLogSize; count++)
   340 			{
   341 			TLogString number;
   342 			number.Num(count);
   343 			event->SetNumber(number);
   344 
   345 			active->StartL();
   346 			aClient.AddEvent(*event, active->iStatus);
   347 			CActiveScheduler::Start();
   348 			TEST2(active->iStatus.Int(), KErrNone);
   349 			}
   350 
   351 		// Outgoing
   352 		TLogString outgoing;
   353 		aClient.GetString(outgoing, R_LOG_DIR_OUT);
   354 		event->SetDirection(outgoing);
   355 
   356 		for(count = 0; count < config.iMaxRecentLogSize; count++)
   357 			{
   358 			TLogString number;
   359 			number.Num(count);
   360 			event->SetNumber(number);
   361 
   362 			active->StartL();
   363 			aClient.AddEvent(*event, active->iStatus);
   364 			CActiveScheduler::Start();
   365 			TEST2(active->iStatus.Int(), KErrNone);
   366 			}
   367 
   368 		// Missed
   369 		TLogString missed;
   370 		aClient.GetString(missed, R_LOG_DIR_MISSED);
   371 		event->SetDirection(missed);
   372 
   373 		for(count = 0; count < config.iMaxRecentLogSize; count++)
   374 			{
   375 			TLogString number;
   376 			number.Num(count);
   377 			event->SetNumber(number);
   378 
   379 			active->StartL();
   380 			aClient.AddEvent(*event, active->iStatus);
   381 			CActiveScheduler::Start();
   382 			TEST2(active->iStatus.Int(), KErrNone);
   383 			}
   384 
   385 		TTime afterAdd;
   386 		afterAdd.UniversalTime();
   387 
   388 		DoTestRecentViewsL(aClient, KLogRecentIncomingCalls, config.iMaxRecentLogSize, duplicates);
   389 		DoTestRecentViewsL(aClient, KLogRecentOutgoingCalls, config.iMaxRecentLogSize, duplicates);
   390 		DoTestRecentViewsL(aClient, KLogRecentMissedCalls, config.iMaxRecentLogSize, duplicates);
   391 
   392 		TTime afterNav;
   393 		afterNav.UniversalTime();
   394 
   395 		TTimeIntervalMicroSeconds interval1 = afterAdd.MicroSecondsFrom(before);
   396 		TTimeIntervalMicroSeconds interval2 = afterNav.MicroSecondsFrom(afterAdd);
   397 
   398 		// Store details in file
   399 		TBuf8<256> buf;
   400 		TheTest.Printf(_L("  Count: %d, Add: %d, Nav: %d\n"), duplicates, I64INT(interval1.Int64()), I64INT(interval2.Int64()));
   401 		buf.Format(_L8("%d,%d,%d\n"), duplicates, I64INT(interval1.Int64()), I64INT(interval2.Int64()));
   402 		aFile.Write(buf);
   403 		}
   404 
   405 	DoTestClearDuplicateL(aClient, KLogRecentIncomingCalls, aFile);
   406 	DoTestClearDuplicateL(aClient, KLogRecentOutgoingCalls, aFile);
   407 	DoTestClearDuplicateL(aClient, KLogRecentMissedCalls, aFile);
   408 
   409 	CleanupStack::PopAndDestroy(2); // active, event
   410 	}
   411 
   412 
   413 void doTestsL()
   414 	{
   415 	TestUtils::Initialize(_L("t_logbench"));
   416 
   417 	CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
   418 	CleanupStack::PushL(notifier);
   419 
   420 	CLogClient* client = CLogClient::NewL(theFs);
   421 	CleanupStack::PushL(client);
   422 
   423 	CTestActive* active = new(ELeave)CTestActive();
   424 	CleanupStack::PushL(active);
   425 
   426 	TLogConfig config;
   427 	client->GetConfig(config, active->iStatus);
   428 	active->StartL();
   429 	CActiveScheduler::Start();
   430 	TEST2(active->iStatus.Int(), KErrNone);
   431 
   432 	TheTest.Start(_L("Setup"));
   433 	TestSetupL(*client);
   434 	theLog.Write(_L8("Test 1 OK\n"));
   435 	
   436 	RFile results;
   437 	LEAVE_IF_ERROR(results.Replace(theFs, KResultFile, EFileWrite|EFileShareExclusive));
   438 
   439 	TheTest.Next(_L("Benchmark tests"));
   440 	BenchmarkTestL(*client, results);
   441 	theLog.Write(_L8("Test 2 OK\n"));
   442 
   443 	TestUtils::DeleteDatabaseL();
   444 
   445 	TheTest.Next(_L("Recent List tests"));
   446 	TestRecentListsL(*client, results);
   447 	theLog.Write(_L8("Test 3 OK\n"));
   448 
   449 	// Restore Config
   450 	client->ChangeConfig(config, active->iStatus);
   451 	active->StartL();
   452 	CActiveScheduler::Start();
   453 	TEST2(active->iStatus.Int(), KErrNone);
   454 
   455 	results.Close();
   456 	CleanupStack::PopAndDestroy(3); // active, notifier, client;
   457 	}
   458