sl@0: // Copyright (c) 2005-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: // test code for INC041118 - Numberfield in logdatabase/engine is too small sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "t_logutil2.h" sl@0: sl@0: RTest TheTest(_L("t_logmaxnumlen")); sl@0: sl@0: _LIT(KTestEventDesc1, "Event Type Description"); sl@0: _LIT(KTestRemoteParty1, "Remote Party"); sl@0: _LIT(KTestDirection1, "Direction"); sl@0: _LIT(KTestStatus1, "Status"); sl@0: _LIT(KTestSubject1, "Subject"); sl@0: sl@0: sl@0: // These values are stored in "oldLogdb.dat" sl@0: _LIT(KTestEvent0, "00000"); sl@0: _LIT(KTestEvent1, "11111"); sl@0: _LIT(KTestEvent2, "22222"); sl@0: sl@0: const TUid KTestEventUid = {0x10005393}; sl@0: const TLogDurationType KTestDurationType1 = 1; sl@0: const TLogDuration KTestDuration1 = 0x1234; sl@0: const TLogContactItemId KTestContact1 = 0x1234; sl@0: const TLogLink KTestLink1 = 0x1234; sl@0: _LIT8(KTestData1, "ABCDEFGH"); sl@0: const TLogFlags KTestFlags1 = 0x5; sl@0: sl@0: sl@0: // with this value the test will ONLY pass with the new database sl@0: _LIT(KTestNumberMax, sl@0: "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"); sl@0: sl@0: // This test needs a number > 32 to check that database has been converted sl@0: _LIT(KTestNumber50, "01234567890123456789012345678901234567890123456789"); sl@0: _LIT(KTestNumberMin, "0"); sl@0: sl@0: // this coresponds to an event already stored in oldLogDb.dat sl@0: const TInt KoldId = 3; sl@0: _LIT(KTestOldDbNumber, "012345678901234567"); sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1336 sl@0: @SYMTestCaseDesc Tests for adding events to the log engine database sl@0: @SYMTestPriority High sl@0: @SYMTestActions Check for event ID assigned by log engine sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: TInt TestAddEventL(CLogClient& aClient, const TDesC &aNumber) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1336 ")); sl@0: TInt returnId = KLogNullId; sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: // create a new event sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: // Reset sl@0: TTime now; sl@0: now.UniversalTime(); sl@0: sl@0: // load the event with test values sl@0: event->SetEventType(KTestEventUid); sl@0: event->SetRemoteParty(KTestRemoteParty1); sl@0: event->SetDirection(KTestDirection1); sl@0: event->SetDurationType(KTestDurationType1); sl@0: event->SetDuration(KTestDuration1); sl@0: event->SetStatus(KTestStatus1); sl@0: event->SetSubject(KTestSubject1); sl@0: event->SetNumber(aNumber); sl@0: event->SetContact(KTestContact1); sl@0: event->SetLink(KTestLink1); sl@0: event->SetDataL(KTestData1); sl@0: event->SetFlags(KTestFlags1); sl@0: sl@0: // add the event to the logeng database sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: sl@0: CActiveScheduler::Start(); sl@0: TEST(!active->IsActive()); sl@0: aClient.Cancel(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // check that an ID has been assigned sl@0: returnId = event->Id(); sl@0: TEST(returnId != KLogNullId); sl@0: sl@0: TEST(event->Time() >= now); sl@0: TEST(event->Description() == KTestEventDesc1); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // event, active sl@0: sl@0: // return the event id which has been assigned by the sl@0: // log engine sl@0: return returnId; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1337 sl@0: @SYMTestCaseDesc Tests for getting the event from the log engine database sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for CLogClient::GetEvent() function sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestGetEventL(CLogClient& aClient, TInt aTheId, const TDesC& aNumber) sl@0: sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1337 ")); 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: // set the id of the event to be fetched sl@0: event->SetId(aTheId); sl@0: sl@0: active->StartL(); sl@0: aClient.GetEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: aClient.Cancel(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TEST(event->Id() == aTheId); sl@0: TEST(event->Time() > TTime(0)); sl@0: TEST(event->Description() == KTestEventDesc1); sl@0: TEST(event->EventType() == KTestEventUid); sl@0: TEST(event->RemoteParty() == KTestRemoteParty1); sl@0: TEST(event->Direction() == KTestDirection1); sl@0: TEST(event->DurationType() == KTestDurationType1); sl@0: TEST(event->Duration() == KTestDuration1); sl@0: TEST(event->Status() == KTestStatus1); sl@0: TEST(event->Subject() == KTestSubject1); sl@0: TEST(event->Contact() == KTestContact1); sl@0: TEST(event->Link() == KTestLink1); sl@0: TEST(event->Data() == KTestData1); sl@0: TEST(event->Flags() == KTestFlags1); sl@0: sl@0: // this is the important test sl@0: // check the number has not been truncated sl@0: TEST(event->Number() == aNumber); sl@0: sl@0: TPtrC eventStatus = event->Subject(); sl@0: TPtrC eventNumber = event->Number(); sl@0: TheTest.Printf(_L("Id:%d No:%S Sub:%S Con:0x%x \n"), sl@0: event->Id(), &eventNumber, &eventStatus, event->Contact()); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // event, active sl@0: } sl@0: sl@0: sl@0: /** sl@0: Test code for INC041118 - Numberfield in logdatabase/engine is too small sl@0: This is the main part of the test sl@0: sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1019 sl@0: @SYMTestCaseDesc Tests for number field in logdatabase/engine is too small sl@0: @SYMTestPriority High sl@0: @SYMTestActions Add an event to the log engine database.When the database is opened it should be sl@0: converted to new format.Check by reading the event and checking the number length sl@0: Check with maximum and minimum number field sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestStartupL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1019 ")); sl@0: TestUtils::CopyOldDbL(); sl@0: sl@0: // add an event to the log engine database. sl@0: // When the database is opened it should be checked for the old numberfield length sl@0: // and converted to the new format if required. (It will be required, as old db has been copied) sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: User::After(1000000); sl@0: TheTest.Next(_L("check database conversion")); sl@0: TInt eventId = TestAddEventL(*client, KTestNumber50 ); sl@0: sl@0: // check that the database has been converted to the new format sl@0: // by reading back an event the checking that number is the sl@0: // correct length sl@0: TestGetEventL(*client, eventId, KTestNumber50); sl@0: sl@0: // check using Max sl@0: TheTest.Next(_L("check a maxium length number")); sl@0: eventId = TestAddEventL(*client, KTestNumberMax ); sl@0: TestGetEventL(*client, eventId, KTestNumberMax); sl@0: sl@0: // check using Min sl@0: TheTest.Next(_L("check a mimium length number")); sl@0: eventId = TestAddEventL(*client, KTestNumberMin ); sl@0: TestGetEventL(*client, eventId, KTestNumberMin); sl@0: sl@0: // When OldLogdbu.dat was created, using TestBuildTestDbL() below, sl@0: // 4 events were stored. Check that these can still be accessed. sl@0: // Note: There was a problem here with old events being purged after 30 days sl@0: // This was fixed by setting TLogConfig::iMaxEventAge = 0 in OldLogdb.dat sl@0: TheTest.Next(_L("check all events in the old database")); sl@0: TestGetEventL(*client, 0, KTestEvent0); sl@0: TestGetEventL(*client, 1, KTestEvent1); sl@0: TestGetEventL(*client, 2, KTestEvent2); sl@0: TestGetEventL(*client, KoldId, KTestOldDbNumber); sl@0: sl@0: CleanupStack::PopAndDestroy(); // client sl@0: } sl@0: sl@0: // Test code for INC041118 - Numberfield in logdatabase/engine is too small sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_logmaxnumlen")); sl@0: #ifdef _DEBUG sl@0: TheTest.Start(_L("T_MaxNumberLength Set/Check Phone Number Maximum Length")); sl@0: sl@0: TestStartupL(); sl@0: theLog.Write(_L8("Test T_MAXNUMBERLENGTH OK\n")); sl@0: #else sl@0: TheTest.Start(_L("This test works only in debug mode, otherwise the LogEng server cannot be stopped. See TestUtils::CopyOldDbL()")); sl@0: #endif//_DEBUG sl@0: }