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 "t_logutil2.h" sl@0: #include sl@0: sl@0: RTest TheTest(_L("t_lognotify")); sl@0: sl@0: _LIT(KTestRemoteParty1, "Remote Party"); sl@0: _LIT(KTestDirection1, "Direction"); sl@0: const TLogDurationType KTestDurationType1 = 1; sl@0: const TLogDuration KTestDuration1 = 0x1234; sl@0: _LIT(KTestStatus1, "Status"); sl@0: _LIT(KTestSubject1, "Subject"); sl@0: _LIT(KTestNumber1, "TheNumber"); 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: @SYMTestCaseID SYSLIB-LOGENG-CT-0926 sl@0: @SYMTestCaseDesc Tests for CLogClient::NotifyChange() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for notification of changes to the logengine database. sl@0: Add events within the time intervals ,check for the notification of an event sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestNotificationL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0926 ")); sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active1 = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(active1); sl@0: sl@0: CTestActive* active2 = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(active2); sl@0: sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: event->SetEventType(KLogCallEventTypeUid); 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(KTestNumber1); sl@0: event->SetContact(KTestContact1); sl@0: event->SetLink(KTestLink1); sl@0: event->SetDataL(KTestData1); sl@0: event->SetFlags(KTestFlags1); sl@0: sl@0: // *** Notification when change made - no delay sl@0: active1->StartL(); sl@0: client->NotifyChange(0, active1->iStatus); sl@0: sl@0: // Add an event sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: sl@0: // Not sure which will finish first sl@0: CActiveScheduler::Start(); sl@0: if (!active1->IsActive()) sl@0: { sl@0: TEST(active2->IsActive()); sl@0: TEST(active1->iStatus.Int() >= 0); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->iStatus.Int() >= 0); sl@0: } sl@0: sl@0: // Remember the time sl@0: TTime before; sl@0: before.UniversalTime(); sl@0: sl@0: const TTimeIntervalMicroSeconds32 delay = 3000000; sl@0: sl@0: // *** Notification when change made - with long delay sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: // Add an event sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: sl@0: // We can be fairly certain that the function will complete first sl@0: CActiveScheduler::Start(); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: TEST(active1->IsActive()); sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->iStatus.Int() >= 0); sl@0: sl@0: User::After(1000000); sl@0: sl@0: // Check delay sl@0: TTime after; sl@0: after.UniversalTime(); sl@0: TEST(before + delay <= after); sl@0: sl@0: before.UniversalTime(); sl@0: sl@0: // *** Notification when change made - with long delay - multiple changes sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: // Add an event sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: sl@0: // The function should complete sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->IsActive()); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: sl@0: // Change the event sl@0: active2->StartL(); sl@0: client->ChangeEvent(*event, active2->iStatus); sl@0: sl@0: // The function should complete sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->IsActive()); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: sl@0: // The notification should complete sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->iStatus.Int() >= 0); sl@0: sl@0: #ifdef __WINS__ sl@0: User::After(1000000); sl@0: #endif sl@0: sl@0: // Check delay sl@0: after.UniversalTime(); sl@0: TEST(before + TTimeIntervalMicroSeconds32(delay) <= after); sl@0: sl@0: // *** Notification when change made - after long delay sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: // Wait around for a time equal to the delay sl@0: CTestTimer* timer = CTestTimer::NewL(); sl@0: timer->After(delay); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: // Add an event sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: sl@0: // Not sure which will finish first sl@0: CActiveScheduler::Start(); sl@0: if (!active1->IsActive()) sl@0: { sl@0: TEST(active2->IsActive()); sl@0: TEST(active1->iStatus.Int() >= 0); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: } sl@0: else sl@0: { sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->iStatus.Int() >= 0); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(4); // event, active2, active1, client sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0927 sl@0: @SYMTestCaseDesc Tests for CLogClient::NotifyChangeCancel() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for cancelling of any outstanding notification requests for changes to log engine database sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestCancelNotificationL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0927 ")); sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CTestActive* active1 = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(active1); sl@0: sl@0: // *** Cancel without delay sl@0: active1->StartL(); sl@0: client->NotifyChange(0, active1->iStatus); sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active1->iStatus.Int(), KErrCancel); sl@0: sl@0: const TInt delay = 3000000; sl@0: sl@0: // *** Cancel with delay sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: // Wait around for a bit sl@0: CTestTimer* timer = CTestTimer::NewL(); sl@0: timer->After(delay / 2); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active1->iStatus.Int(), KErrCancel); sl@0: sl@0: // *** Cancel with long delay sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: // Wait around for a bit sl@0: timer = CTestTimer::NewL(); sl@0: timer->After(delay * 2); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active1->iStatus.Int(), KErrCancel); sl@0: sl@0: // *** Cancel after change sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: CTestActive* active2 = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(active2); sl@0: sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->IsActive()); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active1->iStatus.Int(), KErrCancel); sl@0: sl@0: // *** Cancel after change and delay sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: // Wait around for a bit sl@0: timer = CTestTimer::NewL(); sl@0: timer->After(delay / 2); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->IsActive()); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active1->iStatus.Int(), KErrCancel); sl@0: sl@0: // *** Cancel after change and delay sl@0: active1->StartL(); sl@0: client->NotifyChange(delay, active1->iStatus); sl@0: sl@0: active2->StartL(); sl@0: client->AddEvent(*event, active2->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(active1->IsActive()); sl@0: TEST2(active2->iStatus.Int(), KErrNone); sl@0: sl@0: // Wait around for a bit sl@0: timer = CTestTimer::NewL(); sl@0: timer->After(delay / 2); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active1->iStatus.Int(), KErrCancel); sl@0: sl@0: // *** Cancel when not active sl@0: client->NotifyChangeCancel(); sl@0: sl@0: CleanupStack::PopAndDestroy(4); // active2, event, active, client sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0928 sl@0: @SYMTestCaseDesc Tests for notification requests on view purge sl@0: @SYMTestPriority High sl@0: @SYMTestActions Notify changes on log view event sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestViewPurgeNotifyL() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0928 ")); sl@0: CTestTimer* timer = CTestTimer::NewL(); sl@0: CleanupStack::PushL(timer); sl@0: sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: CLogViewEvent* view = CLogViewEvent::NewL(*client); sl@0: CleanupStack::PushL(view); sl@0: sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: sl@0: CTestActive* notify = new(ELeave)CTestActive; sl@0: CleanupStack::PushL(notify); sl@0: sl@0: // Start notifier sl@0: notify->StartL(); sl@0: client->NotifyChange(1000000, notify->iStatus); sl@0: sl@0: // Wait for 10 seconds sl@0: TEST(notify->IsActive()); sl@0: timer = CTestTimer::NewL(); sl@0: timer->After(7000000); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: // Setup a view sl@0: TEST(notify->IsActive()); sl@0: if (view->SetFilterL(*filter, active->iStatus)) sl@0: { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST(view->CountL() > 0); sl@0: } sl@0: sl@0: // Wait for 10 seconds sl@0: TEST(notify->IsActive()); sl@0: timer = CTestTimer::NewL(); sl@0: timer->After(10000000); sl@0: CActiveScheduler::Start(); sl@0: delete timer; sl@0: sl@0: // We shouldn't be notified because nothing has changed sl@0: TEST(notify->IsActive()); sl@0: client->NotifyChangeCancel(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(notify->iStatus.Int(), KErrCancel); sl@0: sl@0: CleanupStack::PopAndDestroy(6); // notify, client, filter, view, active, timer sl@0: } sl@0: sl@0: /** sl@0: INC045485 - AV20 Messaging App crashes when attempting to write New SMS sl@0: sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-0929 sl@0: @SYMTestCaseDesc Tests for defect number INC045485L. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests by adding a fax event type sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void INC045485L() sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0929 ")); sl@0: const TInt KEventCnt = 5;//test events count sl@0: const TInt KSizeOfEventData = 400;//should be bigger than KLogSizeOfEventGuess constant sl@0: //Create client, active, event sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: CTestActive* active = new (ELeave) CTestActive; sl@0: CleanupStack::PushL(active); sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: //Add KEventCnt events sl@0: for(TInt i=0;iSetId(0x13579 + i); sl@0: event->SetEventType(KLogFaxEventTypeUid); sl@0: TUint8 buf[KSizeOfEventData]; sl@0: Mem::Fill(buf, KSizeOfEventData, TChar('1' + i)); sl@0: TPtr8 ptr(buf, KSizeOfEventData, KSizeOfEventData); sl@0: event->SetDataL(ptr); sl@0: // sl@0: active->StartL(); sl@0: client->AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(!active->IsActive()); sl@0: client->Cancel(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: } sl@0: //Create LogViewEvent, CLogFilter sl@0: CLogViewEvent* view = CLogViewEvent::NewL(*client); sl@0: CleanupStack::PushL(view); sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: filter->SetEventType(KLogFaxEventTypeUid);//the same as the type UID of added events sl@0: //Filter the events sl@0: if(view->SetFilterL(*filter, active->iStatus)) sl@0: { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST(view->CountL() == KEventCnt); sl@0: } sl@0: //Visit the events sl@0: TInt j = 0; sl@0: TEST(view->FirstL(active->iStatus)); sl@0: do sl@0: { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone);//If the defect is not fixed this check fails with "KErrOverflow" sl@0: const CLogEvent& e = view->Event(); sl@0: TheTest.Printf(_L("View Entry[%d]: Id:%d, Type:%x\n"), j, e.Id(), e.EventType().iUid); sl@0: const TDesC8& data = e.Data(); sl@0: TEST(data.Length() == KSizeOfEventData); sl@0: //Touch the data. sl@0: for(TInt k=0;k= TChar('1') && c < TChar('1' + KEventCnt)); sl@0: } sl@0: ++j; sl@0: } sl@0: while(view->NextL(active->iStatus)); sl@0: //Destroy filter, view, event, active, client sl@0: CleanupStack::PopAndDestroy(filter); sl@0: CleanupStack::PopAndDestroy(view); sl@0: CleanupStack::PopAndDestroy(event); sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: //DEF060381 Propagated: Receiving Chinese SMSes causes the battery to drain too fast sl@0: static void DEF060381L() sl@0: { sl@0: const TInt KSizeOfEventData = 1025; //should be bigger than KLogSizeOfEventGuess constant sl@0: sl@0: //Create two clients. The first one will be used to send one message to the server, sl@0: //which length is too big. The second client will be used to receive the message from sl@0: //the server. sl@0: //If the defect is not fixed, the function hangs and its return point is never reached. sl@0: CLogClient* client1 = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client1); sl@0: sl@0: CLogClient* client2 = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client2); sl@0: sl@0: CTestActive* active = new (ELeave) CTestActive; sl@0: CleanupStack::PushL(active); sl@0: sl@0: //Create one SMS event, which holds a block of data with size bigger than the default sl@0: //size of the client side buffer (KLogSizeOfEventGuess). sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: sl@0: event->SetId(0x9991118); sl@0: event->SetEventType(KLogShortMessageEventTypeUid); sl@0: TUint8 buf[KSizeOfEventData]; sl@0: for(TInt i=0;i (i % 256); sl@0: } sl@0: TPtr8 ptr(buf, KSizeOfEventData, KSizeOfEventData); sl@0: event->SetDataL(ptr); sl@0: sl@0: //Send the created event to the server unsing the first client. sl@0: active->StartL(); sl@0: client1->AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST(!active->IsActive()); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: //Create a view using the second client. sl@0: //Create a filter for SMS messages. sl@0: CLogViewEvent* view = CLogViewEvent::NewL(*client2); sl@0: CleanupStack::PushL(view); sl@0: CLogFilter* filter = CLogFilter::NewL(); sl@0: CleanupStack::PushL(filter); sl@0: filter->SetEventType(KLogShortMessageEventTypeUid);//the same as the type UID of added events sl@0: //Filter the events sl@0: if(view->SetFilterL(*filter, active->iStatus)) sl@0: { sl@0: active->StartL(); sl@0: CActiveScheduler::Start();//Here the test fucntion hangs and never returns, if the defect is not fixed. sl@0: TEST(view->CountL() == 1); sl@0: } sl@0: //Visit the events sl@0: TInt j = 0; sl@0: TEST(view->FirstL(active->iStatus)); sl@0: do sl@0: { sl@0: active->StartL(); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: const CLogEvent& e = view->Event(); sl@0: TheTest.Printf(_L("View Entry[%d]: Id:%d, Type:%x\n"), j, e.Id(), e.EventType().iUid); sl@0: const TDesC8& data = e.Data(); sl@0: TEST(data.Length() == KSizeOfEventData); sl@0: //Touch the data. sl@0: for(TInt k=0;k (k % 256)); sl@0: } sl@0: ++j; sl@0: } sl@0: while(view->NextL(active->iStatus)); sl@0: sl@0: CleanupStack::PopAndDestroy(filter); sl@0: CleanupStack::PopAndDestroy(view); sl@0: CleanupStack::PopAndDestroy(event); sl@0: CleanupStack::PopAndDestroy(active); sl@0: CleanupStack::PopAndDestroy(client2); sl@0: CleanupStack::PopAndDestroy(client1); sl@0: } sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_lognotify")); sl@0: TestUtils::DeleteDatabaseL(); sl@0: sl@0: TheTest.Start(_L("Notifications")); sl@0: TestNotificationL(); sl@0: theLog.Write(_L8("Test 1 OK\n")); sl@0: sl@0: TheTest.Next(_L("INC045485")); sl@0: ::INC045485L(); sl@0: sl@0: TheTest.Next(_L("Cancelling Notifications")); sl@0: TestCancelNotificationL(); sl@0: theLog.Write(_L8("Test 2 OK\n")); sl@0: sl@0: TheTest.Next(_L("Notify with View Purge")); sl@0: TestViewPurgeNotifyL(); sl@0: theLog.Write(_L8("Test 3 OK\n")); sl@0: sl@0: TheTest.Next(_L("DEF060381")); sl@0: ::DEF060381L(); sl@0: }