sl@0: // Copyright (c) 2002-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: #define __PROFILING__ sl@0: #include sl@0: #include "t_logutil2.h" sl@0: #include sl@0: sl@0: RTest TheTest(_L("t_logbench")); sl@0: sl@0: TLogConfig theConfig; sl@0: sl@0: _LIT(KTestString, "%dabcdefghijklmnopqrstuvwxyz"); sl@0: _LIT(KResultFile, "C:\\LOGENG_TEST.TXT"); sl@0: sl@0: const TInt KLogSize = 50; sl@0: const TInt KTestFactor = 2; sl@0: sl@0: // Class used to record test details sl@0: class TTestDetails sl@0: { sl@0: public: sl@0: TInt iEventNum; sl@0: TInt iTimeToAdd; sl@0: // sl@0: TInt iViewSize; sl@0: TInt iTimeToNavigate; sl@0: // sl@0: TInt iDatabaseSize; sl@0: TInt iHeapSize; sl@0: }; sl@0: sl@0: LOCAL_C TInt GetHeapSizeL() sl@0: { sl@0: TInt heap = 0; sl@0: heap = User::Heap().Size(); sl@0: sl@0: return heap; sl@0: } sl@0: sl@0: LOCAL_C TInt GetServerHeapSizeL() sl@0: { sl@0: return 1024 * 1024;//By default - the process heap is 1M. sl@0: } sl@0: sl@0: LOCAL_C TInt DatabaseSizeL() sl@0: { sl@0: return TestUtils::DatabaseSizeL(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0988 sl@0: @SYMTestCaseDesc Sets the configuration setup for the tests sl@0: @SYMTestPriority High sl@0: @SYMTestActions Setup for the environment for the tests sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestSetupL(CLogClient& aClient) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0988 ")); sl@0: CTestActive* active = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(active); sl@0: sl@0: // Get configuration sl@0: aClient.GetConfig(theConfig, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TheTest.Printf(_L(" Log size: %d\n"), theConfig.iMaxLogSize); sl@0: TheTest.Printf(_L(" Recent list size: %d\n"), theConfig.iMaxRecentLogSize); sl@0: TheTest.Printf(_L(" Max Event Age: %d\n"), theConfig.iMaxEventAge); sl@0: sl@0: TestUtils::DeleteDatabaseL(); sl@0: sl@0: // Get configuration sl@0: aClient.GetConfig(theConfig, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Wait for user interation sl@0: //TheTest.Printf(_L(" Quick tests performed if no key pressed in next 10 seconds\n")); sl@0: //TKeyCode key; sl@0: //if (!TestUtils::WaitForKeyL(10000000, key)) sl@0: { sl@0: theConfig.iMaxLogSize = KLogSize; sl@0: sl@0: // Set configuration in database sl@0: aClient.ChangeConfig(theConfig, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(); // active sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0989 sl@0: @SYMTestCaseDesc Benchmark test sl@0: Tests for writing the log details to a file sl@0: @SYMTestPriority High sl@0: @SYMTestActions Add events to the log and write the configuration details to a file sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void BenchmarkTestL(CLogClient& aClient, RFile& aFile) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0989 ")); sl@0: CTestActive* active = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogViewEvent* view = CLogViewEvent::NewL(aClient); sl@0: CleanupStack::PushL(view); sl@0: sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: aFile.Write(_L8("Adding Events\n")); sl@0: sl@0: TBuf8<256> buf; sl@0: TInt count = 0; sl@0: sl@0: TLogString string; sl@0: string.Format(KTestString, count); sl@0: sl@0: while(count++ < theConfig.iMaxLogSize * KTestFactor) sl@0: { sl@0: event->SetRemoteParty(string); sl@0: event->SetSubject(string); sl@0: event->SetNumber(string); sl@0: event->SetStatus(string); sl@0: sl@0: if (count % 10 == 0) sl@0: string.Format(KTestString, count); sl@0: sl@0: TTime before; sl@0: before.UniversalTime(); sl@0: sl@0: // Add a new event sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TTime after; sl@0: after.UniversalTime(); sl@0: TTimeIntervalMicroSeconds interval = after.MicroSecondsFrom(before); sl@0: sl@0: TInt dbSize = DatabaseSizeL(); sl@0: TInt heapSize = GetHeapSizeL(); sl@0: TInt serverHeapSize = GetServerHeapSizeL(); sl@0: sl@0: // Store details in file sl@0: TheTest.Printf(_L(" Num: %d, Time: %d, Db Size: %d, Hs: %d, Server Hs: %d\n"), count, I64INT(interval.Int64()), dbSize, heapSize, serverHeapSize); sl@0: buf.Format(_L8("%d,%d,%d,%d,%d\n"), count, I64INT(interval.Int64()), dbSize, heapSize, serverHeapSize); sl@0: aFile.Write(buf); sl@0: } sl@0: sl@0: aFile.Write(_L8("Navigating View\n")); sl@0: count = 1; sl@0: sl@0: // Navigate the view sl@0: TEST(view->SetFilterL(*filter, active->iStatus)); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: while(view->NextL(active->iStatus)) sl@0: { sl@0: TTime before; sl@0: before.UniversalTime(); sl@0: sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TTime after; sl@0: after.UniversalTime(); sl@0: TTimeIntervalMicroSeconds interval = after.MicroSecondsFrom(before); sl@0: sl@0: TInt heapSize = GetHeapSizeL(); sl@0: TInt serverHeapSize = GetServerHeapSizeL(); sl@0: sl@0: // Store details in file sl@0: TheTest.Printf(_L(" Count: %d, Time: %d, Hs: %d, Server Hs: %d\n"), count, I64INT(interval.Int64()), heapSize, serverHeapSize); sl@0: buf.Format(_L8("%d,%d,%d,%d\n"), count++, I64INT(interval.Int64()), heapSize, serverHeapSize); sl@0: aFile.Write(buf); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(4); // event, filter, view, active sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0990 sl@0: @SYMTestCaseDesc Tests for CLogViewRecent::SetRecentListL(),CLogViewRecent::DuplicatesL() functions sl@0: @SYMTestPriority High sl@0: @SYMTestActions Set the recent log view list and refresh for the duplicates view. sl@0: Check for ErrNone flag sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void DoTestRecentViewsL(CLogClient& aClient, TLogRecentList aList, TInt aRecentCount, TInt aDuplicateCount) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0990 ")); sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogViewRecent* recent = CLogViewRecent::NewL(aClient); sl@0: CleanupStack::PushL(recent); sl@0: sl@0: CLogViewDuplicate* duplicate = CLogViewDuplicate::NewL(aClient); sl@0: CleanupStack::PushL(duplicate); sl@0: sl@0: TEST(recent->SetRecentListL(aList, active->iStatus) || aRecentCount == 0); sl@0: do sl@0: { sl@0: if (aRecentCount == 0) sl@0: break; sl@0: sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TEST(recent->DuplicatesL(*duplicate, active->iStatus) || aDuplicateCount == 0); sl@0: do sl@0: { sl@0: if (aDuplicateCount == 0) sl@0: break; sl@0: sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: while(duplicate->NextL(active->iStatus)); sl@0: TEST(duplicate->CountL() == aDuplicateCount); sl@0: } sl@0: while(recent->NextL(active->iStatus)); sl@0: TEST(recent->CountL() == aRecentCount); sl@0: sl@0: CleanupStack::PopAndDestroy(3); // active, recent, duplicate sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0991 sl@0: @SYMTestCaseDesc Tests to clear the duplicates in a view sl@0: Tests CLogViewRecent::ClearDuplicatesL() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Set the recent log view list.Check for ErrNone flag. sl@0: Write the details to a file. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void DoTestClearDuplicateL(CLogClient& aClient, TLogRecentList aList, RFile& aFile) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0991 ")); sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogViewRecent* recent = CLogViewRecent::NewL(aClient); sl@0: CleanupStack::PushL(recent); sl@0: sl@0: TTime before; sl@0: before.UniversalTime(); sl@0: sl@0: recent->SetRecentListL(aList, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: recent->ClearDuplicatesL(); sl@0: sl@0: TTime after; sl@0: after.UniversalTime(); sl@0: TTimeIntervalMicroSeconds interval = after.MicroSecondsFrom(before); sl@0: sl@0: TBuf8<256> buf; sl@0: TheTest.Printf(_L("Clearing Duplicates for List %d, %d\n"), recent->RecentList(), I64INT(interval.Int64())); sl@0: buf.Format(_L8("Clearing Duplicates for List %d, %d\n"), recent->RecentList(), I64INT(interval.Int64())); sl@0: aFile.Write(buf); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // recent, active sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0992 sl@0: @SYMTestCaseDesc Recent lists view test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Add the events to the log and execute the test functions. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestRecentListsL(CLogClient& aClient, RFile& aFile) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0992 ")); sl@0: aFile.Write(_L8("Recent Lists\n")); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: TLogConfig config; sl@0: active->StartL(); sl@0: aClient.GetConfig(config, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: for(TInt duplicates = 0; duplicates < 10; duplicates++) sl@0: { sl@0: TTime before; sl@0: before.UniversalTime(); sl@0: sl@0: // Incoming sl@0: TLogString incoming; sl@0: aClient.GetString(incoming, R_LOG_DIR_IN); sl@0: event->SetDirection(incoming); sl@0: sl@0: TInt count; sl@0: for(count = 0; count < config.iMaxRecentLogSize; count++) sl@0: { sl@0: TLogString number; sl@0: number.Num(count); sl@0: event->SetNumber(number); sl@0: sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: sl@0: // Outgoing sl@0: TLogString outgoing; sl@0: aClient.GetString(outgoing, R_LOG_DIR_OUT); sl@0: event->SetDirection(outgoing); sl@0: sl@0: for(count = 0; count < config.iMaxRecentLogSize; count++) sl@0: { sl@0: TLogString number; sl@0: number.Num(count); sl@0: event->SetNumber(number); sl@0: sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: sl@0: // Missed sl@0: TLogString missed; sl@0: aClient.GetString(missed, R_LOG_DIR_MISSED); sl@0: event->SetDirection(missed); sl@0: sl@0: for(count = 0; count < config.iMaxRecentLogSize; count++) sl@0: { sl@0: TLogString number; sl@0: number.Num(count); sl@0: event->SetNumber(number); sl@0: sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: sl@0: TTime afterAdd; sl@0: afterAdd.UniversalTime(); sl@0: sl@0: DoTestRecentViewsL(aClient, KLogRecentIncomingCalls, config.iMaxRecentLogSize, duplicates); sl@0: DoTestRecentViewsL(aClient, KLogRecentOutgoingCalls, config.iMaxRecentLogSize, duplicates); sl@0: DoTestRecentViewsL(aClient, KLogRecentMissedCalls, config.iMaxRecentLogSize, duplicates); sl@0: sl@0: TTime afterNav; sl@0: afterNav.UniversalTime(); sl@0: sl@0: TTimeIntervalMicroSeconds interval1 = afterAdd.MicroSecondsFrom(before); sl@0: TTimeIntervalMicroSeconds interval2 = afterNav.MicroSecondsFrom(afterAdd); sl@0: sl@0: // Store details in file sl@0: TBuf8<256> buf; sl@0: TheTest.Printf(_L(" Count: %d, Add: %d, Nav: %d\n"), duplicates, I64INT(interval1.Int64()), I64INT(interval2.Int64())); sl@0: buf.Format(_L8("%d,%d,%d\n"), duplicates, I64INT(interval1.Int64()), I64INT(interval2.Int64())); sl@0: aFile.Write(buf); sl@0: } sl@0: sl@0: DoTestClearDuplicateL(aClient, KLogRecentIncomingCalls, aFile); sl@0: DoTestClearDuplicateL(aClient, KLogRecentOutgoingCalls, aFile); sl@0: DoTestClearDuplicateL(aClient, KLogRecentMissedCalls, aFile); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // active, event sl@0: } sl@0: sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_logbench")); sl@0: sl@0: CLogChangeNotifier* notifier = CLogChangeNotifier::NewL(); sl@0: CleanupStack::PushL(notifier); sl@0: sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: TLogConfig config; sl@0: client->GetConfig(config, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TheTest.Start(_L("Setup")); sl@0: TestSetupL(*client); sl@0: theLog.Write(_L8("Test 1 OK\n")); sl@0: sl@0: RFile results; sl@0: LEAVE_IF_ERROR(results.Replace(theFs, KResultFile, EFileWrite|EFileShareExclusive)); sl@0: sl@0: TheTest.Next(_L("Benchmark tests")); sl@0: BenchmarkTestL(*client, results); sl@0: theLog.Write(_L8("Test 2 OK\n")); sl@0: sl@0: TestUtils::DeleteDatabaseL(); sl@0: sl@0: TheTest.Next(_L("Recent List tests")); sl@0: TestRecentListsL(*client, results); sl@0: theLog.Write(_L8("Test 3 OK\n")); sl@0: sl@0: // Restore Config sl@0: client->ChangeConfig(config, active->iStatus); sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: results.Close(); sl@0: CleanupStack::PopAndDestroy(3); // active, notifier, client; sl@0: } sl@0: