os/persistentdata/loggingservices/eventlogger/test/src/t_lognotify.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_lognotify.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,564 @@
     1.4 +// Copyright (c) 2002-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "t_logutil2.h"
    1.20 +#include <logview.h>
    1.21 +
    1.22 +RTest TheTest(_L("t_lognotify"));
    1.23 +
    1.24 +_LIT(KTestRemoteParty1, "Remote Party");
    1.25 +_LIT(KTestDirection1, "Direction");
    1.26 +const TLogDurationType KTestDurationType1 = 1;
    1.27 +const TLogDuration KTestDuration1 = 0x1234;
    1.28 +_LIT(KTestStatus1, "Status");
    1.29 +_LIT(KTestSubject1, "Subject");
    1.30 +_LIT(KTestNumber1, "TheNumber");
    1.31 +const TLogContactItemId KTestContact1 = 0x1234;
    1.32 +const TLogLink KTestLink1 = 0x1234;
    1.33 +_LIT8(KTestData1, "ABCDEFGH");
    1.34 +const TLogFlags KTestFlags1 = 0x5;
    1.35 +
    1.36 +/**
    1.37 +@SYMTestCaseID          SYSLIB-LOGENG-CT-0926
    1.38 +@SYMTestCaseDesc	    Tests for CLogClient::NotifyChange() function
    1.39 +@SYMTestPriority 	    High
    1.40 +@SYMTestActions  	    Tests for notification of changes to the logengine database.
    1.41 +                        Add events within the time intervals ,check for the notification of an event
    1.42 +@SYMTestExpectedResults Test must not fail
    1.43 +@SYMREQ                 REQ0000
    1.44 +*/
    1.45 +LOCAL_C void TestNotificationL()
    1.46 +	{
    1.47 +	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0926 "));
    1.48 +	CLogClient* client = CLogClient::NewL(theFs);
    1.49 +	CleanupStack::PushL(client);
    1.50 +
    1.51 +	CTestActive* active1 = new(ELeave)CTestActive;
    1.52 +	CleanupStack::PushL(active1);
    1.53 +
    1.54 +	CTestActive* active2 = new(ELeave)CTestActive;
    1.55 +	CleanupStack::PushL(active2);
    1.56 +
    1.57 +	CLogEvent* event = CLogEvent::NewL();
    1.58 +	CleanupStack::PushL(event);
    1.59 +
    1.60 +	event->SetEventType(KLogCallEventTypeUid);
    1.61 +	event->SetRemoteParty(KTestRemoteParty1);
    1.62 +	event->SetDirection(KTestDirection1);
    1.63 +	event->SetDurationType(KTestDurationType1);
    1.64 +	event->SetDuration(KTestDuration1);
    1.65 +	event->SetStatus(KTestStatus1);
    1.66 +	event->SetSubject(KTestSubject1);
    1.67 +	event->SetNumber(KTestNumber1);
    1.68 +	event->SetContact(KTestContact1);
    1.69 +	event->SetLink(KTestLink1);
    1.70 +	event->SetDataL(KTestData1);
    1.71 +	event->SetFlags(KTestFlags1);
    1.72 +
    1.73 +	// *** Notification when change made - no delay
    1.74 +	active1->StartL();
    1.75 +	client->NotifyChange(0, active1->iStatus);
    1.76 +
    1.77 +	// Add an event
    1.78 +	active2->StartL();
    1.79 +	client->AddEvent(*event, active2->iStatus);
    1.80 +	
    1.81 +	// Not sure which will finish first
    1.82 +	CActiveScheduler::Start();
    1.83 +	if (!active1->IsActive())
    1.84 +		{
    1.85 +		TEST(active2->IsActive());
    1.86 +		TEST(active1->iStatus.Int() >= 0);
    1.87 +		CActiveScheduler::Start();
    1.88 +		TEST2(active2->iStatus.Int(), KErrNone);
    1.89 +		}
    1.90 +	else
    1.91 +		{
    1.92 +		TEST2(active2->iStatus.Int(), KErrNone);
    1.93 +		CActiveScheduler::Start();
    1.94 +		TEST(active1->iStatus.Int() >= 0);
    1.95 +		}
    1.96 +
    1.97 +	// Remember the time
    1.98 +	TTime before;
    1.99 +	before.UniversalTime();
   1.100 +
   1.101 +	const TTimeIntervalMicroSeconds32 delay = 3000000;
   1.102 +
   1.103 +	// *** Notification when change made - with long delay
   1.104 +	active1->StartL();
   1.105 +	client->NotifyChange(delay, active1->iStatus);
   1.106 +
   1.107 +	// Add an event
   1.108 +	active2->StartL();
   1.109 +	client->AddEvent(*event, active2->iStatus);
   1.110 +	
   1.111 +	// We can be fairly certain that the function will complete first
   1.112 +	CActiveScheduler::Start();
   1.113 +	TEST2(active2->iStatus.Int(), KErrNone);
   1.114 +	TEST(active1->IsActive());
   1.115 +	CActiveScheduler::Start();
   1.116 +	TEST(active1->iStatus.Int() >= 0);
   1.117 +
   1.118 +	User::After(1000000);
   1.119 +
   1.120 +	// Check delay
   1.121 +	TTime after;
   1.122 +	after.UniversalTime();
   1.123 +	TEST(before + delay <= after);
   1.124 +
   1.125 +	before.UniversalTime();
   1.126 +
   1.127 +	// *** Notification when change made - with long delay - multiple changes
   1.128 +	active1->StartL();
   1.129 +	client->NotifyChange(delay, active1->iStatus);
   1.130 +
   1.131 +	// Add an event
   1.132 +	active2->StartL();
   1.133 +	client->AddEvent(*event, active2->iStatus);
   1.134 +	
   1.135 +	// The function should complete
   1.136 +	CActiveScheduler::Start();
   1.137 +	TEST(active1->IsActive());
   1.138 +	TEST2(active2->iStatus.Int(), KErrNone);
   1.139 +
   1.140 +	// Change the event
   1.141 +	active2->StartL();
   1.142 +	client->ChangeEvent(*event, active2->iStatus);
   1.143 +	
   1.144 +	// The function should complete
   1.145 +	CActiveScheduler::Start();
   1.146 +	TEST(active1->IsActive());
   1.147 +	TEST2(active2->iStatus.Int(), KErrNone);
   1.148 +
   1.149 +	// The notification should complete
   1.150 +	CActiveScheduler::Start();
   1.151 +	TEST(active1->iStatus.Int() >= 0);
   1.152 +
   1.153 +#ifdef __WINS__
   1.154 +	User::After(1000000);
   1.155 +#endif
   1.156 +
   1.157 +	// Check delay
   1.158 +	after.UniversalTime();
   1.159 +	TEST(before + TTimeIntervalMicroSeconds32(delay) <= after);
   1.160 +
   1.161 +	// *** Notification when change made - after long delay
   1.162 +	active1->StartL();
   1.163 +	client->NotifyChange(delay, active1->iStatus);
   1.164 +
   1.165 +	// Wait around for a time equal to the delay
   1.166 +	CTestTimer* timer = CTestTimer::NewL();
   1.167 +	timer->After(delay);
   1.168 +	CActiveScheduler::Start();
   1.169 +	delete timer;
   1.170 +
   1.171 +	// Add an event
   1.172 +	active2->StartL();
   1.173 +	client->AddEvent(*event, active2->iStatus);
   1.174 +	
   1.175 +	// Not sure which will finish first
   1.176 +	CActiveScheduler::Start();
   1.177 +	if (!active1->IsActive())
   1.178 +		{
   1.179 +		TEST(active2->IsActive());
   1.180 +		TEST(active1->iStatus.Int() >= 0);
   1.181 +		CActiveScheduler::Start();
   1.182 +		TEST2(active2->iStatus.Int(), KErrNone);
   1.183 +		}
   1.184 +	else
   1.185 +		{
   1.186 +		TEST2(active2->iStatus.Int(), KErrNone);
   1.187 +		CActiveScheduler::Start();
   1.188 +		TEST(active1->iStatus.Int() >= 0);
   1.189 +		}
   1.190 +
   1.191 +	CleanupStack::PopAndDestroy(4); // event, active2, active1, client
   1.192 +	}
   1.193 +
   1.194 +/**
   1.195 +@SYMTestCaseID          SYSLIB-LOGENG-CT-0927
   1.196 +@SYMTestCaseDesc	    Tests for CLogClient::NotifyChangeCancel() function
   1.197 +@SYMTestPriority 	    High
   1.198 +@SYMTestActions  	    Tests for cancelling of any outstanding notification requests for changes to log engine database
   1.199 +@SYMTestExpectedResults Test must not fail
   1.200 +@SYMREQ                 REQ0000
   1.201 +*/
   1.202 +LOCAL_C void TestCancelNotificationL()
   1.203 +	{
   1.204 +	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0927 "));
   1.205 +	CLogClient* client = CLogClient::NewL(theFs);
   1.206 +	CleanupStack::PushL(client);
   1.207 +
   1.208 +	CTestActive* active1 = new(ELeave)CTestActive;
   1.209 +	CleanupStack::PushL(active1);
   1.210 +
   1.211 +	// *** Cancel without delay
   1.212 +	active1->StartL();
   1.213 +	client->NotifyChange(0, active1->iStatus);
   1.214 +	client->NotifyChangeCancel();
   1.215 +	CActiveScheduler::Start();
   1.216 +	TEST2(active1->iStatus.Int(), KErrCancel);
   1.217 +
   1.218 +	const TInt delay = 3000000;
   1.219 +
   1.220 +	// *** Cancel with delay	
   1.221 +	active1->StartL();
   1.222 +	client->NotifyChange(delay, active1->iStatus);
   1.223 +
   1.224 +	// Wait around for a bit
   1.225 +	CTestTimer* timer = CTestTimer::NewL();
   1.226 +	timer->After(delay / 2);
   1.227 +	CActiveScheduler::Start();
   1.228 +	delete timer;
   1.229 +
   1.230 +	client->NotifyChangeCancel();
   1.231 +	CActiveScheduler::Start();
   1.232 +	TEST2(active1->iStatus.Int(), KErrCancel);
   1.233 +
   1.234 +	// *** Cancel with long delay	
   1.235 +	active1->StartL();
   1.236 +	client->NotifyChange(delay, active1->iStatus);
   1.237 +
   1.238 +	// Wait around for a bit
   1.239 +	timer = CTestTimer::NewL();
   1.240 +	timer->After(delay * 2);
   1.241 +	CActiveScheduler::Start();
   1.242 +	delete timer;
   1.243 +
   1.244 +	client->NotifyChangeCancel();
   1.245 +	CActiveScheduler::Start();
   1.246 +	TEST2(active1->iStatus.Int(), KErrCancel);
   1.247 +
   1.248 +	// *** Cancel after change
   1.249 +	CLogEvent* event = CLogEvent::NewL();
   1.250 +	CleanupStack::PushL(event);
   1.251 +	event->SetEventType(KLogCallEventTypeUid);
   1.252 +
   1.253 +	active1->StartL();
   1.254 +	client->NotifyChange(delay, active1->iStatus);
   1.255 +
   1.256 +	CTestActive* active2 = new(ELeave)CTestActive;
   1.257 +	CleanupStack::PushL(active2);
   1.258 +
   1.259 +	active2->StartL();
   1.260 +	client->AddEvent(*event, active2->iStatus);
   1.261 +	CActiveScheduler::Start();
   1.262 +	TEST(active1->IsActive());
   1.263 +	TEST2(active2->iStatus.Int(), KErrNone);
   1.264 +
   1.265 +	client->NotifyChangeCancel();
   1.266 +	CActiveScheduler::Start();
   1.267 +	TEST2(active1->iStatus.Int(), KErrCancel);
   1.268 +
   1.269 +	// *** Cancel after change and delay
   1.270 +	active1->StartL();
   1.271 +	client->NotifyChange(delay, active1->iStatus);
   1.272 +
   1.273 +	// Wait around for a bit
   1.274 +	timer = CTestTimer::NewL();
   1.275 +	timer->After(delay / 2);
   1.276 +	CActiveScheduler::Start();
   1.277 +	delete timer;
   1.278 +
   1.279 +	active2->StartL();
   1.280 +	client->AddEvent(*event, active2->iStatus);
   1.281 +	CActiveScheduler::Start();
   1.282 +	TEST(active1->IsActive());
   1.283 +	TEST2(active2->iStatus.Int(), KErrNone);
   1.284 +
   1.285 +	client->NotifyChangeCancel();
   1.286 +	CActiveScheduler::Start();
   1.287 +	TEST2(active1->iStatus.Int(), KErrCancel);
   1.288 +
   1.289 +	// *** Cancel after change and delay
   1.290 +	active1->StartL();
   1.291 +	client->NotifyChange(delay, active1->iStatus);
   1.292 +
   1.293 +	active2->StartL();
   1.294 +	client->AddEvent(*event, active2->iStatus);
   1.295 +	CActiveScheduler::Start();
   1.296 +	TEST(active1->IsActive());
   1.297 +	TEST2(active2->iStatus.Int(), KErrNone);
   1.298 +
   1.299 +	// Wait around for a bit
   1.300 +	timer = CTestTimer::NewL();
   1.301 +	timer->After(delay / 2);
   1.302 +	CActiveScheduler::Start();
   1.303 +	delete timer;
   1.304 +
   1.305 +	client->NotifyChangeCancel();
   1.306 +	CActiveScheduler::Start();
   1.307 +	TEST2(active1->iStatus.Int(), KErrCancel);
   1.308 +
   1.309 +	// *** Cancel when not active
   1.310 +	client->NotifyChangeCancel();
   1.311 +
   1.312 +	CleanupStack::PopAndDestroy(4); // active2, event, active, client
   1.313 +	}
   1.314 +
   1.315 +/**
   1.316 +@SYMTestCaseID          SYSLIB-LOGENG-CT-0928
   1.317 +@SYMTestCaseDesc	    Tests for notification requests on view purge
   1.318 +@SYMTestPriority 	    High
   1.319 +@SYMTestActions  	    Notify changes on log view event
   1.320 +@SYMTestExpectedResults Test must not fail
   1.321 +@SYMREQ                 REQ0000
   1.322 +*/
   1.323 +LOCAL_C void TestViewPurgeNotifyL()
   1.324 +	{
   1.325 +	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0928 "));
   1.326 +	CTestTimer* timer = CTestTimer::NewL();
   1.327 +	CleanupStack::PushL(timer);
   1.328 +
   1.329 +	CTestActive* active = new(ELeave)CTestActive();
   1.330 +	CleanupStack::PushL(active);
   1.331 +
   1.332 +	CLogClient* client = CLogClient::NewL(theFs);
   1.333 +	CleanupStack::PushL(client);
   1.334 +
   1.335 +	CLogViewEvent* view = CLogViewEvent::NewL(*client);
   1.336 +	CleanupStack::PushL(view);
   1.337 +
   1.338 +	CLogFilter* filter = CLogFilter::NewL();
   1.339 +	CleanupStack::PushL(filter);
   1.340 +
   1.341 +	CTestActive* notify = new(ELeave)CTestActive;
   1.342 +	CleanupStack::PushL(notify);
   1.343 +
   1.344 +	// Start notifier
   1.345 +	notify->StartL();
   1.346 +	client->NotifyChange(1000000, notify->iStatus);
   1.347 +
   1.348 +	// Wait for 10 seconds
   1.349 +	TEST(notify->IsActive());
   1.350 +	timer = CTestTimer::NewL();
   1.351 +	timer->After(7000000);
   1.352 +	CActiveScheduler::Start();
   1.353 +	delete timer;
   1.354 +
   1.355 +	// Setup a view
   1.356 +	TEST(notify->IsActive());
   1.357 +	if (view->SetFilterL(*filter, active->iStatus))
   1.358 +		{
   1.359 +		active->StartL();
   1.360 +		CActiveScheduler::Start();
   1.361 +		TEST(view->CountL() > 0);
   1.362 +		}
   1.363 +
   1.364 +	// Wait for 10 seconds
   1.365 +	TEST(notify->IsActive());
   1.366 +	timer = CTestTimer::NewL();
   1.367 +	timer->After(10000000);
   1.368 +	CActiveScheduler::Start();
   1.369 +	delete timer;
   1.370 +
   1.371 +	// We shouldn't be notified because nothing has changed
   1.372 +	TEST(notify->IsActive());
   1.373 +	client->NotifyChangeCancel();
   1.374 +	CActiveScheduler::Start();
   1.375 +	TEST2(notify->iStatus.Int(), KErrCancel);
   1.376 +
   1.377 +	CleanupStack::PopAndDestroy(6); // notify, client, filter, view, active, timer
   1.378 +	}
   1.379 +
   1.380 +/**
   1.381 +INC045485 - AV20 Messaging App crashes when attempting to write New SMS
   1.382 +
   1.383 +@SYMTestCaseID          SYSLIB-LOGENG-CT-0929
   1.384 +@SYMTestCaseDesc	    Tests for defect number INC045485L.
   1.385 +@SYMTestPriority 	    High
   1.386 +@SYMTestActions  	    Tests by adding a fax event type
   1.387 +@SYMTestExpectedResults Test must not fail
   1.388 +@SYMREQ                 REQ0000
   1.389 +*/
   1.390 +LOCAL_C void INC045485L()
   1.391 +	{
   1.392 +	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0929 "));
   1.393 +	const TInt KEventCnt = 5;//test events count
   1.394 +	const TInt KSizeOfEventData = 400;//should be bigger than KLogSizeOfEventGuess constant
   1.395 +	//Create client, active, event
   1.396 +	CLogClient* client = CLogClient::NewL(theFs);
   1.397 +	CleanupStack::PushL(client);
   1.398 +	CTestActive* active = new (ELeave) CTestActive;
   1.399 +	CleanupStack::PushL(active);
   1.400 +	CLogEvent* event = CLogEvent::NewL();
   1.401 +	CleanupStack::PushL(event);
   1.402 +	//Add KEventCnt events
   1.403 +	for(TInt i=0;i<KEventCnt;++i)
   1.404 +		{
   1.405 +		event->SetId(0x13579 + i);
   1.406 +		event->SetEventType(KLogFaxEventTypeUid);
   1.407 +		TUint8 buf[KSizeOfEventData];
   1.408 +		Mem::Fill(buf, KSizeOfEventData, TChar('1' + i));
   1.409 +		TPtr8 ptr(buf, KSizeOfEventData, KSizeOfEventData);
   1.410 +		event->SetDataL(ptr);
   1.411 +		//
   1.412 +		active->StartL();
   1.413 +		client->AddEvent(*event, active->iStatus);
   1.414 +		CActiveScheduler::Start();
   1.415 +		TEST(!active->IsActive());
   1.416 +		client->Cancel();
   1.417 +		TEST2(active->iStatus.Int(), KErrNone);
   1.418 +		}
   1.419 +	//Create LogViewEvent, CLogFilter
   1.420 +	CLogViewEvent* view = CLogViewEvent::NewL(*client);
   1.421 +	CleanupStack::PushL(view);
   1.422 +	CLogFilter* filter = CLogFilter::NewL();
   1.423 +	CleanupStack::PushL(filter);
   1.424 +	filter->SetEventType(KLogFaxEventTypeUid);//the same as the type UID of added events
   1.425 +	//Filter the events
   1.426 +	if(view->SetFilterL(*filter, active->iStatus))
   1.427 +		{
   1.428 +		active->StartL();
   1.429 +		CActiveScheduler::Start();
   1.430 +		TEST(view->CountL() == KEventCnt);
   1.431 +		}
   1.432 +	//Visit the events
   1.433 +	TInt j = 0;
   1.434 +	TEST(view->FirstL(active->iStatus));
   1.435 +	do
   1.436 +		{
   1.437 +		active->StartL();
   1.438 +		CActiveScheduler::Start();
   1.439 +		TEST2(active->iStatus.Int(), KErrNone);//If the defect is not fixed this check fails with "KErrOverflow"
   1.440 +		const CLogEvent& e = view->Event();
   1.441 +		TheTest.Printf(_L("View Entry[%d]: Id:%d, Type:%x\n"), j, e.Id(), e.EventType().iUid);
   1.442 +		const TDesC8& data = e.Data();
   1.443 +		TEST(data.Length() == KSizeOfEventData);
   1.444 +		//Touch the data.
   1.445 +		for(TInt k=0;k<KSizeOfEventData;++k)
   1.446 +			{
   1.447 +			TChar c = data[k];
   1.448 +			TEST(c >= TChar('1') && c < TChar('1' + KEventCnt));
   1.449 +			}
   1.450 +		++j;
   1.451 +		}
   1.452 +	while(view->NextL(active->iStatus));
   1.453 +	//Destroy filter, view, event, active, client
   1.454 +	CleanupStack::PopAndDestroy(filter);
   1.455 +	CleanupStack::PopAndDestroy(view);
   1.456 +	CleanupStack::PopAndDestroy(event);
   1.457 +	CleanupStack::PopAndDestroy(active);
   1.458 +	CleanupStack::PopAndDestroy(client);
   1.459 +	}
   1.460 +
   1.461 +//DEF060381  Propagated: Receiving Chinese SMSes causes the battery to drain too fast 
   1.462 +static void DEF060381L()
   1.463 +	{
   1.464 +	const TInt KSizeOfEventData = 1025; //should be bigger than KLogSizeOfEventGuess constant
   1.465 +
   1.466 +	//Create two clients. The first one will be used to send one message to the server,
   1.467 +	//which length is too big. The second client will be used to receive the message from
   1.468 +	//the server.
   1.469 +	//If the defect is not fixed, the function hangs and its return point is never reached.
   1.470 +	CLogClient* client1 = CLogClient::NewL(theFs);
   1.471 +	CleanupStack::PushL(client1);
   1.472 +
   1.473 +	CLogClient* client2 = CLogClient::NewL(theFs);
   1.474 +	CleanupStack::PushL(client2);
   1.475 +
   1.476 +	CTestActive* active = new (ELeave) CTestActive;
   1.477 +	CleanupStack::PushL(active);
   1.478 +
   1.479 +	//Create one SMS event, which holds a block of data with size bigger than the default 
   1.480 +	//size of the client side buffer (KLogSizeOfEventGuess).
   1.481 +	CLogEvent* event = CLogEvent::NewL();
   1.482 +	CleanupStack::PushL(event);
   1.483 +
   1.484 +	event->SetId(0x9991118);
   1.485 +	event->SetEventType(KLogShortMessageEventTypeUid);
   1.486 +	TUint8 buf[KSizeOfEventData];
   1.487 +	for(TInt i=0;i<KSizeOfEventData;++i)
   1.488 +		{
   1.489 +		buf[i] = static_cast <TUint8> (i % 256);
   1.490 +		}
   1.491 +	TPtr8 ptr(buf, KSizeOfEventData, KSizeOfEventData);
   1.492 +	event->SetDataL(ptr);
   1.493 +
   1.494 +	//Send the created event to the server unsing the first client.
   1.495 +	active->StartL();
   1.496 +	client1->AddEvent(*event, active->iStatus);
   1.497 +	CActiveScheduler::Start();
   1.498 +	TEST(!active->IsActive());
   1.499 +	TEST2(active->iStatus.Int(), KErrNone);
   1.500 +
   1.501 +	//Create a view using the second client.
   1.502 +	//Create a filter for SMS messages.
   1.503 +	CLogViewEvent* view = CLogViewEvent::NewL(*client2);
   1.504 +	CleanupStack::PushL(view);
   1.505 +	CLogFilter* filter = CLogFilter::NewL();
   1.506 +	CleanupStack::PushL(filter);
   1.507 +	filter->SetEventType(KLogShortMessageEventTypeUid);//the same as the type UID of added events
   1.508 +	//Filter the events
   1.509 +	if(view->SetFilterL(*filter, active->iStatus))
   1.510 +		{
   1.511 +		active->StartL();
   1.512 +		CActiveScheduler::Start();//Here the test fucntion hangs and never returns, if the defect is not fixed.
   1.513 +		TEST(view->CountL() == 1);
   1.514 +		}
   1.515 +	//Visit the events
   1.516 +	TInt j = 0;
   1.517 +	TEST(view->FirstL(active->iStatus));
   1.518 +	do
   1.519 +		{
   1.520 +		active->StartL();
   1.521 +		CActiveScheduler::Start();
   1.522 +		TEST2(active->iStatus.Int(), KErrNone);
   1.523 +		const CLogEvent& e = view->Event();
   1.524 +		TheTest.Printf(_L("View Entry[%d]: Id:%d, Type:%x\n"), j, e.Id(), e.EventType().iUid);
   1.525 +		const TDesC8& data = e.Data();
   1.526 +		TEST(data.Length() == KSizeOfEventData);
   1.527 +		//Touch the data.
   1.528 +		for(TInt k=0;k<KSizeOfEventData;++k)
   1.529 +			{
   1.530 +			TUint8 c = data[k];
   1.531 +			TEST(c == static_cast <TUint8> (k % 256));
   1.532 +			}
   1.533 +		++j;
   1.534 +		}
   1.535 +	while(view->NextL(active->iStatus));
   1.536 +
   1.537 +	CleanupStack::PopAndDestroy(filter);
   1.538 +	CleanupStack::PopAndDestroy(view);
   1.539 +	CleanupStack::PopAndDestroy(event);
   1.540 +	CleanupStack::PopAndDestroy(active);
   1.541 +	CleanupStack::PopAndDestroy(client2);
   1.542 +	CleanupStack::PopAndDestroy(client1);
   1.543 +	}
   1.544 +
   1.545 +void doTestsL()
   1.546 +	{
   1.547 +	TestUtils::Initialize(_L("t_lognotify"));
   1.548 +	TestUtils::DeleteDatabaseL();
   1.549 +
   1.550 +	TheTest.Start(_L("Notifications"));
   1.551 +	TestNotificationL();
   1.552 +	theLog.Write(_L8("Test 1 OK\n"));
   1.553 +
   1.554 +	TheTest.Next(_L("INC045485"));
   1.555 +	::INC045485L();
   1.556 +
   1.557 +	TheTest.Next(_L("Cancelling Notifications"));
   1.558 +	TestCancelNotificationL();
   1.559 +	theLog.Write(_L8("Test 2 OK\n"));
   1.560 +
   1.561 +	TheTest.Next(_L("Notify with View Purge"));
   1.562 +	TestViewPurgeNotifyL();
   1.563 +	theLog.Write(_L8("Test 3 OK\n"));
   1.564 +
   1.565 +	TheTest.Next(_L("DEF060381"));
   1.566 +	::DEF060381L();
   1.567 +	}