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: #include sl@0: #include sl@0: #include "t_logutil2.h" sl@0: sl@0: RTest TheTest(_L("t_logwrap")); sl@0: sl@0: _LIT(KTestRemoteParty, "Remote Party"); sl@0: _LIT(KTestDirection, "Direction"); sl@0: const TLogDurationType KTestDurationType = 1; sl@0: const TLogDuration KTestDuration = 0x1234; sl@0: _LIT(KTestStatus, "Status"); sl@0: _LIT(KTestSubject, "Subject"); sl@0: _LIT(KTestNumber, "Number"); sl@0: const TLogContactItemId KTestContact = 0x1234; sl@0: const TLogLink KTestLink = 0x1234; sl@0: _LIT8(KTestData, "ABCDEFGH"); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1011 sl@0: @SYMTestCaseDesc Tests for the functionality of CLogEvent class sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for adding,changing,deleting and getting event type functions on the logevent sl@0: Check for memory,KErrNone and KErrNotSupported error flags sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestBasicL(CLogBase& aClient, TBool aClientAvailable) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1011 ")); sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: TTime now; sl@0: now.UniversalTime(); sl@0: sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: if(aClientAvailable) sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNotSupported); sl@0: } sl@0: sl@0: if (aClientAvailable) sl@0: { sl@0: TEST(event->EventType() == KLogCallEventTypeUid); sl@0: TEST(event->Description().Length() > 0); sl@0: TEST(event->Time() >= now); sl@0: now = event->Time(); sl@0: } sl@0: sl@0: TLogId id = event->Id(); sl@0: sl@0: event->SetRemoteParty(KTestRemoteParty); sl@0: event->SetDirection(KTestDirection); sl@0: event->SetDurationType(KTestDurationType); sl@0: event->SetDuration(KTestDuration); sl@0: event->SetStatus(KTestStatus); sl@0: event->SetSubject(KTestSubject); sl@0: event->SetNumber(KTestNumber); sl@0: event->SetContact(KTestContact); sl@0: event->SetLink(KTestLink); sl@0: event->SetDataL(KTestData); sl@0: sl@0: active->StartL(); sl@0: aClient.ChangeEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: if(aClientAvailable) sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNotSupported); sl@0: } sl@0: sl@0: if (aClientAvailable) sl@0: { sl@0: TEST(event->Id() == id); sl@0: TEST(event->EventType() == KLogCallEventTypeUid); sl@0: TEST(event->Description().Length() > 0); sl@0: TEST(event->Time() == now); sl@0: TEST(event->RemoteParty() == KTestRemoteParty); sl@0: TEST(event->Direction() == KTestDirection); sl@0: TEST(event->DurationType() == KTestDurationType); sl@0: TEST(event->Duration() == KTestDuration); sl@0: TEST(event->Status() == KTestStatus); sl@0: TEST(event->Subject() == KTestSubject); sl@0: TEST(event->Number() == KTestNumber); sl@0: TEST(event->Contact() == KTestContact); sl@0: TEST(event->Link() == KTestLink); sl@0: TEST(event->Data() == KTestData); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(); // event; sl@0: sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: event->SetId(id); sl@0: sl@0: active->StartL(); sl@0: aClient.GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: if(aClientAvailable) sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNotSupported); sl@0: } sl@0: sl@0: if (aClientAvailable) sl@0: { sl@0: TEST(event->Id() == id); sl@0: TEST(event->EventType() == KLogCallEventTypeUid); sl@0: TEST(event->Description().Length() > 0); sl@0: TEST(event->Time() == now); sl@0: TEST(event->RemoteParty() == KTestRemoteParty); sl@0: TEST(event->Direction() == KTestDirection); sl@0: TEST(event->DurationType() == KTestDurationType); sl@0: TEST(event->Duration() == KTestDuration); sl@0: TEST(event->Status() == KTestStatus); sl@0: TEST(event->Subject() == KTestSubject); sl@0: TEST(event->Number() == KTestNumber); sl@0: TEST(event->Contact() == KTestContact); sl@0: TEST(event->Link() == KTestLink); sl@0: TEST(event->Data() == KTestData); sl@0: } sl@0: sl@0: active->StartL(); sl@0: aClient.DeleteEvent(id, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: if(aClientAvailable) sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNotSupported); sl@0: } sl@0: sl@0: active->StartL(); sl@0: aClient.GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: if(aClientAvailable) sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active->iStatus.Int(), KErrNotSupported); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(2); // event, active sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1012 sl@0: @SYMTestCaseDesc Test for CLogWrapper::Log(),CLogWrapper::ClientAvailable() functions sl@0: @SYMTestPriority High sl@0: @SYMTestActions Execute basics event test on a log wrapper sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestWrapperL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1012 ")); sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogWrapper* wrapper = CLogWrapper::NewL(theFs); sl@0: CleanupStack::PushL(wrapper); sl@0: sl@0: CLogBase& logBase = wrapper->Log(); sl@0: TestBasicL(logBase, wrapper->ClientAvailable()); sl@0: sl@0: TBuf buf; sl@0: if (wrapper->ClientAvailable()) sl@0: { sl@0: CLogBase& logBase2 = wrapper->Log(); sl@0: TEST2(logBase2.GetString(buf, R_LOG_DIR_IN), KErrNone); sl@0: TEST(buf.Length() > 0); sl@0: } sl@0: else sl@0: { sl@0: CLogBase& logBase3 = wrapper->Log(); sl@0: TEST2(logBase3.GetString(buf, R_LOG_DIR_IN), KErrNotSupported); sl@0: TEST(buf.Length() == 0); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(2); // wrapper, active sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1013 sl@0: @SYMTestCaseDesc Tests for out of memory errors on CLogWrapper::NewL() function call sl@0: @SYMTestPriority High sl@0: @SYMTestActions Check for no memory error condition sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestHeapFailL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1013 ")); sl@0: CLogWrapper* wrapper = NULL; sl@0: sl@0: #ifdef _DEBUG sl@0: TInt failCount = 0; sl@0: #endif sl@0: sl@0: TBool finished = EFalse; sl@0: TInt error; sl@0: sl@0: while(!finished) sl@0: { sl@0: __UHEAP_FAILNEXT(failCount++); sl@0: sl@0: TRAP(error, wrapper = CLogWrapper::NewL(theFs)); sl@0: sl@0: __UHEAP_RESET; sl@0: sl@0: if (error == KErrNone) sl@0: { sl@0: finished = ETrue; sl@0: CLogBase& logBase = wrapper->Log(); sl@0: TestBasicL(logBase, wrapper->ClientAvailable()); sl@0: delete wrapper; sl@0: } sl@0: else sl@0: TEST2(error, KErrNoMemory); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1014 sl@0: @SYMTestCaseDesc Tests for CLogWrapper::NewL() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Create log wrapper on heap,if no error execute the basic event tests. sl@0: Check for general errors. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestFileFailL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1014 ")); sl@0: CLogWrapper* wrapper = NULL; sl@0: sl@0: TInt failCount = 0; sl@0: TBool finished = EFalse; sl@0: TInt error; sl@0: sl@0: while(!finished) sl@0: { sl@0: TheTest.Printf(_L("%d \r"), failCount); sl@0: __FILE_FAILNEXT(KErrNoMemory, failCount++); sl@0: sl@0: TRAP(error, wrapper = CLogWrapper::NewL(theFs)); sl@0: sl@0: __FILE_RESET; sl@0: sl@0: if (error == KErrNone) sl@0: { sl@0: finished = ETrue; sl@0: CLogBase& logBase = wrapper->Log(); sl@0: TestBasicL(logBase, wrapper->ClientAvailable()); sl@0: delete wrapper; sl@0: } sl@0: else sl@0: { sl@0: TEST2(error, KErrNoMemory); sl@0: } sl@0: } sl@0: TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1015 sl@0: @SYMTestCaseDesc Tests for INC047632 sl@0: @SYMTestPriority High sl@0: @SYMTestActions This test uses a stored copy of a corrupt database which is copied to z:\system\data. sl@0: When this database ia accessed open returns an error KErrEof. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void Test4INC047632L() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1015 ")); sl@0: #ifdef _DEBUG sl@0: TestUtils::CopyCorruptDbL(); sl@0: sl@0: // run basic test sl@0: CLogWrapper* wrapper = NULL; sl@0: sl@0: TInt error = KErrNone; sl@0: TRAP(error, wrapper = CLogWrapper::NewL(theFs)); sl@0: sl@0: if (error == KErrNone) sl@0: { sl@0: CLogBase& logBase = wrapper->Log(); sl@0: TestBasicL(logBase, wrapper->ClientAvailable()); sl@0: delete wrapper; sl@0: } sl@0: #else sl@0: RDebug::Print(_L("Test4INC047632L() can be executed only in debug mode. In release mode the LogEng server cannot be stopped.\n")); sl@0: #endif//_DEBUG sl@0: } sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-4001 sl@0: @SYMTestCaseDesc Tests for INC114909 sl@0: @SYMTestPriority High sl@0: @SYMTestActions This test uses a stored copy of a corrupt damaged database which is sl@0: copied to z:\system\data. sl@0: When an attempt is made to open the database the fault should be sl@0: recognised and the database deleted. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF INC114909 sl@0: */ sl@0: LOCAL_C void Test5INC114909L() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-4001 ")); sl@0: #ifdef _DEBUG sl@0: // Copy over the damaged database to be used. sl@0: TestUtils::CopyCorruptDamagedDbL(); sl@0: sl@0: // run basic test sl@0: CLogWrapper* wrapper = NULL; sl@0: TInt error = KErrNone; sl@0: TRAP(error, wrapper = CLogWrapper::NewL(theFs)); sl@0: delete wrapper; sl@0: sl@0: // Without the code for this defect the error here will be KErrCorrupt. sl@0: // and the log server will continually try to restart and be brought down sl@0: // with KErrCorrupt sl@0: // With the fix the error with the database is detected on opening the database sl@0: // and the database file is deleted and re-created. sl@0: sl@0: TEST(error == KErrNone); sl@0: sl@0: // Perform an extra check that the log server has not been brought down sl@0: // as is the case without the defect fix. sl@0: RLogTestSession theLogServ; sl@0: error = theLogServ.Connect(); sl@0: TEST(error == KErrNone); sl@0: #else sl@0: RDebug::Print(_L("Test4INC047632L() can be executed only in debug mode. In release mode the LogEng server cannot be stopped.\n")); sl@0: #endif//_DEBUG sl@0: } sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_logwrap")); sl@0: sl@0: TheTest.Start(_L("Wrapper")); sl@0: TestWrapperL(); sl@0: theLog.Write(_L8("Test 1 OK\n")); sl@0: sl@0: TheTest.Next(_L("Heap Failure")); sl@0: TestHeapFailL(); sl@0: theLog.Write(_L8("Test 2 OK\n")); sl@0: sl@0: TheTest.Next(_L("File Failure")); sl@0: TestFileFailL(); sl@0: theLog.Write(_L8("Test 3 OK\n")); sl@0: sl@0: TheTest.Next(_L("Test4 for INC047632 - corrupt Logdbu.dat returns KErrEoF")); sl@0: Test4INC047632L(); sl@0: theLog.Write(_L8("Test 4 for INC047632 OK\n")); sl@0: sl@0: TheTest.Next(_L("Test5 for INC114909 - test damaged Logdbu.dat is dealt with correctly ")); sl@0: Test5INC114909L(); sl@0: theLog.Write(_L8("Test 5 for INC114909 OK\n")); sl@0: }