1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_logview1.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,6048 @@
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 +#include <s32file.h>
1.19 +#include <s32mem.h>
1.20 +#include <e32math.h>
1.21 +#include "t_logutil2.h"
1.22 +#include <logview.h>
1.23 +
1.24 +#define UNUSED_VAR(a) a = a
1.25 +
1.26 +RTest TheTest(_L("t_logview1"));
1.27 +
1.28 +const TInt KTestLogNumberCharsToMatch = 9; // should be the same as KLogNumberCharsToMatch defined in LogServ\src\LOGFILTQ.CPP
1.29 +const TInt KTestEventNum = 10;
1.30 +const TUid KTestEventUid = {0x10005393};
1.31 +const TLogDurationType KTestDurationType = 0x12;
1.32 +const TLogContactItemId KTestContact = 0x1234;
1.33 +_LIT(KTestEventDesc, "Test Event");
1.34 +_LIT(KTestRemoteParty, "Test Remote Party");
1.35 +_LIT(KTestDirection, "Test Direction");
1.36 +_LIT(KTestStatus, "Test Status");
1.37 +_LIT(KTestNumber, "Test Number");
1.38 +_LIT(KThreadSemaphoreName, "T_VIEW1_TEST_CODE");
1.39 +
1.40 +
1.41 +TBool TheMatchingIsEnabled = EFalse;
1.42 +
1.43 +#define TEST_LOG_UID KTestEventUid
1.44 +
1.45 +//View's DoCancel() test
1.46 +void DoViewCancelTestL(CTestActive& aActive, CLogViewEvent& aView)
1.47 + {
1.48 + //Call FirstL() and cancel the operation
1.49 + aActive.StartL();
1.50 + (void)aView.FirstL(aActive.iStatus);
1.51 + aView.Cancel();
1.52 + TEST(!aView.IsActive());
1.53 + CActiveScheduler::Start();
1.54 + TEST2(aActive.iStatus.Int(), KErrCancel);
1.55 +
1.56 + //Call FirstL(). View cursor positioned on the first record.
1.57 + aActive.StartL();
1.58 + (void)aView.FirstL(aActive.iStatus);
1.59 + CActiveScheduler::Start();
1.60 + TEST2(aActive.iStatus.Int(), KErrNone);
1.61 +
1.62 + //Call NextL() and cancel the operation
1.63 + aActive.StartL();
1.64 + (void)aView.NextL(aActive.iStatus);
1.65 + aView.Cancel();
1.66 + TEST(!aView.IsActive());
1.67 + CActiveScheduler::Start();
1.68 + TEST2(aActive.iStatus.Int(), KErrCancel);
1.69 +
1.70 + //Call LastL() and cancel the operation
1.71 + aActive.StartL();
1.72 + (void)aView.LastL(aActive.iStatus);
1.73 + aView.Cancel();
1.74 + TEST(!aView.IsActive());
1.75 + CActiveScheduler::Start();
1.76 + TEST2(aActive.iStatus.Int(), KErrCancel);
1.77 +
1.78 + //Call LastL(). View cursor positioned on the last record.
1.79 + aActive.StartL();
1.80 + (void)aView.LastL(aActive.iStatus);
1.81 + CActiveScheduler::Start();
1.82 + TEST2(aActive.iStatus.Int(), KErrNone);
1.83 +
1.84 + //Call PreviousL() and cancel the operation
1.85 + aActive.StartL();
1.86 + (void)aView.PreviousL(aActive.iStatus);
1.87 + aView.Cancel();
1.88 + TEST(!aView.IsActive());
1.89 + CActiveScheduler::Start();
1.90 + TEST2(aActive.iStatus.Int(), KErrCancel);
1.91 + }
1.92 +
1.93 +/**
1.94 +@SYMTestCaseID SYSLIB-LOGENG-CT-0851
1.95 +@SYMTestCaseDesc Tests for adding event types to the log
1.96 +@SYMTestPriority High
1.97 +@SYMTestActions Tests for adding events,check event count,clearing all the events
1.98 +@SYMTestExpectedResults Test must not fail
1.99 +@SYMREQ REQ0000
1.100 +*/
1.101 +LOCAL_C void TestEventViewL(CLogClient& aClient)
1.102 + {
1.103 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0851 "));
1.104 + CLogEvent* event = CLogEvent::NewL();
1.105 + CleanupStack::PushL(event);
1.106 + event->SetEventType(KLogCallEventTypeUid);
1.107 +
1.108 + CTestActive* active = new(ELeave)CTestActive();
1.109 + CleanupStack::PushL(active);
1.110 +
1.111 + TInt count;
1.112 + for(count = 0; count < KTestEventNum; count++)
1.113 + {
1.114 + active->StartL();
1.115 + aClient.AddEvent(*event, active->iStatus);
1.116 + CActiveScheduler::Start();
1.117 + TEST2(active->iStatus.Int(), KErrNone);
1.118 + }
1.119 +
1.120 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.121 + changeObs->SetActive();
1.122 +
1.123 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.124 + CleanupStack::PushL(view);
1.125 +
1.126 + CLogFilter* filter = CLogFilter::NewL();
1.127 + CleanupStack::PushL(filter);
1.128 +
1.129 + count = view->CountL();
1.130 + TEST2(count, 0);
1.131 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.132 + TEST(res);
1.133 +
1.134 + // Move forward
1.135 + count = KTestEventNum;
1.136 + do {
1.137 + active->StartL();
1.138 + CActiveScheduler::Start();
1.139 + TEST2(active->iStatus.Int(), KErrNone);
1.140 +
1.141 + const TInt viewCount = view->CountL();
1.142 + TEST2(viewCount, KTestEventNum);
1.143 + const TLogId eventId = view->Event().Id();
1.144 + TLogId id = --count;
1.145 + TEST2(eventId, id);
1.146 + }
1.147 + while(view->NextL(active->iStatus));
1.148 + TEST2(count, 0);
1.149 +
1.150 + // Move back
1.151 + while(view->PreviousL(active->iStatus))
1.152 + {
1.153 + active->StartL();
1.154 + CActiveScheduler::Start();
1.155 + TEST2(active->iStatus.Int(), KErrNone);
1.156 +
1.157 + TEST2(view->CountL(), KTestEventNum);
1.158 + TLogId id = ++count;
1.159 + TEST2(view->Event().Id(), id);
1.160 + }
1.161 + TEST2(count, KTestEventNum - 1);
1.162 +
1.163 + active->StartL();
1.164 + res = view->FirstL(active->iStatus);
1.165 + TEST(res);
1.166 + CActiveScheduler::Start();
1.167 + TEST2(active->iStatus.Int(), KErrNone);
1.168 +
1.169 + active->StartL();
1.170 + res = view->LastL(active->iStatus);
1.171 + TEST(res);
1.172 + CActiveScheduler::Start();
1.173 + TEST2(active->iStatus.Int(), KErrNone);
1.174 +
1.175 + // Nothing has changed in the view yet
1.176 + TEST(!changeObs->HaveChanges());
1.177 +
1.178 + DoViewCancelTestL(*active, *view);
1.179 +
1.180 + TTime now;
1.181 + now.UniversalTime();
1.182 + now+=(TTimeIntervalDays) 1;
1.183 +
1.184 + // Clear all the events
1.185 + active->StartL();
1.186 + aClient.ClearLog(now, active->iStatus);
1.187 + CActiveScheduler::Start();
1.188 + TEST2(active->iStatus.Int(), KErrNone);
1.189 +
1.190 + res = view->SetFilterL(*filter, active->iStatus);
1.191 + TEST(!res);
1.192 + TEST2(view->CountL(), 0);
1.193 + res = view->FirstL(active->iStatus);
1.194 + TEST(!res);
1.195 + res = view->LastL(active->iStatus);
1.196 + TEST(!res);
1.197 + res = view->NextL(active->iStatus);
1.198 + TEST(!res);
1.199 + res = view->PreviousL(active->iStatus);
1.200 + TEST(!res);
1.201 +
1.202 + CleanupStack::PopAndDestroy(5, event); // filter, view, changeObs, active, event
1.203 +
1.204 + CLogSchedulerTimer* timer = CLogSchedulerTimer::NewLC();
1.205 + timer->Wait(10 * 1000000);
1.206 + CleanupStack::PopAndDestroy(timer);
1.207 + }
1.208 +
1.209 +/**
1.210 +@SYMTestCaseID SYSLIB-LOGENG-CT-0852
1.211 +@SYMTestCaseDesc Tests for adding event types to the filter list
1.212 +@SYMTestPriority High
1.213 +@SYMTestActions Set the configuration data of event type.Add the event type to the filter and
1.214 + compare the configuration data of event type and from filter view.
1.215 +@SYMTestExpectedResults Test must not fail
1.216 +@SYMREQ REQ0000
1.217 +*/
1.218 +LOCAL_C void TestViewFilterL(CLogClient& aClient, CLogFilter& aFilter)
1.219 + {
1.220 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0852 "));
1.221 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.222 + CleanupStack::PushL(view);
1.223 +
1.224 + CLogEvent* event = CLogEvent::NewL();
1.225 + CleanupStack::PushL(event);
1.226 +
1.227 + event->SetEventType(KTestEventUid);
1.228 + event->SetRemoteParty(aFilter.RemoteParty());
1.229 + event->SetDirection(aFilter.Direction());
1.230 + event->SetDurationType(aFilter.DurationType());
1.231 + event->SetStatus(aFilter.Status());
1.232 + event->SetContact(aFilter.Contact());
1.233 + event->SetNumber(aFilter.Number());
1.234 +
1.235 + CTestActive* active = new(ELeave)CTestActive();
1.236 + CleanupStack::PushL(active);
1.237 +
1.238 + if (view->SetFilterL(aFilter, active->iStatus))
1.239 + {
1.240 + active->StartL();
1.241 + CActiveScheduler::Start();
1.242 + TEST2(active->iStatus.Int(), KErrNone);
1.243 + }
1.244 +
1.245 + TInt total = view->CountL();
1.246 +
1.247 + active->StartL();
1.248 + aClient.AddEvent(*event, active->iStatus);
1.249 + CActiveScheduler::Start();
1.250 + TEST2(active->iStatus.Int(), KErrNone);
1.251 +
1.252 + TBool res = view->SetFilterL(aFilter, active->iStatus);
1.253 + TEST(res);
1.254 + active->StartL();
1.255 + CActiveScheduler::Start();
1.256 + TEST2(active->iStatus.Int(), KErrNone);
1.257 +
1.258 + TEST2(view->CountL(), total + 1);
1.259 +
1.260 + TEST2(event->EventType().iUid, KTestEventUid.iUid);
1.261 + TEST(event->RemoteParty() == aFilter.RemoteParty());
1.262 + TEST(event->Direction() == aFilter.Direction());
1.263 + TEST2(event->DurationType(), aFilter.DurationType());
1.264 + TEST(event->Status() == aFilter.Status());
1.265 + TEST2(event->Contact(), aFilter.Contact());
1.266 + TEST(event->Number() == aFilter.Number());
1.267 +
1.268 + TTime now;
1.269 + now.UniversalTime();
1.270 +
1.271 + TInt count = 1;
1.272 +
1.273 + while(view->NextL(active->iStatus))
1.274 + {
1.275 + count++;
1.276 + TEST(count <= total + 1);
1.277 +
1.278 + active->StartL();
1.279 + CActiveScheduler::Start();
1.280 + TEST2(active->iStatus.Int(), KErrNone);
1.281 +
1.282 + TEST(now >= event->Time());
1.283 +
1.284 + if (aFilter.EventType() != KNullUid)
1.285 + TEST2(event->EventType().iUid, aFilter.EventType().iUid);
1.286 +
1.287 + if (aFilter.RemoteParty().Length() > 0)
1.288 + TEST(event->RemoteParty() == aFilter.RemoteParty());
1.289 +
1.290 + if (aFilter.Direction().Length() > 0)
1.291 + TEST(event->Direction() == aFilter.Direction());
1.292 +
1.293 + if (aFilter.DurationType() != KLogNullDurationType)
1.294 + TEST2(event->DurationType(), aFilter.DurationType());
1.295 +
1.296 + if (aFilter.Status().Length() > 0)
1.297 + TEST(event->Status() == aFilter.Status());
1.298 +
1.299 + if (aFilter.Contact() > KLogNullContactId)
1.300 + TEST2(event->Contact(), aFilter.Contact());
1.301 +
1.302 + if (aFilter.Number().Length() > 0)
1.303 + TEST(event->Number() == aFilter.Number());
1.304 + }
1.305 +
1.306 + TEST2(count, total + 1);
1.307 +
1.308 + CleanupStack::PopAndDestroy(3); // active, event, view;
1.309 + }
1.310 +
1.311 +/**
1.312 +@SYMTestCaseID SYSLIB-LOGENG-CT-0853
1.313 +@SYMTestCaseDesc Tests for filtering the log view
1.314 +@SYMTestPriority High
1.315 +@SYMTestActions Tests for the log view filter,which is set with different configuration data
1.316 +@SYMTestExpectedResults Test must not fail
1.317 +@SYMREQ REQ0000
1.318 +*/
1.319 +LOCAL_C void TestEventViewFilter1L(CLogClient& aClient)
1.320 + {
1.321 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0853 "));
1.322 + CTestActive* active = new(ELeave)CTestActive();
1.323 + CleanupStack::PushL(active);
1.324 +
1.325 + // Create a test event type
1.326 + CLogEventType* type = CLogEventType::NewL();
1.327 + CleanupStack::PushL(type);
1.328 +
1.329 + type->SetUid(KTestEventUid);
1.330 + type->SetDescription(KTestEventDesc);
1.331 + type->SetLoggingEnabled(ETrue);
1.332 +
1.333 + // Register the event type
1.334 + active->StartL();
1.335 + aClient.AddEventType(*type, active->iStatus);
1.336 + CActiveScheduler::Start();
1.337 + TEST2(active->iStatus.Int(), KErrNone);
1.338 +
1.339 + CleanupStack::PopAndDestroy(); // type
1.340 +
1.341 + CLogFilter* filter = CLogFilter::NewL();
1.342 + CleanupStack::PushL(filter);
1.343 +
1.344 + filter->SetEventType(KTestEventUid);
1.345 + TestViewFilterL(aClient, *filter);
1.346 +
1.347 + filter->SetEventType(KTestEventUid);
1.348 + filter->SetRemoteParty(KTestRemoteParty);
1.349 + TestViewFilterL(aClient, *filter);
1.350 +
1.351 + filter->SetEventType(KTestEventUid);
1.352 + filter->SetRemoteParty(KTestRemoteParty);
1.353 + filter->SetDirection(KTestDirection);
1.354 + TestViewFilterL(aClient, *filter);
1.355 +
1.356 + filter->SetEventType(KTestEventUid);
1.357 + filter->SetRemoteParty(KTestRemoteParty);
1.358 + filter->SetDirection(KTestDirection);
1.359 + filter->SetDurationType(KTestDurationType);
1.360 + TestViewFilterL(aClient, *filter);
1.361 +
1.362 + filter->SetEventType(KTestEventUid);
1.363 + filter->SetRemoteParty(KTestRemoteParty);
1.364 + filter->SetDirection(KTestDirection);
1.365 + filter->SetDurationType(KTestDurationType);
1.366 + filter->SetStatus(KTestStatus);
1.367 + TestViewFilterL(aClient, *filter);
1.368 +
1.369 + filter->SetEventType(KTestEventUid);
1.370 + filter->SetRemoteParty(KTestRemoteParty);
1.371 + filter->SetDirection(KTestDirection);
1.372 + filter->SetDurationType(KTestDurationType);
1.373 + filter->SetStatus(KTestStatus);
1.374 + filter->SetContact(KTestContact);
1.375 + TestViewFilterL(aClient, *filter);
1.376 +
1.377 + filter->SetEventType(KTestEventUid);
1.378 + filter->SetRemoteParty(KTestRemoteParty);
1.379 + filter->SetDirection(KTestDirection);
1.380 + filter->SetDurationType(KTestDurationType);
1.381 + filter->SetStatus(KTestStatus);
1.382 + filter->SetContact(KTestContact);
1.383 + filter->SetNumber(KTestNumber);
1.384 + TestViewFilterL(aClient, *filter);
1.385 +
1.386 + CleanupStack::PopAndDestroy(); // filter
1.387 +
1.388 + filter = CLogFilter::NewL();
1.389 + CleanupStack::PushL(filter);
1.390 +
1.391 + filter->SetRemoteParty(KTestRemoteParty);
1.392 + TestViewFilterL(aClient, *filter);
1.393 +
1.394 + filter->SetRemoteParty(KTestRemoteParty);
1.395 + filter->SetDirection(KTestDirection);
1.396 + TestViewFilterL(aClient, *filter);
1.397 +
1.398 + filter->SetRemoteParty(KTestRemoteParty);
1.399 + filter->SetDirection(KTestDirection);
1.400 + filter->SetDurationType(KTestDurationType);
1.401 + TestViewFilterL(aClient, *filter);
1.402 +
1.403 + filter->SetRemoteParty(KTestRemoteParty);
1.404 + filter->SetDirection(KTestDirection);
1.405 + filter->SetDurationType(KTestDurationType);
1.406 + filter->SetStatus(KTestStatus);
1.407 + TestViewFilterL(aClient, *filter);
1.408 +
1.409 + filter->SetRemoteParty(KTestRemoteParty);
1.410 + filter->SetDirection(KTestDirection);
1.411 + filter->SetDurationType(KTestDurationType);
1.412 + filter->SetStatus(KTestStatus);
1.413 + filter->SetContact(KTestContact);
1.414 + TestViewFilterL(aClient, *filter);
1.415 +
1.416 + filter->SetRemoteParty(KTestRemoteParty);
1.417 + filter->SetDirection(KTestDirection);
1.418 + filter->SetDurationType(KTestDurationType);
1.419 + filter->SetStatus(KTestStatus);
1.420 + filter->SetContact(KTestContact);
1.421 + filter->SetNumber(KTestNumber);
1.422 + TestViewFilterL(aClient, *filter);
1.423 +
1.424 + CleanupStack::PopAndDestroy(); // filter
1.425 +
1.426 + filter = CLogFilter::NewL();
1.427 + CleanupStack::PushL(filter);
1.428 +
1.429 + filter->SetDirection(KTestDirection);
1.430 + TestViewFilterL(aClient, *filter);
1.431 +
1.432 + filter->SetDirection(KTestDirection);
1.433 + filter->SetDurationType(KTestDurationType);
1.434 + TestViewFilterL(aClient, *filter);
1.435 +
1.436 + filter->SetDirection(KTestDirection);
1.437 + filter->SetDurationType(KTestDurationType);
1.438 + filter->SetStatus(KTestStatus);
1.439 + TestViewFilterL(aClient, *filter);
1.440 +
1.441 + filter->SetDirection(KTestDirection);
1.442 + filter->SetDurationType(KTestDurationType);
1.443 + filter->SetStatus(KTestStatus);
1.444 + filter->SetContact(KTestContact);
1.445 + TestViewFilterL(aClient, *filter);
1.446 +
1.447 + filter->SetDirection(KTestDirection);
1.448 + filter->SetDurationType(KTestDurationType);
1.449 + filter->SetStatus(KTestStatus);
1.450 + filter->SetContact(KTestContact);
1.451 + filter->SetNumber(KTestNumber);
1.452 + TestViewFilterL(aClient, *filter);
1.453 +
1.454 + CleanupStack::PopAndDestroy(); // filter
1.455 +
1.456 + filter = CLogFilter::NewL();
1.457 + CleanupStack::PushL(filter);
1.458 +
1.459 + filter->SetDurationType(KTestDurationType);
1.460 + TestViewFilterL(aClient, *filter);
1.461 +
1.462 + filter->SetDurationType(KTestDurationType);
1.463 + filter->SetStatus(KTestStatus);
1.464 + TestViewFilterL(aClient, *filter);
1.465 +
1.466 + filter->SetDurationType(KTestDurationType);
1.467 + filter->SetStatus(KTestStatus);
1.468 + filter->SetContact(KTestContact);
1.469 + TestViewFilterL(aClient, *filter);
1.470 +
1.471 + filter->SetDurationType(KTestDurationType);
1.472 + filter->SetStatus(KTestStatus);
1.473 + filter->SetContact(KTestContact);
1.474 + filter->SetNumber(KTestNumber);
1.475 + TestViewFilterL(aClient, *filter);
1.476 +
1.477 + CleanupStack::PopAndDestroy(); // filter
1.478 +
1.479 + filter = CLogFilter::NewL();
1.480 + CleanupStack::PushL(filter);
1.481 +
1.482 + filter->SetStatus(KTestStatus);
1.483 + TestViewFilterL(aClient, *filter);
1.484 +
1.485 + filter->SetStatus(KTestStatus);
1.486 + filter->SetContact(KTestContact);
1.487 + TestViewFilterL(aClient, *filter);
1.488 +
1.489 + filter->SetStatus(KTestStatus);
1.490 + filter->SetContact(KTestContact);
1.491 + filter->SetNumber(KTestNumber);
1.492 + TestViewFilterL(aClient, *filter);
1.493 +
1.494 + CleanupStack::PopAndDestroy(); // filter
1.495 +
1.496 + filter = CLogFilter::NewL();
1.497 + CleanupStack::PushL(filter);
1.498 +
1.499 + filter->SetContact(KTestContact);
1.500 + TestViewFilterL(aClient, *filter);
1.501 +
1.502 + filter->SetContact(KTestContact);
1.503 + filter->SetNumber(KTestNumber);
1.504 + TestViewFilterL(aClient, *filter);
1.505 +
1.506 + CleanupStack::PopAndDestroy(); // filter
1.507 +
1.508 + filter = CLogFilter::NewL();
1.509 + CleanupStack::PushL(filter);
1.510 +
1.511 + filter->SetNumber(KTestNumber);
1.512 + TestViewFilterL(aClient, *filter);
1.513 +
1.514 + CleanupStack::PopAndDestroy(2); // filter, active
1.515 + }
1.516 +
1.517 +/**
1.518 +@SYMTestCaseID SYSLIB-LOGENG-CT-0854
1.519 +@SYMTestCaseDesc Tests for filtering list event types
1.520 +@SYMTestPriority High
1.521 +@SYMTestActions Get the count of all event types,call,data,fax events.
1.522 + Add some event types to the filter,test for the new count
1.523 + Check for non existing event type.
1.524 +@SYMTestExpectedResults Test must not fail
1.525 +@SYMREQ REQ0000
1.526 +*/
1.527 +LOCAL_C void TestEventViewFilter2L(CLogClient& aClient)
1.528 + {
1.529 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0854 "));
1.530 + CTestActive* active = new(ELeave)CTestActive();
1.531 + CleanupStack::PushL(active);
1.532 +
1.533 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.534 + CleanupStack::PushL(view);
1.535 +
1.536 + CLogFilter* filter = CLogFilter::NewL();
1.537 + CleanupStack::PushL(filter);
1.538 +
1.539 + // Get total count of all events
1.540 + if (view->SetFilterL(*filter, active->iStatus))
1.541 + {
1.542 + active->StartL();
1.543 + CActiveScheduler::Start();
1.544 + TEST2(active->iStatus.Int(), KErrNone);
1.545 + }
1.546 + TInt total = view->CountL();
1.547 +
1.548 + filter->SetEventType(KLogCallEventTypeUid);
1.549 +
1.550 + // Get number of call events
1.551 + if (view->SetFilterL(*filter, active->iStatus))
1.552 + {
1.553 + active->StartL();
1.554 + CActiveScheduler::Start();
1.555 + TEST2(active->iStatus.Int(), KErrNone);
1.556 + }
1.557 + TInt calls = view->CountL();
1.558 +
1.559 + filter->SetEventType(KLogDataEventTypeUid);
1.560 +
1.561 + // Get number of data events
1.562 + if (view->SetFilterL(*filter, active->iStatus))
1.563 + {
1.564 + active->StartL();
1.565 + CActiveScheduler::Start();
1.566 + TEST2(active->iStatus.Int(), KErrNone);
1.567 + }
1.568 + TInt data = view->CountL();
1.569 +
1.570 + filter->SetEventType(KLogFaxEventTypeUid);
1.571 +
1.572 + // Get number of fax events
1.573 + if (view->SetFilterL(*filter, active->iStatus))
1.574 + {
1.575 + active->StartL();
1.576 + CActiveScheduler::Start();
1.577 + TEST2(active->iStatus.Int(), KErrNone);
1.578 + }
1.579 + TInt fax = view->CountL();
1.580 +
1.581 + filter->SetEventType(KLogLbsSelfLocateEventTypeUid);
1.582 +
1.583 + // Get number of Lbs self locate events
1.584 + if (view->SetFilterL(*filter, active->iStatus))
1.585 + {
1.586 + active->StartL();
1.587 + CActiveScheduler::Start();
1.588 + TEST2(active->iStatus.Int(), KErrNone);
1.589 + }
1.590 + TInt lbsSelf = view->CountL();
1.591 +
1.592 + filter->SetEventType(KLogLbsExternalLocateEventTypeUid);
1.593 +
1.594 + // Get number of Lbs self locate events
1.595 + if (view->SetFilterL(*filter, active->iStatus))
1.596 + {
1.597 + active->StartL();
1.598 + CActiveScheduler::Start();
1.599 + TEST2(active->iStatus.Int(), KErrNone);
1.600 + }
1.601 + TInt lbsExternal = view->CountL();
1.602 +
1.603 + filter->SetEventType(KLogLbsTransmitLocationEventTypeUid);
1.604 +
1.605 + // Get number of Lbs transmit location events
1.606 + if (view->SetFilterL(*filter, active->iStatus))
1.607 + {
1.608 + active->StartL();
1.609 + CActiveScheduler::Start();
1.610 + TEST2(active->iStatus.Int(), KErrNone);
1.611 + }
1.612 + TInt lbsXmitLoc = view->CountL();
1.613 +
1.614 + filter->SetEventType(KLogLbsNetworkLocateEventTypeUid);
1.615 +
1.616 + // Get number of Lbs network locate events
1.617 + if (view->SetFilterL(*filter, active->iStatus))
1.618 + {
1.619 + active->StartL();
1.620 + CActiveScheduler::Start();
1.621 + TEST2(active->iStatus.Int(), KErrNone);
1.622 + }
1.623 + TInt lbsNetwork = view->CountL();
1.624 +
1.625 + filter->SetEventType(KLogLbsAssistanceDataEventTypeUid);
1.626 +
1.627 + // Get number of Lbs assistance data events
1.628 + if (view->SetFilterL(*filter, active->iStatus))
1.629 + {
1.630 + active->StartL();
1.631 + CActiveScheduler::Start();
1.632 + TEST2(active->iStatus.Int(), KErrNone);
1.633 + }
1.634 + TInt lbsAssistance = view->CountL();
1.635 +
1.636 + CLogEvent* event = CLogEvent::NewL();
1.637 + CleanupStack::PushL(event);
1.638 +
1.639 + event->SetEventType(KLogCallEventTypeUid);
1.640 +
1.641 + // Add two call events
1.642 + active->StartL();
1.643 + aClient.AddEvent(*event, active->iStatus);
1.644 + CActiveScheduler::Start();
1.645 + TEST2(active->iStatus.Int(), KErrNone);
1.646 +
1.647 + active->StartL();
1.648 + aClient.AddEvent(*event, active->iStatus);
1.649 + CActiveScheduler::Start();
1.650 + TEST2(active->iStatus.Int(), KErrNone);
1.651 +
1.652 + event->SetEventType(KLogDataEventTypeUid);
1.653 +
1.654 + // Add two data events
1.655 + active->StartL();
1.656 + aClient.AddEvent(*event, active->iStatus);
1.657 + CActiveScheduler::Start();
1.658 + TEST2(active->iStatus.Int(), KErrNone);
1.659 +
1.660 + active->StartL();
1.661 + aClient.AddEvent(*event, active->iStatus);
1.662 + CActiveScheduler::Start();
1.663 + TEST2(active->iStatus.Int(), KErrNone);
1.664 +
1.665 + // Filter all event types
1.666 + filter->SetEventType(KNullUid);
1.667 +
1.668 + // Get view of all events
1.669 + active->StartL();
1.670 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.671 + TEST(res);
1.672 + CActiveScheduler::Start();
1.673 + TEST2(active->iStatus.Int(), KErrNone);
1.674 +
1.675 + // Check the count is correct
1.676 + TEST2(view->CountL(), total + 4);
1.677 +
1.678 + filter->SetEventType(KLogCallEventTypeUid);
1.679 +
1.680 + // Get view of call events
1.681 + active->StartL();
1.682 + res = view->SetFilterL(*filter, active->iStatus);
1.683 + TEST(res);
1.684 + CActiveScheduler::Start();
1.685 + TEST2(active->iStatus.Int(), KErrNone);
1.686 +
1.687 + TEST2(view->CountL(), calls + 2);
1.688 +
1.689 + filter->SetEventType(KLogDataEventTypeUid);
1.690 +
1.691 + // Get view of data events
1.692 + active->StartL();
1.693 + res = view->SetFilterL(*filter, active->iStatus);
1.694 + TEST(res);
1.695 + CActiveScheduler::Start();
1.696 + TEST2(active->iStatus.Int(), KErrNone);
1.697 +
1.698 + TEST2(view->CountL(), data + 2);
1.699 +
1.700 + filter->SetEventType(KLogFaxEventTypeUid);
1.701 +
1.702 + // Get view of fax events
1.703 + if (view->SetFilterL(*filter, active->iStatus))
1.704 + {
1.705 + active->StartL();
1.706 + CActiveScheduler::Start();
1.707 + TEST2(active->iStatus.Int(), KErrNone);
1.708 + }
1.709 + TEST2(view->CountL(), fax);
1.710 +
1.711 + filter->SetEventType(KLogLbsSelfLocateEventTypeUid);
1.712 +
1.713 + // Get number of Lbs self locate events
1.714 + if (view->SetFilterL(*filter, active->iStatus))
1.715 + {
1.716 + active->StartL();
1.717 + CActiveScheduler::Start();
1.718 + TEST2(active->iStatus.Int(), KErrNone);
1.719 + }
1.720 + TEST2(view->CountL(), lbsSelf);
1.721 +
1.722 + filter->SetEventType(KLogLbsExternalLocateEventTypeUid);
1.723 +
1.724 + // Get number of Lbs self locate events
1.725 + if (view->SetFilterL(*filter, active->iStatus))
1.726 + {
1.727 + active->StartL();
1.728 + CActiveScheduler::Start();
1.729 + TEST2(active->iStatus.Int(), KErrNone);
1.730 + }
1.731 + TEST2(view->CountL(), lbsExternal);
1.732 +
1.733 + filter->SetEventType(KLogLbsTransmitLocationEventTypeUid);
1.734 +
1.735 + // Get number of Lbs transmit location events
1.736 + if (view->SetFilterL(*filter, active->iStatus))
1.737 + {
1.738 + active->StartL();
1.739 + CActiveScheduler::Start();
1.740 + TEST2(active->iStatus.Int(), KErrNone);
1.741 + }
1.742 + TEST2(view->CountL(), lbsXmitLoc);
1.743 +
1.744 + filter->SetEventType(KLogLbsNetworkLocateEventTypeUid);
1.745 +
1.746 + // Get number of Lbs network locate events
1.747 + if (view->SetFilterL(*filter, active->iStatus))
1.748 + {
1.749 + active->StartL();
1.750 + CActiveScheduler::Start();
1.751 + TEST2(active->iStatus.Int(), KErrNone);
1.752 + }
1.753 + TEST2(view->CountL(), lbsNetwork);
1.754 +
1.755 + filter->SetEventType(KLogLbsAssistanceDataEventTypeUid);
1.756 +
1.757 + // Get number of Lbs assistance data events
1.758 + if (view->SetFilterL(*filter, active->iStatus))
1.759 + {
1.760 + active->StartL();
1.761 + CActiveScheduler::Start();
1.762 + TEST2(active->iStatus.Int(), KErrNone);
1.763 + }
1.764 + TEST2(view->CountL(), lbsAssistance);
1.765 +
1.766 + // Test a non existing event type
1.767 + filter->SetEventType(TUid::Uid(0x12345678));
1.768 + res = view->SetFilterL(*filter, active->iStatus);
1.769 + TEST(!res);
1.770 + TEST2(view->CountL(), 0);
1.771 +
1.772 + CleanupStack::PopAndDestroy(4); // view, filter, event, active
1.773 + }
1.774 +
1.775 +/**
1.776 +@SYMTestCaseID SYSLIB-LOGENG-CT-0855
1.777 +@SYMTestCaseDesc Tests for CLogViewRecent::SetRecentListL() function
1.778 +@SYMTestPriority High
1.779 +@SYMTestActions Tests for the count of events,outgoing calls.
1.780 +@SYMTestExpectedResults Test must not fail
1.781 +@SYMREQ REQ0000
1.782 +*/
1.783 +LOCAL_C void TestRecentView1L(CLogClient& aClient)
1.784 + {
1.785 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0855 "));
1.786 + CLogEvent* event = CLogEvent::NewL();
1.787 + CleanupStack::PushL(event);
1.788 +
1.789 + CTestActive* active = new(ELeave)CTestActive();
1.790 + CleanupStack::PushL(active);
1.791 +
1.792 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.793 + CleanupStack::PushL(view);
1.794 +
1.795 + // Incoming
1.796 + TBuf<KLogMaxDirectionLength> buf;
1.797 + aClient.GetString(buf, R_LOG_DIR_IN);
1.798 +
1.799 + event->SetEventType(KLogCallEventTypeUid);
1.800 + event->SetDirection(buf);
1.801 +
1.802 + TInt count;
1.803 + for(count = 0; count < KTestEventNum; count++)
1.804 + {
1.805 + event->SetContact(count);
1.806 +
1.807 + active->StartL();
1.808 + aClient.AddEvent(*event, active->iStatus);
1.809 + CActiveScheduler::Start();
1.810 + TEST2(active->iStatus.Int(), KErrNone);
1.811 + }
1.812 +
1.813 + TEST2(view->CountL(), 0);
1.814 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.815 + TEST(res);
1.816 +
1.817 + // Move forward
1.818 + count = KTestEventNum;
1.819 + do {
1.820 + active->StartL();
1.821 + CActiveScheduler::Start();
1.822 + TEST2(active->iStatus.Int(), KErrNone);
1.823 +
1.824 + TEST2(view->CountL(), KTestEventNum);
1.825 + TEST2(view->RecentList(), KLogRecentIncomingCalls);
1.826 + count--;
1.827 + }
1.828 + while(view->NextL(active->iStatus));
1.829 + TEST2(count, 0);
1.830 + TEST2(view->CountL(), KTestEventNum);
1.831 +
1.832 + // Move back
1.833 + while(view->PreviousL(active->iStatus))
1.834 + {
1.835 + active->StartL();
1.836 + CActiveScheduler::Start();
1.837 + TEST2(active->iStatus.Int(), KErrNone);
1.838 +
1.839 + TEST2(view->CountL(), KTestEventNum);
1.840 + TEST2(view->RecentList(), KLogRecentIncomingCalls);
1.841 + count++;
1.842 + }
1.843 + TEST2(count, KTestEventNum - 1);
1.844 +
1.845 + active->StartL();
1.846 + res = view->FirstL(active->iStatus);
1.847 + TEST(res);
1.848 + CActiveScheduler::Start();
1.849 + TEST2(active->iStatus.Int(), KErrNone);
1.850 +
1.851 + active->StartL();
1.852 + res = view->LastL(active->iStatus);
1.853 + TEST(res);
1.854 + CActiveScheduler::Start();
1.855 + TEST2(active->iStatus.Int(), KErrNone);
1.856 +
1.857 + TEST2(view->CountL(), KTestEventNum);
1.858 +
1.859 + // Outgoing
1.860 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.861 + TEST(!res);
1.862 + count = view->CountL();
1.863 + TEST2(count, 0);
1.864 + CleanupStack::PopAndDestroy(view);
1.865 + //
1.866 + view = CLogViewRecent::NewL(aClient);
1.867 + CleanupStack::PushL(view);
1.868 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.869 + TEST(res);
1.870 + TEST2(view->CountL(), KTestEventNum);
1.871 + active->StartL();
1.872 + CActiveScheduler::Start();
1.873 + TEST2(active->iStatus.Int(), KErrNone);
1.874 +
1.875 + aClient.GetString(buf, R_LOG_DIR_OUT);
1.876 +
1.877 + event->SetEventType(KLogCallEventTypeUid);
1.878 + event->SetDirection(buf);
1.879 +
1.880 + for(count = 0; count < KTestEventNum; count++)
1.881 + {
1.882 + event->SetContact(count);
1.883 +
1.884 + active->StartL();
1.885 + aClient.AddEvent(*event, active->iStatus);
1.886 + CActiveScheduler::Start();
1.887 + TEST2(active->iStatus.Int(), KErrNone);
1.888 + }
1.889 +
1.890 + count = view->CountL();
1.891 + TEST2(count, KTestEventNum);
1.892 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.893 + TEST(res);
1.894 +
1.895 + // Move forward
1.896 + count = KTestEventNum;
1.897 + do {
1.898 + active->StartL();
1.899 + CActiveScheduler::Start();
1.900 + TEST2(active->iStatus.Int(), KErrNone);
1.901 +
1.902 + TEST2(view->CountL(), KTestEventNum);
1.903 + TEST2(view->RecentList(), KLogRecentOutgoingCalls);
1.904 + count--;
1.905 + }
1.906 + while(view->NextL(active->iStatus));
1.907 + TEST2(count, 0);
1.908 + TEST2(view->CountL(), KTestEventNum);
1.909 +
1.910 + // Move back
1.911 + while(view->PreviousL(active->iStatus))
1.912 + {
1.913 + active->StartL();
1.914 + CActiveScheduler::Start();
1.915 + TEST2(active->iStatus.Int(), KErrNone);
1.916 +
1.917 + TEST2(view->CountL(), KTestEventNum);
1.918 + TEST2(view->RecentList(), KLogRecentOutgoingCalls);
1.919 + count++;
1.920 + }
1.921 + TEST2(count, KTestEventNum - 1);
1.922 +
1.923 + active->StartL();
1.924 + res = view->FirstL(active->iStatus);
1.925 + TEST(res);
1.926 + CActiveScheduler::Start();
1.927 + TEST2(active->iStatus.Int(), KErrNone);
1.928 +
1.929 + active->StartL();
1.930 + res = view->LastL(active->iStatus);
1.931 + TEST(res);
1.932 + CActiveScheduler::Start();
1.933 + TEST2(active->iStatus.Int(), KErrNone);
1.934 +
1.935 + // Missed
1.936 + aClient.GetString(buf, R_LOG_DIR_MISSED);
1.937 +
1.938 + event->SetEventType(KLogCallEventTypeUid);
1.939 + event->SetDirection(buf);
1.940 +
1.941 + TEST2(view->CountL(), KTestEventNum);
1.942 + res = view->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.943 + TEST(!res);
1.944 + TEST2(view->CountL(), 0);
1.945 +
1.946 + for(count = 0; count < KTestEventNum; count++)
1.947 + {
1.948 + event->SetContact(count);
1.949 +
1.950 + active->StartL();
1.951 + aClient.AddEvent(*event, active->iStatus);
1.952 + CActiveScheduler::Start();
1.953 + TEST2(active->iStatus.Int(), KErrNone);
1.954 +
1.955 + // Test INC123066 - LogView not updated if log count is zero at
1.956 + // time of SetFilterL.
1.957 + TEST2(view->CountL(), count+1);
1.958 + }
1.959 +
1.960 +
1.961 + // Move forward
1.962 + count = KTestEventNum;
1.963 + while(view->NextL(active->iStatus))
1.964 + {
1.965 + active->StartL();
1.966 + CActiveScheduler::Start();
1.967 + TEST2(active->iStatus.Int(), KErrNone);
1.968 +
1.969 + TEST2(view->CountL(), KTestEventNum);
1.970 + TEST2(view->RecentList(), KLogRecentMissedCalls);
1.971 + count--;
1.972 + }
1.973 + TEST2(count, 0);
1.974 +
1.975 + // Move back
1.976 + while(view->PreviousL(active->iStatus))
1.977 + {
1.978 + active->StartL();
1.979 + CActiveScheduler::Start();
1.980 + TEST2(active->iStatus.Int(), KErrNone);
1.981 +
1.982 + TEST2(view->CountL(), KTestEventNum);
1.983 + TEST2(view->RecentList(), KLogRecentMissedCalls);
1.984 + count++;
1.985 + }
1.986 + TEST2(count, KTestEventNum - 1);
1.987 +
1.988 + active->StartL();
1.989 + res = view->FirstL(active->iStatus);
1.990 + TEST(res);
1.991 + CActiveScheduler::Start();
1.992 + TEST2(active->iStatus.Int(), KErrNone);
1.993 +
1.994 + active->StartL();
1.995 + res = view->LastL(active->iStatus);
1.996 + TEST(res);
1.997 + CActiveScheduler::Start();
1.998 + TEST2(active->iStatus.Int(), KErrNone);
1.999 +
1.1000 + // All
1.1001 + TEST2(view->CountL(), KTestEventNum);
1.1002 + res = view->SetRecentListL(KLogNullRecentList, active->iStatus);
1.1003 + TEST(res);
1.1004 +
1.1005 + // Move forward
1.1006 + count = KTestEventNum * 3;
1.1007 + TEST2(view->CountL(), count);
1.1008 + do {
1.1009 + active->StartL();
1.1010 + CActiveScheduler::Start();
1.1011 + TEST2(active->iStatus.Int(), KErrNone);
1.1012 +
1.1013 + TEST2(view->CountL(), KTestEventNum * 3);
1.1014 + count--;
1.1015 + }
1.1016 + while(view->NextL(active->iStatus));
1.1017 + TEST2(count, 0);
1.1018 +
1.1019 + // Move back
1.1020 + while(view->PreviousL(active->iStatus))
1.1021 + {
1.1022 + active->StartL();
1.1023 + CActiveScheduler::Start();
1.1024 + TEST2(active->iStatus.Int(), KErrNone);
1.1025 +
1.1026 + TEST2(view->CountL(), KTestEventNum * 3);
1.1027 + count++;
1.1028 + }
1.1029 + TEST2(count, KTestEventNum * 3 - 1);
1.1030 +
1.1031 + active->StartL();
1.1032 + res = view->FirstL(active->iStatus);
1.1033 + TEST(res);
1.1034 + CActiveScheduler::Start();
1.1035 + TEST2(active->iStatus.Int(), KErrNone);
1.1036 +
1.1037 + active->StartL();
1.1038 + res = view->LastL(active->iStatus);
1.1039 + TEST(res);
1.1040 + CActiveScheduler::Start();
1.1041 + TEST2(active->iStatus.Int(), KErrNone);
1.1042 +
1.1043 + CleanupStack::PopAndDestroy(3); // view, active, event
1.1044 + theLog.Write(_L8("Test 3.1 OK\n"));
1.1045 + }
1.1046 +
1.1047 +/**
1.1048 +@SYMTestCaseID SYSLIB-LOGENG-CT-0856
1.1049 +@SYMTestCaseDesc Tests for CLogViewRecent::SetRecentListL(),DuplicatesL() functions
1.1050 +@SYMTestPriority High
1.1051 +@SYMTestActions Tests for the count of events in the log
1.1052 +@SYMTestExpectedResults Test must not fail
1.1053 +@SYMREQ REQ0000
1.1054 +*/
1.1055 +LOCAL_C void TestRecentView2L(CLogClient& aClient)
1.1056 + {
1.1057 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0856 "));
1.1058 + TInt count;
1.1059 +
1.1060 + CLogEvent* event = CLogEvent::NewL();
1.1061 + CleanupStack::PushL(event);
1.1062 +
1.1063 + CTestActive* active = new(ELeave)CTestActive();
1.1064 + CleanupStack::PushL(active);
1.1065 +
1.1066 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.1067 + CleanupStack::PushL(view);
1.1068 +
1.1069 + TEST2(view->CountL(), 0);
1.1070 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1071 + TEST(res);
1.1072 + active->StartL();
1.1073 + CActiveScheduler::Start();
1.1074 + TEST2(active->iStatus.Int(), KErrNone);
1.1075 + count = view->CountL();
1.1076 + TEST2(count, KTestEventNum);
1.1077 +
1.1078 + aClient.ClearLog(KLogRecentIncomingCalls, active->iStatus);
1.1079 + active->StartL();
1.1080 + CActiveScheduler::Start();
1.1081 + TEST2(active->iStatus.Int(), KErrNone);
1.1082 +
1.1083 + count = view->CountL();
1.1084 + TEST2(count, 0);
1.1085 +
1.1086 + CleanupStack::PopAndDestroy(view);
1.1087 + view = CLogViewRecent::NewL(aClient);
1.1088 + CleanupStack::PushL(view);
1.1089 +
1.1090 +
1.1091 + // Incoming
1.1092 + TBuf<KLogMaxDirectionLength> buf;
1.1093 + aClient.GetString(buf, R_LOG_DIR_IN);
1.1094 +
1.1095 + event->SetEventType(KLogCallEventTypeUid);
1.1096 + event->SetDirection(buf);
1.1097 +
1.1098 + // All fields are null, they should all be duplicates
1.1099 + for(count = 0; count < KTestEventNum; count++)
1.1100 + {
1.1101 + active->StartL();
1.1102 + aClient.AddEvent(*event, active->iStatus);
1.1103 + CActiveScheduler::Start();
1.1104 + TEST2(active->iStatus.Int(), KErrNone);
1.1105 + }
1.1106 +
1.1107 + TEST2(view->CountL(), 0);
1.1108 +
1.1109 + // Move forward
1.1110 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1111 + TEST(res);
1.1112 + active->StartL();
1.1113 + CActiveScheduler::Start();
1.1114 + TEST2(active->iStatus.Int(), KErrNone);
1.1115 + TEST2(view->CountL(), 1);
1.1116 +
1.1117 + CLogViewDuplicate* dView = CLogViewDuplicate::NewL(aClient);
1.1118 + CleanupStack::PushL(dView);
1.1119 +
1.1120 + res = view->DuplicatesL(*dView, active->iStatus);
1.1121 + TEST(res);
1.1122 + active->StartL();
1.1123 + CActiveScheduler::Start();
1.1124 + TEST2(active->iStatus.Int(), KErrNone);
1.1125 + TEST2(dView->CountL(), KTestEventNum - 1);
1.1126 +
1.1127 + CleanupStack::PopAndDestroy(4); // view, active, event, dView
1.1128 + }
1.1129 +
1.1130 +/**
1.1131 +@SYMTestCaseID SYSLIB-LOGENG-CT-0857
1.1132 +@SYMTestCaseDesc Tests for CLogViewRecent::RemoveL() functions
1.1133 +@SYMTestPriority High
1.1134 +@SYMTestActions Add the recently view events to the view.Remove the items and check for the count.
1.1135 +@SYMTestExpectedResults Test must not fail
1.1136 +@SYMREQ REQ0000
1.1137 +*/
1.1138 +LOCAL_C void TestRecentRemove1L(CLogClient& aClient)
1.1139 + {
1.1140 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0857 "));
1.1141 + CTestActive* active = new(ELeave)CTestActive();
1.1142 + CleanupStack::PushL(active);
1.1143 +
1.1144 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.1145 + CleanupStack::PushL(view);
1.1146 +
1.1147 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1148 + TEST(res);
1.1149 + active->StartL();
1.1150 + CActiveScheduler::Start();
1.1151 + TEST2(active->iStatus.Int(), KErrNone);
1.1152 +
1.1153 + TInt count = view->CountL();
1.1154 +
1.1155 + while(view->RemoveL(active->iStatus))
1.1156 + {
1.1157 + TEST2(view->CountL(), count - 1);
1.1158 + count = view->CountL();
1.1159 +
1.1160 + active->StartL();
1.1161 + CActiveScheduler::Start();
1.1162 + TEST2(active->iStatus.Int(), KErrNone);
1.1163 + }
1.1164 + TEST2(view->CountL(), 0);
1.1165 +
1.1166 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.1167 + TEST(res);
1.1168 + active->StartL();
1.1169 + CActiveScheduler::Start();
1.1170 + TEST2(active->iStatus.Int(), KErrNone);
1.1171 + TEST2(view->CountL(), KTestEventNum);
1.1172 +
1.1173 + aClient.ClearLog(KLogRecentOutgoingCalls, active->iStatus);
1.1174 + active->StartL();
1.1175 + CActiveScheduler::Start();
1.1176 + TEST2(active->iStatus.Int(), KErrNone);
1.1177 + TEST2(view->CountL(), 0);
1.1178 +
1.1179 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.1180 + TEST(!res);
1.1181 +
1.1182 + res = view->SetRecentListL(KLogNullRecentList, active->iStatus);
1.1183 + TEST(res);
1.1184 + active->StartL();
1.1185 + CActiveScheduler::Start();
1.1186 + TEST2(active->iStatus.Int(), KErrNone);
1.1187 + TEST2(view->CountL(), KTestEventNum);
1.1188 +
1.1189 + aClient.ClearLog(KLogNullRecentList, active->iStatus);
1.1190 + active->StartL();
1.1191 + CActiveScheduler::Start();
1.1192 + TEST2(active->iStatus.Int(), KErrNone);
1.1193 +
1.1194 + res = view->SetRecentListL(KLogNullRecentList, active->iStatus);
1.1195 + TEST(!res);
1.1196 + TEST2(view->CountL(), 0);
1.1197 +
1.1198 + CleanupStack::PopAndDestroy(2); // view, active
1.1199 + }
1.1200 +
1.1201 +/**
1.1202 +@SYMTestCaseID SYSLIB-LOGENG-CT-0858
1.1203 +@SYMTestCaseDesc Tests for CLogViewRecent::RemoveL() functions
1.1204 +@SYMTestPriority High
1.1205 +@SYMTestActions Add the recently view events to the two logviewrecents.Remove the items and check for the count of the first logview.
1.1206 +@SYMTestExpectedResults Test must not fail
1.1207 +@SYMREQ REQ0000
1.1208 +*/
1.1209 +LOCAL_C void TestRecentRemove2L(CLogClient& aClient)
1.1210 + {
1.1211 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0858 "));
1.1212 + CLogEvent* event = CLogEvent::NewL();
1.1213 + CleanupStack::PushL(event);
1.1214 +
1.1215 + CTestActive* active = new(ELeave)CTestActive();
1.1216 + CleanupStack::PushL(active);
1.1217 +
1.1218 + CLogViewRecent* view1 = CLogViewRecent::NewL(aClient);
1.1219 + CleanupStack::PushL(view1);
1.1220 +
1.1221 + // Incoming
1.1222 + TBuf<KLogMaxDirectionLength> buf;
1.1223 + aClient.GetString(buf, R_LOG_DIR_IN);
1.1224 +
1.1225 + event->SetEventType(KLogCallEventTypeUid);
1.1226 + event->SetDirection(buf);
1.1227 +
1.1228 + TInt count;
1.1229 + for(count = 0; count < KTestEventNum; count++)
1.1230 + {
1.1231 + event->SetContact(count);
1.1232 +
1.1233 + active->StartL();
1.1234 + aClient.AddEvent(*event, active->iStatus);
1.1235 + CActiveScheduler::Start();
1.1236 + TEST2(active->iStatus.Int(), KErrNone);
1.1237 + }
1.1238 +
1.1239 + // Create another invalid view and remove an event using it
1.1240 + CLogViewRecent* view2 = CLogViewRecent::NewL(aClient);
1.1241 + CleanupStack::PushL(view2);
1.1242 +
1.1243 + TEST2(view1->CountL(), 0);
1.1244 + TBool res = view1->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1245 + TEST(res);
1.1246 + TEST2(view1->CountL(), KTestEventNum);
1.1247 +
1.1248 + do
1.1249 + {
1.1250 + active->StartL();
1.1251 + CActiveScheduler::Start();
1.1252 + TEST2(active->iStatus.Int(), KErrNone);
1.1253 + view2->RemoveL(view1->Event().Id());
1.1254 + }
1.1255 + while(view1->NextL(active->iStatus));
1.1256 +
1.1257 + aClient.ClearLog(KLogRecentIncomingCalls, active->iStatus);
1.1258 + active->StartL();
1.1259 + CActiveScheduler::Start();
1.1260 + TEST2(active->iStatus.Int(), KErrNone);
1.1261 + TEST2(view1->CountL(), 0);
1.1262 +
1.1263 + CleanupStack::PopAndDestroy(4); // view2, view1, active, event
1.1264 + }
1.1265 +
1.1266 +/**
1.1267 +@SYMTestCaseID SYSLIB-LOGENG-CT-0859
1.1268 +@SYMTestCaseDesc Tests for CLogViewDuplicate::SetRecentListL(),DuplicatesL() functions
1.1269 +@SYMTestPriority High
1.1270 +@SYMTestActions Tests for the count of events and the event ID
1.1271 +@SYMTestExpectedResults Test must not fail
1.1272 +@SYMREQ REQ0000
1.1273 +*/
1.1274 +LOCAL_C void TestDuplicateViewL(CLogClient& aClient)
1.1275 + {
1.1276 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0859 "));
1.1277 + CTestActive* active = new(ELeave)CTestActive();
1.1278 + CleanupStack::PushL(active);
1.1279 +
1.1280 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.1281 + CleanupStack::PushL(view);
1.1282 +
1.1283 + CLogViewDuplicate* dView = CLogViewDuplicate::NewL(aClient);
1.1284 + CleanupStack::PushL(dView);
1.1285 +
1.1286 + TEST2(dView->CountL(), 0);
1.1287 +
1.1288 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1289 + TEST(!res);
1.1290 + TEST2(view->CountL(), 0);
1.1291 +
1.1292 + res = view->DuplicatesL(*dView, active->iStatus);
1.1293 + TEST(!res);
1.1294 + TEST2(dView->CountL(), 0);
1.1295 +
1.1296 + // Incoming
1.1297 + TBuf<KLogMaxDirectionLength> incoming;
1.1298 + aClient.GetString(incoming, R_LOG_DIR_IN);
1.1299 +
1.1300 + CLogEvent* event = CLogEvent::NewL();
1.1301 + CleanupStack::PushL(event);
1.1302 +
1.1303 + event->SetEventType(KLogCallEventTypeUid);
1.1304 + event->SetDirection(incoming);
1.1305 + event->SetRemoteParty(KTestRemoteParty);
1.1306 + event->SetContact(KTestContact);
1.1307 + event->SetNumber(KTestNumber);
1.1308 +
1.1309 + active->StartL();
1.1310 + aClient.AddEvent(*event, active->iStatus);
1.1311 + CActiveScheduler::Start();
1.1312 + TEST2(active->iStatus.Int(), KErrNone);
1.1313 +
1.1314 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1315 + TEST(res);
1.1316 + active->StartL();
1.1317 + CActiveScheduler::Start();
1.1318 + TEST2(active->iStatus.Int(), KErrNone);
1.1319 +
1.1320 + TEST2(view->CountL(), 1);
1.1321 + res = view->FirstL(active->iStatus);
1.1322 + TEST(res);
1.1323 + active->StartL();
1.1324 + CActiveScheduler::Start();
1.1325 + TEST2(active->iStatus.Int(), KErrNone);
1.1326 + TEST2(view->Event().Id(), event->Id());
1.1327 +
1.1328 + TEST2(dView->CountL(), 0);
1.1329 +
1.1330 + event->SetRemoteParty(KTestRemoteParty);
1.1331 + event->SetContact(KTestContact);
1.1332 + event->SetNumber(KNullDesC);
1.1333 +
1.1334 + //Add event with Number field set to NULL
1.1335 + active->StartL();
1.1336 + aClient.AddEvent(*event, active->iStatus);
1.1337 + CActiveScheduler::Start();
1.1338 + TEST2(active->iStatus.Int(), KErrNone);
1.1339 +
1.1340 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1341 + TEST(res);
1.1342 + active->StartL();
1.1343 + CActiveScheduler::Start();
1.1344 + TEST2(active->iStatus.Int(), KErrNone);
1.1345 +
1.1346 + TEST2(view->CountL(), 2);
1.1347 + res = view->FirstL(active->iStatus);
1.1348 + TEST(res);
1.1349 + active->StartL();
1.1350 + CActiveScheduler::Start();
1.1351 + TEST2(active->iStatus.Int(), KErrNone);
1.1352 + TEST2(view->Event().Id(), event->Id());
1.1353 +
1.1354 + res = view->DuplicatesL(*dView, active->iStatus);
1.1355 + TEST(!res);
1.1356 +
1.1357 + TEST2(dView->CountL(), 0);
1.1358 +
1.1359 + event->SetRemoteParty(KTestRemoteParty);
1.1360 + event->SetContact(KLogNullContactId);
1.1361 + event->SetNumber(KNullDesC);
1.1362 +
1.1363 + //Add event with Number field set to NULL & Contact set to -1
1.1364 + active->StartL();
1.1365 + aClient.AddEvent(*event, active->iStatus);
1.1366 + CActiveScheduler::Start();
1.1367 + TEST2(active->iStatus.Int(), KErrNone);
1.1368 +
1.1369 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1370 + TEST(res);
1.1371 + active->StartL();
1.1372 + CActiveScheduler::Start();
1.1373 + TEST2(active->iStatus.Int(), KErrNone);
1.1374 +
1.1375 + TEST2(view->CountL(), 3);
1.1376 + res = view->FirstL(active->iStatus);
1.1377 + TEST(res);
1.1378 + active->StartL();
1.1379 + CActiveScheduler::Start();
1.1380 + TEST2(active->iStatus.Int(), KErrNone);
1.1381 + TEST2(view->Event().Id(), event->Id());
1.1382 +
1.1383 + res = view->DuplicatesL(*dView, active->iStatus);
1.1384 + TEST(!res);
1.1385 +
1.1386 + TEST2(dView->CountL(), 0);
1.1387 +
1.1388 + event->SetRemoteParty(KNullDesC);
1.1389 + event->SetContact(KLogNullContactId);
1.1390 + event->SetNumber(KNullDesC);
1.1391 +
1.1392 + //Add event with Number, Remote Party field set to NULL & Contact set to -1
1.1393 + active->StartL();
1.1394 + aClient.AddEvent(*event, active->iStatus);
1.1395 + CActiveScheduler::Start();
1.1396 + TEST2(active->iStatus.Int(), KErrNone);
1.1397 +
1.1398 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1399 + TEST(res);
1.1400 + active->StartL();
1.1401 + CActiveScheduler::Start();
1.1402 + TEST2(active->iStatus.Int(), KErrNone);
1.1403 +
1.1404 + TEST2(view->CountL(), 4);
1.1405 +
1.1406 + res = view->DuplicatesL(*dView, active->iStatus);
1.1407 + TEST(!res);
1.1408 +
1.1409 + TEST2(dView->CountL(), 0);
1.1410 +
1.1411 + TLogId lastId = event->Id();
1.1412 +
1.1413 + //Add event with Number, Remote Party field set to NULL & Contact set to -1
1.1414 + active->StartL();
1.1415 + aClient.AddEvent(*event, active->iStatus);
1.1416 + CActiveScheduler::Start();
1.1417 + TEST2(active->iStatus.Int(), KErrNone);
1.1418 +
1.1419 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1420 + TEST(res);
1.1421 + active->StartL();
1.1422 + CActiveScheduler::Start();
1.1423 + TEST2(active->iStatus.Int(), KErrNone);
1.1424 +
1.1425 + TEST2(view->CountL(), 4);
1.1426 +
1.1427 + res = view->DuplicatesL(*dView, active->iStatus);
1.1428 + TEST(res);
1.1429 + active->StartL();
1.1430 + CActiveScheduler::Start();
1.1431 + TEST2(active->iStatus.Int(), KErrNone);
1.1432 +
1.1433 + TEST2(dView->CountL(), 1);
1.1434 + TEST2(dView->Event().Id(), lastId);
1.1435 +
1.1436 + CleanupStack::PopAndDestroy(4); // event, dView, view, active
1.1437 + }
1.1438 +
1.1439 +/**
1.1440 +@SYMTestCaseID SYSLIB-LOGENG-CT-0860
1.1441 +@SYMTestCaseDesc Tests for CLogViewDuplicate::RemoveL() functions
1.1442 +@SYMTestPriority High
1.1443 +@SYMTestActions Tests for removing the events and test for the count
1.1444 +@SYMTestExpectedResults Test must not fail
1.1445 +@SYMREQ REQ0000
1.1446 +*/
1.1447 +LOCAL_C void TestDuplicateRemoveL(CLogClient& aClient)
1.1448 + {
1.1449 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0860 "));
1.1450 + CTestActive* active = new(ELeave)CTestActive();
1.1451 + CleanupStack::PushL(active);
1.1452 +
1.1453 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.1454 + CleanupStack::PushL(view);
1.1455 +
1.1456 + CLogViewDuplicate* dView = CLogViewDuplicate::NewL(aClient);
1.1457 + CleanupStack::PushL(dView);
1.1458 +
1.1459 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1460 + TEST(res);
1.1461 + active->StartL();
1.1462 + CActiveScheduler::Start();
1.1463 + TEST2(active->iStatus.Int(), KErrNone);
1.1464 +
1.1465 + //The incoming call list should have count as 4. These calls were added in
1.1466 + //...the previous function named TestDuplicateViewL()
1.1467 + TEST2(view->CountL(), 4);
1.1468 +
1.1469 + res = view->DuplicatesL(*dView, active->iStatus);
1.1470 + TEST(res);
1.1471 + active->StartL();
1.1472 + CActiveScheduler::Start();
1.1473 + TEST2(active->iStatus.Int(), KErrNone);
1.1474 +
1.1475 + TLogId id = dView->Event().Id();
1.1476 + TEST2(dView->CountL(), 1);
1.1477 +
1.1478 + res = dView->RemoveL(active->iStatus);
1.1479 + TEST(!res);
1.1480 +
1.1481 + TEST2(dView->CountL(), 0);
1.1482 +
1.1483 + res = dView->RemoveL(active->iStatus);
1.1484 + TEST(!res);
1.1485 + TEST2(dView->CountL(), 0);
1.1486 +
1.1487 + TEST2(view->CountL(), 4);
1.1488 +
1.1489 + CleanupStack::PopAndDestroy(3); // dView, view, active
1.1490 + }
1.1491 +
1.1492 +/**
1.1493 +@SYMTestCaseID SYSLIB-LOGENG-CT-0861
1.1494 +@SYMTestCaseDesc Tests for purging on log engine
1.1495 +@SYMTestPriority High
1.1496 +@SYMTestActions Tests for changing the log engine configuration,add event and test for retrieving them back.
1.1497 + Set up a purge which clears the log and reset the log configuration
1.1498 +@SYMTestExpectedResults Test must not fail
1.1499 +@SYMREQ REQ0000
1.1500 +*/
1.1501 +LOCAL_C void TestPurgeOnSetup1L(CLogClient& aClient)
1.1502 + {
1.1503 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0861 "));
1.1504 + CTestActive* active = new(ELeave)CTestActive();
1.1505 + CleanupStack::PushL(active);
1.1506 +
1.1507 + User::After(0x100000);
1.1508 +
1.1509 + TTime now;
1.1510 + now.UniversalTime();
1.1511 +
1.1512 + // Clear all the events
1.1513 + active->StartL();
1.1514 + aClient.ClearLog(now, active->iStatus);
1.1515 + CActiveScheduler::Start();
1.1516 + TEST2(active->iStatus.Int(), KErrNone);
1.1517 +
1.1518 + CLogEvent* event = CLogEvent::NewL();
1.1519 + CleanupStack::PushL(event);
1.1520 + event->SetEventType(KLogCallEventTypeUid);
1.1521 +
1.1522 + TLogConfig config;
1.1523 +
1.1524 + // Get log configuration
1.1525 + active->StartL();
1.1526 + aClient.GetConfig(config, active->iStatus);
1.1527 + CActiveScheduler::Start();
1.1528 + TEST2(active->iStatus.Int(), KErrNone);
1.1529 +
1.1530 + // Set the maximum log age
1.1531 + TInt oldAge = config.iMaxEventAge;
1.1532 + config.iMaxEventAge = 10; // 10 seconds!
1.1533 +
1.1534 + // Change the log engine config
1.1535 + active->StartL();
1.1536 + aClient.ChangeConfig(config, active->iStatus);
1.1537 + CActiveScheduler::Start();
1.1538 + TEST2(active->iStatus.Int(), KErrNone);
1.1539 +
1.1540 + active->StartL();
1.1541 + aClient.AddEvent(*event, active->iStatus);
1.1542 + CActiveScheduler::Start();
1.1543 + TEST2(active->iStatus.Int(), KErrNone);
1.1544 +
1.1545 + // Check that the event can be retrieved
1.1546 + active->StartL();
1.1547 + aClient.GetEvent(*event, active->iStatus);
1.1548 + CActiveScheduler::Start();
1.1549 + TEST2(active->iStatus.Int(), KErrNone);
1.1550 +
1.1551 + // Wait for 15 seconds (just to be safe)
1.1552 + User::After(15000000);
1.1553 +
1.1554 + // Check that the event can be retrieved
1.1555 + active->StartL();
1.1556 + aClient.GetEvent(*event, active->iStatus);
1.1557 + CActiveScheduler::Start();
1.1558 + TEST2(active->iStatus.Int(), KErrNone);
1.1559 +
1.1560 + // Check that the event can still be retrieved
1.1561 + active->StartL();
1.1562 + aClient.GetEvent(*event, active->iStatus);
1.1563 + CActiveScheduler::Start();
1.1564 + TEST2(active->iStatus.Int(), KErrNone);
1.1565 +
1.1566 + // Check that the event can still be retrieved
1.1567 + active->StartL();
1.1568 + aClient.GetEvent(*event, active->iStatus);
1.1569 + CActiveScheduler::Start();
1.1570 + TEST2(active->iStatus.Int(), KErrNone);
1.1571 +
1.1572 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.1573 + CleanupStack::PushL(view);
1.1574 +
1.1575 + CLogFilter* filter = CLogFilter::NewL();
1.1576 + CleanupStack::PushL(filter);
1.1577 +
1.1578 + // Setup a view which should purge the event - hence no events in view!
1.1579 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.1580 + TEST(!res);
1.1581 +
1.1582 + // Reset the config
1.1583 + config.iMaxEventAge = oldAge;
1.1584 +
1.1585 + // Change the log engine config
1.1586 + active->StartL();
1.1587 + aClient.ChangeConfig(config, active->iStatus);
1.1588 + CActiveScheduler::Start();
1.1589 + TEST2(active->iStatus.Int(), KErrNone);
1.1590 +
1.1591 + CleanupStack::PopAndDestroy(4); // filter, view, active, event
1.1592 + }
1.1593 +
1.1594 +/**
1.1595 +@SYMTestCaseID SYSLIB-LOGENG-CT-0862
1.1596 +@SYMTestCaseDesc Tests for purging on log engine
1.1597 +@SYMTestPriority High
1.1598 +@SYMTestActions Clear the events from the log,set the log engine age to maximum.Change the configuration,and test adding and retrieving the events.
1.1599 + Set up a purge which clears the log and reset the log configuration
1.1600 +@SYMTestExpectedResults Test must not fail
1.1601 +@SYMREQ REQ0000
1.1602 +*/
1.1603 +LOCAL_C void TestPurgeOnSetup2L(CLogClient& aClient)
1.1604 + {
1.1605 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0862 "));
1.1606 + CTestActive* active1 = new(ELeave)CTestActive();
1.1607 + CleanupStack::PushL(active1);
1.1608 +
1.1609 + CTestActive* active2 = new(ELeave)CTestActive();
1.1610 + CleanupStack::PushL(active2);
1.1611 +
1.1612 + User::After(0x100000);
1.1613 +
1.1614 + TTime now;
1.1615 + now.UniversalTime();
1.1616 +
1.1617 + // Clear all the events
1.1618 + active1->StartL();
1.1619 + aClient.ClearLog(now, active1->iStatus);
1.1620 + CActiveScheduler::Start();
1.1621 + TEST2(active1->iStatus.Int(), KErrNone);
1.1622 +
1.1623 + CLogEvent* event = CLogEvent::NewL();
1.1624 + CleanupStack::PushL(event);
1.1625 + event->SetEventType(KLogCallEventTypeUid);
1.1626 +
1.1627 + TLogConfig config;
1.1628 +
1.1629 + // Get log configuration
1.1630 + active1->StartL();
1.1631 + aClient.GetConfig(config, active1->iStatus);
1.1632 + CActiveScheduler::Start();
1.1633 + TEST2(active1->iStatus.Int(), KErrNone);
1.1634 +
1.1635 + // Set the maximum log age
1.1636 + TInt oldAge = config.iMaxEventAge;
1.1637 + config.iMaxEventAge = 10; // 10 seconds!
1.1638 +
1.1639 + // Change the log engine config
1.1640 + active1->StartL();
1.1641 + aClient.ChangeConfig(config, active1->iStatus);
1.1642 + CActiveScheduler::Start();
1.1643 + TEST2(active1->iStatus.Int(), KErrNone);
1.1644 +
1.1645 + active1->StartL();
1.1646 + aClient.AddEvent(*event, active1->iStatus);
1.1647 + CActiveScheduler::Start();
1.1648 + TEST2(active1->iStatus.Int(), KErrNone);
1.1649 +
1.1650 + // Check that the event can be retrieved
1.1651 + active1->StartL();
1.1652 + aClient.GetEvent(*event, active1->iStatus);
1.1653 + CActiveScheduler::Start();
1.1654 + TEST2(active1->iStatus.Int(), KErrNone);
1.1655 +
1.1656 + // Wait for 15 seconds (just to be safe)
1.1657 + User::After(15000000);
1.1658 +
1.1659 + // Check that the event can be retrieved
1.1660 + active1->StartL();
1.1661 + aClient.GetEvent(*event, active1->iStatus);
1.1662 + CActiveScheduler::Start();
1.1663 + TEST2(active1->iStatus.Int(), KErrNone);
1.1664 +
1.1665 + // Check that the event can still be retrieved
1.1666 + active1->StartL();
1.1667 + aClient.GetEvent(*event, active1->iStatus);
1.1668 + CActiveScheduler::Start();
1.1669 + TEST2(active1->iStatus.Int(), KErrNone);
1.1670 +
1.1671 + // Check that the event can still be retrieved
1.1672 + active1->StartL();
1.1673 + aClient.GetEvent(*event, active1->iStatus);
1.1674 + CActiveScheduler::Start();
1.1675 + TEST2(active1->iStatus.Int(), KErrNone);
1.1676 +
1.1677 + CLogViewEvent* view1 = CLogViewEvent::NewL(aClient);
1.1678 + CleanupStack::PushL(view1);
1.1679 +
1.1680 + CLogViewEvent* view2 = CLogViewEvent::NewL(aClient);
1.1681 + CleanupStack::PushL(view2);
1.1682 +
1.1683 + CLogFilter* filter = CLogFilter::NewL();
1.1684 + CleanupStack::PushL(filter);
1.1685 +
1.1686 + // Setup a view which should purge the event - hence no events in view!
1.1687 + TBool res = view1->SetFilterL(*filter, active1->iStatus);
1.1688 + TEST(!res);
1.1689 + res = view2->SetFilterL(*filter, active2->iStatus);
1.1690 + TEST(!res);
1.1691 +
1.1692 + // Reset the config
1.1693 + config.iMaxEventAge = oldAge;
1.1694 +
1.1695 + // Change the log engine config
1.1696 + active1->StartL();
1.1697 + aClient.ChangeConfig(config, active1->iStatus);
1.1698 + CActiveScheduler::Start();
1.1699 + TEST2(active1->iStatus.Int(), KErrNone);
1.1700 +
1.1701 + CleanupStack::PopAndDestroy(6); // filter, view1, view2, active1, active2, event
1.1702 + }
1.1703 +
1.1704 +/**
1.1705 +@SYMTestCaseID SYSLIB-LOGENG-CT-0863
1.1706 +@SYMTestCaseDesc Tests for purge on CLogViewRecent
1.1707 +@SYMTestPriority High
1.1708 +@SYMTestActions Set the log engine maximum log size and recent log size.Change the configuration and add events to the log
1.1709 + Tests the count to be less than or equal to recent logsize.
1.1710 +@SYMTestExpectedResults Test must not fail
1.1711 +@SYMREQ REQ0000
1.1712 +*/
1.1713 +LOCAL_C void TestViewPurgeL(CLogClient& aClient)
1.1714 + {
1.1715 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0863 "));
1.1716 + CTestActive* active = new(ELeave)CTestActive();
1.1717 + CleanupStack::PushL(active);
1.1718 +
1.1719 + TLogConfig config;
1.1720 +
1.1721 + aClient.GetConfig(config, active->iStatus);
1.1722 + active->StartL();
1.1723 + CActiveScheduler::Start();
1.1724 + TEST2(active->iStatus.Int(), KErrNone);
1.1725 + TEST2(config.iMaxLogSize, 1000);
1.1726 +
1.1727 + config.iMaxLogSize = 2000;
1.1728 + config.iMaxRecentLogSize = 20;
1.1729 +
1.1730 + aClient.ChangeConfig(config, active->iStatus);
1.1731 + active->StartL();
1.1732 + CActiveScheduler::Start();
1.1733 + TEST2(active->iStatus.Int(), KErrNone);
1.1734 +
1.1735 + CLogEvent* event = CLogEvent::NewL();
1.1736 + CleanupStack::PushL(event);
1.1737 +
1.1738 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.1739 + CleanupStack::PushL(view);
1.1740 +
1.1741 + // Incoming
1.1742 + TBuf<KLogMaxDirectionLength> buf;
1.1743 + aClient.GetString(buf, R_LOG_DIR_IN);
1.1744 +
1.1745 + event->SetEventType(KLogCallEventTypeUid);
1.1746 + event->SetDirection(buf);
1.1747 +
1.1748 + for(TInt count = 0; count < config.iMaxRecentLogSize * 2; count++)
1.1749 + {
1.1750 + event->SetContact(count);
1.1751 +
1.1752 + active->StartL();
1.1753 + aClient.AddEvent(*event, active->iStatus);
1.1754 + CActiveScheduler::Start();
1.1755 + TEST2(active->iStatus.Int(), KErrNone);
1.1756 +
1.1757 + TBool res = view->SetRecentListL(KLogNullRecentList, active->iStatus);
1.1758 + TEST(res);
1.1759 + active->StartL();
1.1760 + CActiveScheduler::Start();
1.1761 + TEST2(active->iStatus.Int(), KErrNone);
1.1762 + TEST(view->CountL() <= config.iMaxRecentLogSize);
1.1763 + }
1.1764 +
1.1765 + CleanupStack::PopAndDestroy(3); // active, event, view
1.1766 + }
1.1767 +
1.1768 +/**
1.1769 +@SYMTestCaseID SYSLIB-LOGENG-CT-0864
1.1770 +@SYMTestCaseDesc Tests for the functionality of CLogViewDuplicate class
1.1771 +@SYMTestPriority High
1.1772 +@SYMTestActions Tests for clearing the duplicate events
1.1773 +@SYMTestExpectedResults Test must not fail
1.1774 +@SYMREQ REQ0000
1.1775 +*/
1.1776 +LOCAL_C void TestClearDuplicatesL(CLogClient& aClient)
1.1777 + {
1.1778 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0864 "));
1.1779 + CTestActive* active = new(ELeave)CTestActive();
1.1780 + CleanupStack::PushL(active);
1.1781 +
1.1782 + aClient.ClearLog(KLogNullRecentList, active->iStatus);
1.1783 + active->StartL();
1.1784 + CActiveScheduler::Start();
1.1785 + TEST2(active->iStatus.Int(), KErrNone);
1.1786 +
1.1787 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.1788 + CleanupStack::PushL(view);
1.1789 +
1.1790 + CLogViewDuplicate* dView = CLogViewDuplicate::NewL(aClient);
1.1791 + CleanupStack::PushL(dView);
1.1792 +
1.1793 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1794 + TEST(!res);
1.1795 +
1.1796 + TBuf<KLogMaxDirectionLength> incoming;
1.1797 + aClient.GetString(incoming, R_LOG_DIR_IN);
1.1798 +
1.1799 + TBuf<KLogMaxDirectionLength> outgoing;
1.1800 + aClient.GetString(outgoing, R_LOG_DIR_OUT);
1.1801 +
1.1802 + TBuf<KLogMaxDirectionLength> missed;
1.1803 + aClient.GetString(missed, R_LOG_DIR_MISSED);
1.1804 +
1.1805 + CLogEvent* event = CLogEvent::NewL();
1.1806 + CleanupStack::PushL(event);
1.1807 +
1.1808 + event->SetEventType(KLogCallEventTypeUid);
1.1809 +
1.1810 + // Add 5 recent events to each list - with 5 duplicates each
1.1811 +
1.1812 + // Incoming
1.1813 + event->SetDirection(incoming);
1.1814 + TInt recent;
1.1815 + for(recent = 1; recent <= 5; recent++)
1.1816 + {
1.1817 + event->SetContact(recent);
1.1818 + for(TInt duplicate = 1; duplicate <= 6; duplicate++)
1.1819 + {
1.1820 + active->StartL();
1.1821 + aClient.AddEvent(*event, active->iStatus);
1.1822 + CActiveScheduler::Start();
1.1823 + TEST2(active->iStatus.Int(), KErrNone);
1.1824 + }
1.1825 + }
1.1826 +
1.1827 + // Outgoing
1.1828 + event->SetDirection(outgoing);
1.1829 + for(recent = 1; recent <= 5; recent++)
1.1830 + {
1.1831 + event->SetContact(recent);
1.1832 + for(TInt duplicate = 1; duplicate <= 6; duplicate++)
1.1833 + {
1.1834 + active->StartL();
1.1835 + aClient.AddEvent(*event, active->iStatus);
1.1836 + CActiveScheduler::Start();
1.1837 + TEST2(active->iStatus.Int(), KErrNone);
1.1838 + }
1.1839 + }
1.1840 +
1.1841 + // Missed
1.1842 + event->SetDirection(missed);
1.1843 + for(recent = 1; recent <= 5; recent++)
1.1844 + {
1.1845 + event->SetContact(recent);
1.1846 + for(TInt duplicate = 1; duplicate <= 6; duplicate++)
1.1847 + {
1.1848 + active->StartL();
1.1849 + aClient.AddEvent(*event, active->iStatus);
1.1850 + CActiveScheduler::Start();
1.1851 + TEST2(active->iStatus.Int(), KErrNone);
1.1852 + }
1.1853 + }
1.1854 +
1.1855 + // Check outgoing
1.1856 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.1857 + TEST(res);
1.1858 + TEST2(view->CountL(), 5);
1.1859 +
1.1860 + do
1.1861 + {
1.1862 + active->StartL();
1.1863 + CActiveScheduler::Start();
1.1864 + TEST2(active->iStatus.Int(), KErrNone);
1.1865 +
1.1866 + res = view->DuplicatesL(*dView, active->iStatus);
1.1867 + TEST(res);
1.1868 + TEST2(dView->CountL(), 5);
1.1869 + active->StartL();
1.1870 + CActiveScheduler::Start();
1.1871 + TEST2(active->iStatus.Int(), KErrNone);
1.1872 + }
1.1873 + while(view->NextL(active->iStatus));
1.1874 +
1.1875 + // Check missed
1.1876 + res = view->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.1877 + TEST(res);
1.1878 + TEST2(view->CountL(), 5);
1.1879 +
1.1880 + do
1.1881 + {
1.1882 + active->StartL();
1.1883 + CActiveScheduler::Start();
1.1884 + TEST2(active->iStatus.Int(), KErrNone);
1.1885 +
1.1886 + res = view->DuplicatesL(*dView, active->iStatus);
1.1887 + TEST(res);
1.1888 + TEST2(dView->CountL(), 5);
1.1889 + active->StartL();
1.1890 + CActiveScheduler::Start();
1.1891 + TEST2(active->iStatus.Int(), KErrNone);
1.1892 + }
1.1893 + while(view->NextL(active->iStatus));
1.1894 +
1.1895 + // Check incoming
1.1896 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1897 + TEST(res);
1.1898 + TEST2(view->CountL(), 5);
1.1899 +
1.1900 + do
1.1901 + {
1.1902 + active->StartL();
1.1903 + CActiveScheduler::Start();
1.1904 + TEST2(active->iStatus.Int(), KErrNone);
1.1905 +
1.1906 + res = view->DuplicatesL(*dView, active->iStatus);
1.1907 + TEST(res);
1.1908 + TEST2(dView->CountL(), 5);
1.1909 + active->StartL();
1.1910 + CActiveScheduler::Start();
1.1911 + TEST2(active->iStatus.Int(), KErrNone);
1.1912 + }
1.1913 + while(view->NextL(active->iStatus));
1.1914 +
1.1915 + // Clear duplicates for incoming
1.1916 + view->ClearDuplicatesL();
1.1917 + TEST2(view->CountL(), 5);
1.1918 +
1.1919 + // Recent list should be unchanged
1.1920 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1921 + TEST(res);
1.1922 + TEST2(view->CountL(), 5);
1.1923 +
1.1924 + do
1.1925 + {
1.1926 + active->StartL();
1.1927 + CActiveScheduler::Start();
1.1928 + TEST2(active->iStatus.Int(), KErrNone);
1.1929 +
1.1930 + // No duplicates should exist for this view now
1.1931 + res = view->DuplicatesL(*dView, active->iStatus);
1.1932 + TEST(!res);
1.1933 + TEST2(dView->CountL(), 0);
1.1934 + }
1.1935 + while(view->NextL(active->iStatus));
1.1936 +
1.1937 + // Check outgoing is unchanged
1.1938 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.1939 + TEST(res);
1.1940 + TEST2(view->CountL(), 5);
1.1941 +
1.1942 + do
1.1943 + {
1.1944 + active->StartL();
1.1945 + CActiveScheduler::Start();
1.1946 + TEST2(active->iStatus.Int(), KErrNone);
1.1947 +
1.1948 + res = view->DuplicatesL(*dView, active->iStatus);
1.1949 + TEST(res);
1.1950 + TEST2(dView->CountL(), 5);
1.1951 + active->StartL();
1.1952 + CActiveScheduler::Start();
1.1953 + TEST2(active->iStatus.Int(), KErrNone);
1.1954 + }
1.1955 + while(view->NextL(active->iStatus));
1.1956 +
1.1957 + // Check missed is unchanged
1.1958 + res = view->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.1959 + TEST(res);
1.1960 + TEST2(view->CountL(), 5);
1.1961 +
1.1962 + do
1.1963 + {
1.1964 + active->StartL();
1.1965 + CActiveScheduler::Start();
1.1966 + TEST2(active->iStatus.Int(), KErrNone);
1.1967 +
1.1968 + res = view->DuplicatesL(*dView, active->iStatus);
1.1969 + TEST(res);
1.1970 + TEST2(dView->CountL(), 5);
1.1971 + active->StartL();
1.1972 + CActiveScheduler::Start();
1.1973 + TEST2(active->iStatus.Int(), KErrNone);
1.1974 + }
1.1975 + while(view->NextL(active->iStatus));
1.1976 +
1.1977 + // Clear duplicates for missed
1.1978 + view->ClearDuplicatesL();
1.1979 + TEST2(view->CountL(), 5);
1.1980 +
1.1981 + // Recent list should be unchanged
1.1982 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.1983 + TEST(res);
1.1984 + TEST2(view->CountL(), 5);
1.1985 +
1.1986 + do
1.1987 + {
1.1988 + active->StartL();
1.1989 + CActiveScheduler::Start();
1.1990 + TEST2(active->iStatus.Int(), KErrNone);
1.1991 +
1.1992 + // No duplicates should exist for this view now
1.1993 + res = view->DuplicatesL(*dView, active->iStatus);
1.1994 + TEST(!res);
1.1995 + TEST2(dView->CountL(), 0);
1.1996 + }
1.1997 + while(view->NextL(active->iStatus));
1.1998 +
1.1999 + // Missed recent list should be unchanged
1.2000 + res = view->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.2001 + TEST(res);
1.2002 + TEST2(view->CountL(), 5);
1.2003 +
1.2004 + do
1.2005 + {
1.2006 + active->StartL();
1.2007 + CActiveScheduler::Start();
1.2008 + TEST2(active->iStatus.Int(), KErrNone);
1.2009 +
1.2010 + // No duplicates should exist for this view now
1.2011 + res = view->DuplicatesL(*dView, active->iStatus);
1.2012 + TEST(!res);
1.2013 + TEST2(dView->CountL(), 0);
1.2014 + }
1.2015 + while(view->NextL(active->iStatus));
1.2016 +
1.2017 + // Check outgoing is unchanged
1.2018 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.2019 + TEST(res);
1.2020 + TEST2(view->CountL(), 5);
1.2021 +
1.2022 + do
1.2023 + {
1.2024 + active->StartL();
1.2025 + CActiveScheduler::Start();
1.2026 + TEST2(active->iStatus.Int(), KErrNone);
1.2027 +
1.2028 + res = view->DuplicatesL(*dView, active->iStatus);
1.2029 + TEST(res);
1.2030 + TEST2(dView->CountL(), 5);
1.2031 + active->StartL();
1.2032 + CActiveScheduler::Start();
1.2033 + TEST2(active->iStatus.Int(), KErrNone);
1.2034 + }
1.2035 + while(view->NextL(active->iStatus));
1.2036 +
1.2037 + // Clear duplicates for outgoing
1.2038 + view->ClearDuplicatesL();
1.2039 + TEST2(view->CountL(), 5);
1.2040 +
1.2041 + // Recent list should be unchanged
1.2042 + res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.2043 + TEST(res);
1.2044 + TEST2(view->CountL(), 5);
1.2045 +
1.2046 + do
1.2047 + {
1.2048 + active->StartL();
1.2049 + CActiveScheduler::Start();
1.2050 + TEST2(active->iStatus.Int(), KErrNone);
1.2051 +
1.2052 + // No duplicates should exist for this view now
1.2053 + res = view->DuplicatesL(*dView, active->iStatus);
1.2054 + TEST(!res);
1.2055 + TEST2(dView->CountL(), 0);
1.2056 + }
1.2057 + while(view->NextL(active->iStatus));
1.2058 +
1.2059 + // Missed recent list should be unchanged
1.2060 + res = view->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.2061 + TEST(res);
1.2062 + TEST2(view->CountL(), 5);
1.2063 +
1.2064 + do
1.2065 + {
1.2066 + active->StartL();
1.2067 + CActiveScheduler::Start();
1.2068 + TEST2(active->iStatus.Int(), KErrNone);
1.2069 +
1.2070 + // No duplicates should exist for this view now
1.2071 + res = view->DuplicatesL(*dView, active->iStatus);
1.2072 + TEST(!res);
1.2073 + TEST2(dView->CountL(), 0);
1.2074 + }
1.2075 + while(view->NextL(active->iStatus));
1.2076 +
1.2077 + // Check outgoing is unchanged
1.2078 + res = view->SetRecentListL(KLogRecentOutgoingCalls, active->iStatus);
1.2079 + TEST(res);
1.2080 + TEST2(view->CountL(), 5);
1.2081 +
1.2082 + do
1.2083 + {
1.2084 + active->StartL();
1.2085 + CActiveScheduler::Start();
1.2086 + TEST2(active->iStatus.Int(), KErrNone);
1.2087 +
1.2088 + // No duplicates should exist for this view now
1.2089 + res = view->DuplicatesL(*dView, active->iStatus);
1.2090 + TEST(!res);
1.2091 + TEST2(dView->CountL(), 0);
1.2092 + }
1.2093 + while(view->NextL(active->iStatus));
1.2094 +
1.2095 + CleanupStack::PopAndDestroy(4); // event, dView, view, active
1.2096 + }
1.2097 +
1.2098 +/**
1.2099 +@SYMTestCaseID SYSLIB-LOGENG-CT-0865
1.2100 +@SYMTestCaseDesc Test for the functionality of CLogViewEvent class
1.2101 +@SYMTestPriority High
1.2102 +@SYMTestActions Set an event with a number,add the event to the client.Tests for matching a number from the view
1.2103 +@SYMTestExpectedResults Test must not fail
1.2104 +@SYMREQ REQ0000
1.2105 +*/
1.2106 +LOCAL_C void TestPhoneNumberMatchingL(CLogClient& aClient)
1.2107 + {
1.2108 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0865 "));
1.2109 + TestUtils::DeleteDatabaseL();
1.2110 +
1.2111 + CTestActive* active = new(ELeave)CTestActive();
1.2112 + CleanupStack::PushL(active);
1.2113 +
1.2114 + CLogEvent* event = CLogEvent::NewL();
1.2115 + CleanupStack::PushL(event);
1.2116 +
1.2117 + event->SetEventType(KLogCallEventTypeUid);
1.2118 + TBuf<KLogMaxDirectionLength> missed;
1.2119 + aClient.GetString(missed, R_LOG_DIR_MISSED);
1.2120 + event->SetDirection(missed);
1.2121 +
1.2122 + TLogString number;
1.2123 + TInt i;
1.2124 + for(i = 0; i < 10; i++)
1.2125 + {
1.2126 + TBuf<1> digit;
1.2127 + digit.Num(i);
1.2128 + number.Insert(0, digit);
1.2129 + event->SetNumber(number);
1.2130 +
1.2131 + aClient.AddEvent(*event, active->iStatus);
1.2132 + active->StartL();
1.2133 + CActiveScheduler::Start();
1.2134 + TEST2(active->iStatus.Int(), KErrNone);
1.2135 + }
1.2136 +
1.2137 + CLogFilter* filter = CLogFilter::NewL();
1.2138 + CleanupStack::PushL(filter);
1.2139 +
1.2140 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.2141 + CleanupStack::PushL(view);
1.2142 +
1.2143 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.2144 + TEST(res);
1.2145 + active->StartL();
1.2146 + CActiveScheduler::Start();
1.2147 + TEST2(active->iStatus.Int(), KErrNone);
1.2148 + TEST2(view->CountL(), 10);
1.2149 +
1.2150 + number.Zero();
1.2151 + for(i = 0; i < 10; i++)
1.2152 + {
1.2153 + TBuf<1> digit;
1.2154 + digit.Num(i);
1.2155 + number.Insert(0, digit);
1.2156 + filter->SetNumber(number);
1.2157 +
1.2158 + // This is testing phone number matching
1.2159 + res = view->SetFilterL(*filter, active->iStatus);
1.2160 + TEST(res);
1.2161 + active->StartL();
1.2162 + CActiveScheduler::Start();
1.2163 + TEST2(active->iStatus.Int(), KErrNone);
1.2164 +
1.2165 + // Phone numbers with KTestLogNumberCharsToMatch characters or above can match with each other
1.2166 + TEST2(view->CountL(), (number.Length() < KTestLogNumberCharsToMatch) ? 1 : 11-KTestLogNumberCharsToMatch);
1.2167 + }
1.2168 +
1.2169 + CLogViewRecent* recent = CLogViewRecent::NewL(aClient);
1.2170 + CleanupStack::PushL(recent);
1.2171 +
1.2172 + CLogViewDuplicate* duplicate = CLogViewDuplicate::NewL(aClient);
1.2173 + CleanupStack::PushL(duplicate);
1.2174 +
1.2175 + res = recent->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.2176 + TEST(res);
1.2177 + active->StartL();
1.2178 + CActiveScheduler::Start();
1.2179 + TEST2(active->iStatus.Int(), KErrNone);
1.2180 + TEST2(recent->CountL(), KTestLogNumberCharsToMatch);
1.2181 +
1.2182 + res = recent->DuplicatesL(*duplicate, active->iStatus);
1.2183 + TEST(res);
1.2184 + TEST2(duplicate->CountL(), 10-KTestLogNumberCharsToMatch);
1.2185 +
1.2186 + // Check the first recent event has duplicates
1.2187 + do
1.2188 + {
1.2189 + active->StartL();
1.2190 + CActiveScheduler::Start();
1.2191 + TEST2(active->iStatus.Int(), KErrNone);
1.2192 +
1.2193 + TPtrC number1(recent->Event().Number().Right(KTestLogNumberCharsToMatch));
1.2194 + TPtrC number2(duplicate->Event().Number().Right(KTestLogNumberCharsToMatch));
1.2195 + TEST(number1 == number2);
1.2196 + }
1.2197 + while(duplicate->NextL(active->iStatus));
1.2198 +
1.2199 + // Check none of the others have duplicates
1.2200 + while(recent->NextL(active->iStatus))
1.2201 + {
1.2202 + active->StartL();
1.2203 + CActiveScheduler::Start();
1.2204 + TEST2(active->iStatus.Int(), KErrNone);
1.2205 + res = recent->DuplicatesL(*duplicate, active->iStatus);
1.2206 + TEST(!res);
1.2207 + }
1.2208 +
1.2209 + CleanupStack::PopAndDestroy(6); // duplicate, recent, view, filter, event, active
1.2210 + }
1.2211 +
1.2212 +/**
1.2213 +@SYMTestCaseID SYSLIB-LOGENG-CT-3472
1.2214 +@SYMTestCaseDesc Tests duplicate number matching correctly compares and matches the last 9 digits
1.2215 +@SYMTestPriority High
1.2216 +@SYMTestActions Create and add several numbers to client, check that duplicates are correctly removed
1.2217 +@SYMTestExpectedResults Number with the same last 9 digits should get matched as duplicates
1.2218 +@SYMDEF INC105010
1.2219 +*/
1.2220 +LOCAL_C void INC105010L(CLogClient& aClient)
1.2221 +{
1.2222 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-3472 "));
1.2223 + TestUtils::DeleteDatabaseL();
1.2224 +
1.2225 + CTestActive* active = new(ELeave)CTestActive();
1.2226 + CleanupStack::PushL(active);
1.2227 +
1.2228 + CLogEvent* event = CLogEvent::NewL();
1.2229 + CleanupStack::PushL(event);
1.2230 +
1.2231 + event->SetEventType(KLogCallEventTypeUid);
1.2232 + TBuf<KLogMaxDirectionLength> missed;
1.2233 + aClient.GetString(missed, R_LOG_DIR_MISSED);
1.2234 + event->SetDirection(missed);
1.2235 +
1.2236 + _LIT(KTestNumber1, "0401234567"); // unique
1.2237 + _LIT(KTestNumber2, "0421234567"); // unique
1.2238 + _LIT(KTestNumber3, "0521234567"); // unique
1.2239 + _LIT(KTestNumber4, "9521234567"); // duplicate
1.2240 + _LIT(KTestNumber5, "9521234567"); // duplicate
1.2241 +
1.2242 + TLogString number;
1.2243 +
1.2244 + // add events for the above numbers
1.2245 + event->SetNumber(KTestNumber1);
1.2246 + aClient.AddEvent(*event, active->iStatus);
1.2247 + active->StartL();
1.2248 + CActiveScheduler::Start();
1.2249 + TEST2(active->iStatus.Int(), KErrNone);
1.2250 +
1.2251 + event->SetNumber(KTestNumber2);
1.2252 + aClient.AddEvent(*event, active->iStatus);
1.2253 + active->StartL();
1.2254 + CActiveScheduler::Start();
1.2255 + TEST2(active->iStatus.Int(), KErrNone);
1.2256 +
1.2257 + event->SetNumber(KTestNumber3);
1.2258 + aClient.AddEvent(*event, active->iStatus);
1.2259 + active->StartL();
1.2260 + CActiveScheduler::Start();
1.2261 + TEST2(active->iStatus.Int(), KErrNone);
1.2262 +
1.2263 + event->SetNumber(KTestNumber4);
1.2264 + aClient.AddEvent(*event, active->iStatus);
1.2265 + active->StartL();
1.2266 + CActiveScheduler::Start();
1.2267 + TEST2(active->iStatus.Int(), KErrNone);
1.2268 +
1.2269 + event->SetNumber(KTestNumber5);
1.2270 + aClient.AddEvent(*event, active->iStatus);
1.2271 + active->StartL();
1.2272 + CActiveScheduler::Start();
1.2273 + TEST2(active->iStatus.Int(), KErrNone);
1.2274 +
1.2275 + CLogFilter* filter = CLogFilter::NewL();
1.2276 + CleanupStack::PushL(filter);
1.2277 +
1.2278 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.2279 + CleanupStack::PushL(view);
1.2280 +
1.2281 + // check 5 entries in log
1.2282 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.2283 + TEST(res);
1.2284 + active->StartL();
1.2285 + CActiveScheduler::Start();
1.2286 + TEST2(active->iStatus.Int(), KErrNone);
1.2287 + TEST2(view->CountL(), 5);
1.2288 +
1.2289 + CLogViewRecent* recent = CLogViewRecent::NewL(aClient);
1.2290 + CleanupStack::PushL(recent);
1.2291 +
1.2292 + CLogViewDuplicate* duplicate = CLogViewDuplicate::NewL(aClient);
1.2293 + CleanupStack::PushL(duplicate);
1.2294 +
1.2295 + // check only 3 entries in recent calls view
1.2296 + res = recent->SetRecentListL(KLogRecentMissedCalls, active->iStatus);
1.2297 + TEST(res);
1.2298 + active->StartL();
1.2299 + CActiveScheduler::Start();
1.2300 + TEST2(active->iStatus.Int(), KErrNone);
1.2301 + TInt rrr = recent->CountL();
1.2302 + TEST2(recent->CountL(), 3);
1.2303 +
1.2304 + // and that there are 2 duplicates
1.2305 + res = recent->DuplicatesL(*duplicate, active->iStatus);
1.2306 + TEST(res);
1.2307 + active->StartL();
1.2308 + CActiveScheduler::Start();
1.2309 + TEST2(active->iStatus.Int(), KErrNone);
1.2310 +
1.2311 + TInt ddd = duplicate->CountL();
1.2312 + TEST2(duplicate->CountL(), 2);
1.2313 +
1.2314 + CleanupStack::PopAndDestroy(6);
1.2315 +}
1.2316 +
1.2317 +
1.2318 +
1.2319 +/**
1.2320 +@SYMTestCaseID SYSLIB-LOGENG-CT-0866
1.2321 +@SYMTestCaseDesc Tests for CLogViewEvent::SetFlagsL() function
1.2322 +@SYMTestPriority High
1.2323 +@SYMTestActions Add events to the log and set the flags.Check if all the flags are set.
1.2324 + Clear all the flags and set half view of the flags.Check if only all view of the flags are set.
1.2325 +@SYMTestExpectedResults Test must not fail
1.2326 +@SYMREQ REQ0000
1.2327 +*/
1.2328 +LOCAL_C void TestRecentFlagsL(CLogClient& aClient)
1.2329 + {
1.2330 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0866 "));
1.2331 + TestUtils::DeleteDatabaseL();
1.2332 +
1.2333 + CLogEvent* event = CLogEvent::NewL();
1.2334 + CleanupStack::PushL(event);
1.2335 +
1.2336 + CTestActive* active = new(ELeave)CTestActive();
1.2337 + CleanupStack::PushL(active);
1.2338 +
1.2339 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.2340 + CleanupStack::PushL(view);
1.2341 +
1.2342 + // Incoming
1.2343 + TBuf<KLogMaxDirectionLength> buf;
1.2344 + aClient.GetString(buf, R_LOG_DIR_IN);
1.2345 +
1.2346 + event->SetEventType(KLogCallEventTypeUid);
1.2347 + event->SetDirection(buf);
1.2348 +
1.2349 + TInt count;
1.2350 + for(count = 0; count < KTestEventNum; count++)
1.2351 + {
1.2352 + event->SetContact(count);
1.2353 +
1.2354 + active->StartL();
1.2355 + aClient.AddEvent(*event, active->iStatus);
1.2356 + CActiveScheduler::Start();
1.2357 + TEST2(active->iStatus.Int(), KErrNone);
1.2358 + }
1.2359 +
1.2360 + TEST2(view->CountL(), 0);
1.2361 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.2362 + TEST(res);
1.2363 + active->StartL();
1.2364 + CActiveScheduler::Start();
1.2365 + TEST2(active->iStatus.Int(), KErrNone);
1.2366 + TEST2(view->CountL(), KTestEventNum);
1.2367 +
1.2368 + // Set all flags in view
1.2369 + const TLogFlags KAllFlagsSet = 15; // (BIN) 1,1,1,1
1.2370 + view->SetFlagsL(KAllFlagsSet);
1.2371 +
1.2372 + // Check we can move to the first record
1.2373 + res = view->FirstL(active->iStatus);
1.2374 + TEST(res);
1.2375 +
1.2376 + // Check all flags are now set
1.2377 + count = KTestEventNum;
1.2378 + do {
1.2379 + active->StartL();
1.2380 + CActiveScheduler::Start();
1.2381 + TEST2(active->iStatus.Int(), KErrNone);
1.2382 + //
1.2383 + TEST2(view->CountL(), KTestEventNum);
1.2384 + TEST2(view->RecentList(), KLogRecentIncomingCalls);
1.2385 + //
1.2386 + const TLogFlags flags = view->Event().Flags();
1.2387 + TEST2(flags, KAllFlagsSet);
1.2388 + count--;
1.2389 + }
1.2390 + while(view->NextL(active->iStatus));
1.2391 +
1.2392 + TEST2(count, 0);
1.2393 + TEST2(view->CountL(), KTestEventNum);
1.2394 +
1.2395 + // Clear all flags in view
1.2396 + const TLogFlags KAllFlagsCleared = 0; // (BIN) 0,0,0,0
1.2397 + view->SetFlagsL(KAllFlagsCleared);
1.2398 + TEST2(view->CountL(), KTestEventNum);
1.2399 +
1.2400 + // Check we can move to the first record
1.2401 + res = view->FirstL(active->iStatus);
1.2402 + TEST(res);
1.2403 +
1.2404 + // Check all flags are now set
1.2405 + count = KTestEventNum;
1.2406 + do {
1.2407 + active->StartL();
1.2408 + CActiveScheduler::Start();
1.2409 + TEST2(active->iStatus.Int(), KErrNone);
1.2410 + //
1.2411 + TEST2(view->CountL(), KTestEventNum);
1.2412 + TEST2(view->RecentList(), KLogRecentIncomingCalls);
1.2413 + //
1.2414 + const TLogFlags flags = view->Event().Flags();
1.2415 + TEST2(flags, KAllFlagsCleared);
1.2416 + count--;
1.2417 + }
1.2418 + while(view->NextL(active->iStatus));
1.2419 +
1.2420 + TEST2(count, 0);
1.2421 + TEST2(view->CountL(), KTestEventNum);
1.2422 +
1.2423 + // Set lower half flags in view
1.2424 + const TLogFlags KLowerHalfFlagsSet = 3; // (BIN) 1,1,0,0
1.2425 + view->SetFlagsL(KLowerHalfFlagsSet);
1.2426 +
1.2427 + // Check we can move to the first record
1.2428 + res = view->FirstL(active->iStatus);
1.2429 + TEST(res);
1.2430 +
1.2431 + // Check all flags are now set
1.2432 + count = KTestEventNum;
1.2433 + do {
1.2434 + active->StartL();
1.2435 + CActiveScheduler::Start();
1.2436 + TEST2(active->iStatus.Int(), KErrNone);
1.2437 + //
1.2438 + TEST2(view->CountL(), KTestEventNum);
1.2439 + TEST2(view->RecentList(), KLogRecentIncomingCalls);
1.2440 + //
1.2441 + const TLogFlags flags = view->Event().Flags();
1.2442 + TEST2(flags, KLowerHalfFlagsSet);
1.2443 + count--;
1.2444 + }
1.2445 + while(view->NextL(active->iStatus));
1.2446 +
1.2447 + TEST2(count, 0);
1.2448 + TEST2(view->CountL(), KTestEventNum);
1.2449 +
1.2450 + CleanupStack::PopAndDestroy(3, event); // view, active, event
1.2451 + }
1.2452 +
1.2453 +/**
1.2454 +@SYMTestCaseID SYSLIB-LOGENG-CT-0867
1.2455 +@SYMTestCaseDesc Tests for CLogViewEvent::SetFlagsL() function
1.2456 +@SYMTestPriority High
1.2457 +@SYMTestActions Add events to the log and set the flags.Check if flags for only the events in view are set.
1.2458 +@SYMTestExpectedResults Test must not fail
1.2459 +@SYMREQ REQ0000
1.2460 +*/
1.2461 +LOCAL_C void TestViewFlagsL(CLogClient& aClient)
1.2462 + {
1.2463 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0867 "));
1.2464 + TestUtils::DeleteDatabaseL();
1.2465 +
1.2466 + CLogEvent* event = CLogEvent::NewL();
1.2467 + CleanupStack::PushL(event);
1.2468 +
1.2469 + CTestActive* active = new(ELeave)CTestActive();
1.2470 + CleanupStack::PushL(active);
1.2471 +
1.2472 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.2473 + CleanupStack::PushL(view);
1.2474 +
1.2475 + // Incoming
1.2476 + TBuf<KLogMaxDirectionLength> buf;
1.2477 + aClient.GetString(buf, R_LOG_DIR_IN);
1.2478 +
1.2479 + event->SetEventType(KLogCallEventTypeUid);
1.2480 + event->SetDirection(buf);
1.2481 +
1.2482 + event->SetNumber(_L("123"));
1.2483 + active->StartL();
1.2484 + aClient.AddEvent(*event, active->iStatus);
1.2485 + CActiveScheduler::Start();
1.2486 + TEST2(active->iStatus.Int(), KErrNone);
1.2487 + TLogId testId = event->Id();
1.2488 + event->SetNumber(KNullDesC);
1.2489 + TheTest.Printf(_L(" Event flags: 0x%X\r\n"), event->Flags());
1.2490 +
1.2491 + TInt count;
1.2492 + for(count = 0; count < KTestEventNum; count++)
1.2493 + {
1.2494 + event->SetContact(count + 1);
1.2495 +
1.2496 + active->StartL();
1.2497 + aClient.AddEvent(*event, active->iStatus);
1.2498 + CActiveScheduler::Start();
1.2499 + TEST2(active->iStatus.Int(), KErrNone);
1.2500 + }
1.2501 +
1.2502 + TEST2(view->CountL(), 0);
1.2503 +
1.2504 + CLogFilter* filter = CLogFilter::NewL();
1.2505 + CleanupStack::PushL(filter);
1.2506 + filter->SetNullFields(ELogNumberField);
1.2507 +
1.2508 + TEST2(view->CountL(), 0);
1.2509 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.2510 + TEST(res);
1.2511 + active->StartL();
1.2512 + CActiveScheduler::Start();
1.2513 + TEST2(active->iStatus.Int(), KErrNone);
1.2514 + TEST2(view->CountL(), KTestEventNum);
1.2515 +
1.2516 + // Set all flags in view
1.2517 + const TLogFlags KAllFlagsSet = 15; // (BIN) 1,1,1,1
1.2518 + view->SetFlagsL(KAllFlagsSet);
1.2519 +
1.2520 + // Check flags only set for events in the view
1.2521 + active->StartL();
1.2522 + event->SetId(testId);
1.2523 + aClient.GetEvent(*event, active->iStatus);
1.2524 + CActiveScheduler::Start();
1.2525 + TEST2(active->iStatus.Int(), KErrNone);
1.2526 + if( TheMatchingIsEnabled)
1.2527 + {//This check will fail if the first AddEvent() call in this function didn't perform contact matching
1.2528 + TEST2(event->Flags(), KLogEventContactSearched);
1.2529 + }
1.2530 + else
1.2531 + {
1.2532 + TEST2(event->Flags(), 0);
1.2533 + }
1.2534 +
1.2535 + // Check we can move to the first record
1.2536 + res = view->FirstL(active->iStatus);
1.2537 + TEST(res);
1.2538 +
1.2539 + // Check all flags are now set
1.2540 + count = KTestEventNum;
1.2541 + do {
1.2542 + active->StartL();
1.2543 + CActiveScheduler::Start();
1.2544 + TEST2(active->iStatus.Int(), KErrNone);
1.2545 + //
1.2546 + TEST2(view->CountL(), KTestEventNum);
1.2547 + //
1.2548 + const TLogFlags flags = view->Event().Flags();
1.2549 + TEST2(flags, KAllFlagsSet);
1.2550 + count--;
1.2551 + }
1.2552 + while(view->NextL(active->iStatus));
1.2553 +
1.2554 + TEST2(count, 0);
1.2555 + TEST2(view->CountL(), KTestEventNum);
1.2556 +
1.2557 + // Clear all flags in view
1.2558 + const TLogFlags KAllFlagsCleared = 0; // (BIN) 0,0,0,0
1.2559 + view->SetFlagsL(KAllFlagsCleared);
1.2560 + TEST2(view->CountL(), KTestEventNum);
1.2561 +
1.2562 + // Check flags only set for events in the view
1.2563 + active->StartL();
1.2564 + event->SetId(testId);
1.2565 + aClient.GetEvent(*event, active->iStatus);
1.2566 + CActiveScheduler::Start();
1.2567 + TEST2(active->iStatus.Int(), KErrNone);
1.2568 + if( TheMatchingIsEnabled)
1.2569 + {
1.2570 + TEST2(event->Flags(), KLogEventContactSearched);
1.2571 + }
1.2572 + else
1.2573 + {
1.2574 + TEST2(event->Flags(), 0);
1.2575 + }
1.2576 +
1.2577 + // Check we can move to the first record
1.2578 + res = view->FirstL(active->iStatus);
1.2579 + TEST(res);
1.2580 +
1.2581 + // Check all flags are now set
1.2582 + count = KTestEventNum;
1.2583 + do {
1.2584 + active->StartL();
1.2585 + CActiveScheduler::Start();
1.2586 + TEST2(active->iStatus.Int(), KErrNone);
1.2587 + //
1.2588 + TEST2(view->CountL(), KTestEventNum);
1.2589 + //
1.2590 + const TLogFlags flags = view->Event().Flags();
1.2591 + TEST2(flags, KAllFlagsCleared);
1.2592 + count--;
1.2593 + }
1.2594 + while(view->NextL(active->iStatus));
1.2595 +
1.2596 + TEST2(count, 0);
1.2597 + TEST2(view->CountL(), KTestEventNum);
1.2598 +
1.2599 + // Set lower half flags in view
1.2600 + const TLogFlags KLowerHalfFlagsSet = 3; // (BIN) 1,1,0,0
1.2601 + view->SetFlagsL(KLowerHalfFlagsSet);
1.2602 +
1.2603 + // Check flags only set for events in the view
1.2604 + active->StartL();
1.2605 + event->SetId(testId);
1.2606 + aClient.GetEvent(*event, active->iStatus);
1.2607 + CActiveScheduler::Start();
1.2608 + TEST2(active->iStatus.Int(), KErrNone);
1.2609 + if( TheMatchingIsEnabled)
1.2610 + {
1.2611 + TEST2(event->Flags(), KLogEventContactSearched);
1.2612 + }
1.2613 + else
1.2614 + {
1.2615 + TEST2(event->Flags(), 0);
1.2616 + }
1.2617 +
1.2618 + // Check we can move to the first record
1.2619 + res = view->FirstL(active->iStatus);
1.2620 + TEST(res);
1.2621 +
1.2622 + // Check all flags are now set
1.2623 + count = KTestEventNum;
1.2624 + do {
1.2625 + active->StartL();
1.2626 + CActiveScheduler::Start();
1.2627 + TEST2(active->iStatus.Int(), KErrNone);
1.2628 + //
1.2629 + TEST2(view->CountL(), KTestEventNum);
1.2630 + //
1.2631 + const TLogFlags flags = view->Event().Flags();
1.2632 + TEST2(flags, KLowerHalfFlagsSet);
1.2633 + count--;
1.2634 + }
1.2635 + while(view->NextL(active->iStatus));
1.2636 +
1.2637 + TEST2(count, 0);
1.2638 + TEST2(view->CountL(), KTestEventNum);
1.2639 +
1.2640 + CleanupStack::PopAndDestroy(4, event); // filter, view, active, event
1.2641 + }
1.2642 +
1.2643 +/**
1.2644 +@SYMTestCaseID SYSLIB-LOGENG-CT-0868
1.2645 +@SYMTestCaseDesc Tests for CLogViewChangeObserver::HaveChanges(),Changes() functions
1.2646 +@SYMTestPriority High
1.2647 +@SYMTestActions Check for observing changes while adding and deleting events
1.2648 +@SYMTestExpectedResults Test must not fail
1.2649 +@SYMREQ REQ0000
1.2650 +*/
1.2651 +LOCAL_C void TestViewChangeEvents1L(CLogClient& aClient)
1.2652 + {
1.2653 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0868 "));
1.2654 + TestUtils::DeleteDatabaseL();
1.2655 +
1.2656 + CLogEvent* event = CLogEvent::NewL();
1.2657 + CleanupStack::PushL(event);
1.2658 +
1.2659 + CLogFilter* filter = CLogFilter::NewL();
1.2660 + CleanupStack::PushL(filter);
1.2661 + filter->SetContact(KTestContact);
1.2662 + filter->SetEventType(KLogPacketDataEventTypeUid);
1.2663 +
1.2664 + CTestActive* active = new(ELeave)CTestActive();
1.2665 + CleanupStack::PushL(active);
1.2666 +
1.2667 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.2668 + changeObs->SetActive();
1.2669 +
1.2670 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.2671 + CleanupStack::PushL(view);
1.2672 +
1.2673 + // Incoming
1.2674 + TBuf<KLogMaxDirectionLength> buf;
1.2675 + aClient.GetString(buf, R_LOG_DIR_IN);
1.2676 +
1.2677 + event->SetEventType(KLogPacketDataEventTypeUid);
1.2678 + event->SetDirection(buf);
1.2679 + event->SetContact(KTestContact);
1.2680 +
1.2681 + TInt i;
1.2682 + TInt count;
1.2683 + for(count = 0; count < KTestEventNum; count++)
1.2684 + {
1.2685 + active->StartL();
1.2686 + aClient.AddEvent(*event, active->iStatus);
1.2687 + CActiveScheduler::Start();
1.2688 + TEST2(active->iStatus.Int(), KErrNone);
1.2689 + User::After(1 * 1000000);
1.2690 + }
1.2691 + //
1.2692 + TEST2(view->CountL(), 0);
1.2693 + active->StartL();
1.2694 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.2695 + TEST(res);
1.2696 + CActiveScheduler::Start();
1.2697 + TEST2(active->iStatus.Int(), KErrNone);
1.2698 + TEST2(view->CountL(), KTestEventNum);
1.2699 + //
1.2700 + count = KTestEventNum;
1.2701 + res = view->FirstL(active->iStatus);
1.2702 + TEST(res);
1.2703 + do {
1.2704 + active->StartL();
1.2705 + CActiveScheduler::Start();
1.2706 + TEST2(active->iStatus.Int(), KErrNone);
1.2707 + //
1.2708 + TEST2(view->CountL(), KTestEventNum);
1.2709 + const TLogId eventId = view->Event().Id();
1.2710 + TLogId id = --count;
1.2711 + TEST2(eventId, id);
1.2712 + }
1.2713 + while(view->NextL(active->iStatus));
1.2714 +
1.2715 + // Transients
1.2716 + TInt changeCount;
1.2717 + TLogId logId;
1.2718 + TInt viewIndex;
1.2719 + TLogDatabaseChangeType type;
1.2720 + CLogChangeDefinition* changes;
1.2721 +
1.2722 + // Add an event and check for changes
1.2723 + active->StartL();
1.2724 + aClient.AddEvent(*event, active->iStatus);
1.2725 + changes = changeObs->WaitForChangesLC();
1.2726 + if (active->IsActive())
1.2727 + CActiveScheduler::Start();
1.2728 + TEST2(active->iStatus.Int(), KErrNone);
1.2729 + count = view->CountL();
1.2730 + TEST2(count, KTestEventNum+1);
1.2731 +
1.2732 + changeCount = changes->Count();
1.2733 + for(i=0; i<changeCount; i++)
1.2734 + {
1.2735 + type = changes->At(i, logId, viewIndex);
1.2736 + TheTest.Printf(_L("Change Type: %d, logId: %d, viewIndex: %d\n"), type, logId, viewIndex);
1.2737 + }
1.2738 +
1.2739 + // Check the change was as expected
1.2740 + TEST2(changes->Count(), 1);
1.2741 + type = changes->At(0, logId, viewIndex);
1.2742 + TEST2(type, ELogChangeTypeEventAdded);
1.2743 + TEST2(viewIndex, 0); // first (newest) event in the view
1.2744 + {
1.2745 + const TLogId expectedLogId = ((TLogId) KTestEventNum);
1.2746 + TEST2(logId, expectedLogId);
1.2747 + }
1.2748 + CleanupStack::PopAndDestroy(changes);
1.2749 +
1.2750 + // Check view navigation
1.2751 + i=0;
1.2752 + res = view->FirstL(active->iStatus);
1.2753 + TEST(res);
1.2754 + do
1.2755 + {
1.2756 + active->StartL();
1.2757 + CActiveScheduler::Start();
1.2758 + TEST2(active->iStatus.Int(), KErrNone);
1.2759 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.2760 + }
1.2761 + while(view->NextL(active->iStatus));
1.2762 + TheTest.Printf(_L("==\n"));
1.2763 + TEST2(i, count);
1.2764 + res = view->FirstL(active->iStatus);
1.2765 + TEST(res);
1.2766 + active->StartL();
1.2767 + CActiveScheduler::Start();
1.2768 + TEST2(active->iStatus.Int(), KErrNone);
1.2769 +
1.2770 + // Delete some events
1.2771 + TEST(KTestEventNum >= 10);
1.2772 + changeObs->StartCollectingChanges();
1.2773 + for(i=1; i<KTestEventNum; i+=2)
1.2774 + {
1.2775 + active->StartL();
1.2776 + aClient.DeleteEvent(TLogId(i), active->iStatus);
1.2777 + CActiveScheduler::Start();
1.2778 + TEST2(active->iStatus.Int(), KErrNone);
1.2779 + }
1.2780 +
1.2781 + // Check changes
1.2782 + changeCount = changeObs->Changes().Count();
1.2783 + TEST2(changeCount, 5); // 1,3,5,7,9
1.2784 + for(i=0; i<changeCount; i++)
1.2785 + {
1.2786 + TEST2(changeObs->Changes().At(i, logId, viewIndex), ELogChangeTypeEventDeleted);
1.2787 + TEST2(logId, TLogId(2*i + 1));
1.2788 + TEST2(viewIndex, 10 - ((2*i) + 1));
1.2789 + }
1.2790 +
1.2791 + // Add a new event that shouldn't appear in the view
1.2792 + changeObs->StartCollectingChanges();
1.2793 + event->SetContact(TLogContactItemId(0));
1.2794 + active->StartL();
1.2795 + aClient.AddEvent(*event, active->iStatus);
1.2796 + CActiveScheduler::Start();
1.2797 + TEST2(active->iStatus.Int(), KErrNone);
1.2798 + count = view->CountL();
1.2799 + TEST2(count, KTestEventNum + 1 - 5);
1.2800 + TEST2(event->Id(), KTestEventNum + 1);
1.2801 +
1.2802 + // Check changes
1.2803 + TEST(!changeObs->HaveChanges());
1.2804 +
1.2805 + // Check view navigation
1.2806 + i=0;
1.2807 + res = view->FirstL(active->iStatus);
1.2808 + TEST(res);
1.2809 + do
1.2810 + {
1.2811 + active->StartL();
1.2812 + CActiveScheduler::Start();
1.2813 + TEST2(active->iStatus.Int(), KErrNone);
1.2814 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.2815 + }
1.2816 + while(view->NextL(active->iStatus));
1.2817 + TheTest.Printf(_L("==\n"));
1.2818 + TEST2(i, count);
1.2819 + res = view->FirstL(active->iStatus);
1.2820 + TEST(res);
1.2821 + active->StartL();
1.2822 + CActiveScheduler::Start();
1.2823 + TEST2(active->iStatus.Int(), KErrNone);
1.2824 +
1.2825 + // Delete event which isn't in view
1.2826 + changeObs->StartCollectingChanges();
1.2827 + active->StartL();
1.2828 + aClient.DeleteEvent(event->Id(), active->iStatus);
1.2829 + CActiveScheduler::Start();
1.2830 + TEST2(active->iStatus.Int(), KErrNone);
1.2831 + count = view->CountL();
1.2832 + TEST2(count, KTestEventNum + 1 - 5);
1.2833 +
1.2834 + // Check changes
1.2835 + TEST(!changeObs->HaveChanges());
1.2836 +
1.2837 + // Check view navigation
1.2838 + i=0;
1.2839 + res = view->FirstL(active->iStatus);
1.2840 + TEST(res);
1.2841 + do
1.2842 + {
1.2843 + active->StartL();
1.2844 + CActiveScheduler::Start();
1.2845 + TEST2(active->iStatus.Int(), KErrNone);
1.2846 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.2847 + }
1.2848 + while(view->NextL(active->iStatus));
1.2849 + TheTest.Printf(_L("==\n"));
1.2850 + TEST2(i, count);
1.2851 + res = view->FirstL(active->iStatus);
1.2852 + TEST(res);
1.2853 + active->StartL();
1.2854 + CActiveScheduler::Start();
1.2855 + TEST2(active->iStatus.Int(), KErrNone);
1.2856 +
1.2857 + // Add a new event again that shouldn't appear in the view
1.2858 + changeObs->StartCollectingChanges();
1.2859 + event->SetContact(TLogContactItemId(0));
1.2860 + active->StartL();
1.2861 + aClient.AddEvent(*event, active->iStatus);
1.2862 + CActiveScheduler::Start();
1.2863 + TEST2(active->iStatus.Int(), KErrNone);
1.2864 + count = view->CountL();
1.2865 + TEST2(count, KTestEventNum + 1 - 5);
1.2866 + TEST2(event->Id(), KTestEventNum + 2);
1.2867 +
1.2868 + // Check changes
1.2869 + TEST(!changeObs->HaveChanges());
1.2870 +
1.2871 + // Check view navigation
1.2872 + i=0;
1.2873 + res = view->FirstL(active->iStatus);
1.2874 + TEST(res);
1.2875 + do
1.2876 + {
1.2877 + active->StartL();
1.2878 + CActiveScheduler::Start();
1.2879 + TEST2(active->iStatus.Int(), KErrNone);
1.2880 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.2881 + }
1.2882 + while(view->NextL(active->iStatus));
1.2883 + TheTest.Printf(_L("==\n"));
1.2884 + TEST2(i, count);
1.2885 + res = view->FirstL(active->iStatus);
1.2886 + TEST(res);
1.2887 + active->StartL();
1.2888 + CActiveScheduler::Start();
1.2889 + TEST2(active->iStatus.Int(), KErrNone);
1.2890 +
1.2891 + // Change event so that it appears in the view
1.2892 + changeObs->StartCollectingChanges();
1.2893 + event->SetContact(KTestContact);
1.2894 + active->StartL();
1.2895 + aClient.ChangeEvent(*event, active->iStatus);
1.2896 + CActiveScheduler::Start();
1.2897 + TEST2(active->iStatus.Int(), KErrNone);
1.2898 + count = view->CountL();
1.2899 + TEST2(count, KTestEventNum + 2 - 5);
1.2900 + TEST2(event->Id(), KTestEventNum + 2); // Shouldn't change
1.2901 +
1.2902 + // Check changes
1.2903 + changeCount = changeObs->Changes().Count();
1.2904 + TEST2(changeCount, 1);
1.2905 + type = changeObs->Changes().At(0, logId, viewIndex);
1.2906 + TEST2(type, ELogChangeTypeEventAdded);
1.2907 + TEST2(logId, KTestEventNum + 2);
1.2908 + TEST2(viewIndex, 0);
1.2909 +
1.2910 + // Check view navigation
1.2911 + i=0;
1.2912 + res = view->FirstL(active->iStatus);
1.2913 + TEST(res);
1.2914 + do
1.2915 + {
1.2916 + active->StartL();
1.2917 + CActiveScheduler::Start();
1.2918 + TEST2(active->iStatus.Int(), KErrNone);
1.2919 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.2920 + }
1.2921 + while(view->NextL(active->iStatus));
1.2922 + TheTest.Printf(_L("==\n"));
1.2923 + TEST2(i, count);
1.2924 + res = view->FirstL(active->iStatus);
1.2925 + TEST(res);
1.2926 + active->StartL();
1.2927 + CActiveScheduler::Start();
1.2928 + TEST2(active->iStatus.Int(), KErrNone);
1.2929 +
1.2930 + // Simply change an event in the view
1.2931 + changeObs->StartCollectingChanges();
1.2932 + event->SetDescription(_L("Test"));
1.2933 + active->StartL();
1.2934 + aClient.ChangeEvent(*event, active->iStatus);
1.2935 + CActiveScheduler::Start();
1.2936 + TEST2(active->iStatus.Int(), KErrNone);
1.2937 + count = view->CountL();
1.2938 + TEST2(count, KTestEventNum + 2 - 5); // Shouldn't change
1.2939 + TEST2(event->Id(), KTestEventNum + 2); // Shouldn't change
1.2940 +
1.2941 + // Check changes
1.2942 + changeCount = changeObs->Changes().Count();
1.2943 + TEST2(changeCount, 1);
1.2944 + type = changeObs->Changes().At(0, logId, viewIndex);
1.2945 + TEST2(type, ELogChangeTypeEventChanged);
1.2946 + TEST2(logId, KTestEventNum + 2);
1.2947 + TEST2(viewIndex, 0);
1.2948 +
1.2949 + // Change an event in the view so that it is deleted
1.2950 + changeObs->StartCollectingChanges();
1.2951 + event->SetContact(0);
1.2952 + active->StartL();
1.2953 + aClient.ChangeEvent(*event, active->iStatus);
1.2954 + CActiveScheduler::Start();
1.2955 + TEST2(active->iStatus.Int(), KErrNone);
1.2956 + count = view->CountL();
1.2957 + TEST2(count, KTestEventNum + 2 - 5 - 1); // one less now
1.2958 +
1.2959 + // Check changes
1.2960 + changeCount = changeObs->Changes().Count();
1.2961 + TEST2(changeCount, 1);
1.2962 + type = changeObs->Changes().At(0, logId, viewIndex);
1.2963 + TEST2(type, ELogChangeTypeEventDeleted);
1.2964 + TEST2(logId, KTestEventNum + 2);
1.2965 + TEST2(viewIndex, 0);
1.2966 +
1.2967 + // Navigate part way through the view so we have
1.2968 + // a cursor position part way through...
1.2969 + i=0;
1.2970 + count = view->CountL();
1.2971 + res = view->FirstL(active->iStatus);
1.2972 + TEST(res);
1.2973 + do
1.2974 + {
1.2975 + active->StartL();
1.2976 + CActiveScheduler::Start();
1.2977 + TEST2(active->iStatus.Int(), KErrNone);
1.2978 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.2979 + }
1.2980 + while(view->NextL(active->iStatus));
1.2981 + TheTest.Printf(_L("==\n"));
1.2982 + TEST2(i, count);
1.2983 + TEST2(view->Event().Id(), TLogId(0));
1.2984 +
1.2985 + // Save id
1.2986 + TLogId savedId = view->Event().Id();
1.2987 +
1.2988 + // Go one back
1.2989 + res = view->PreviousL(active->iStatus);
1.2990 + TEST(res);
1.2991 + active->StartL();
1.2992 + CActiveScheduler::Start();
1.2993 + TEST2(active->iStatus.Int(), KErrNone);
1.2994 +
1.2995 + // Insert something
1.2996 + changeObs->StartCollectingChanges();
1.2997 + event->SetContact(KTestContact);
1.2998 + active->StartL();
1.2999 + aClient.AddEvent(*event, active->iStatus);
1.3000 + CActiveScheduler::Start();
1.3001 + TEST2(active->iStatus.Int(), KErrNone);
1.3002 + count = view->CountL();
1.3003 + TEST2(count, KTestEventNum + 2 - 5); // one more now
1.3004 + TEST2(event->Id(), KTestEventNum + 3);
1.3005 +
1.3006 + // Check changes
1.3007 + changeCount = changeObs->Changes().Count();
1.3008 + TEST2(changeCount, 1);
1.3009 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3010 + TEST2(type, ELogChangeTypeEventAdded);
1.3011 + TEST2(logId, KTestEventNum + 3);
1.3012 + TEST2(viewIndex, 0);
1.3013 +
1.3014 + // Check we can still go forward to the last record
1.3015 + res = view->NextL(active->iStatus);
1.3016 + TEST(res);
1.3017 + active->StartL();
1.3018 + CActiveScheduler::Start();
1.3019 + TEST2(active->iStatus.Int(), KErrNone);
1.3020 + TEST2(view->Event().Id(), savedId);
1.3021 +
1.3022 + // Go one back
1.3023 + res = view->PreviousL(active->iStatus);
1.3024 + TEST(res);
1.3025 + active->StartL();
1.3026 + CActiveScheduler::Start();
1.3027 + TEST2(active->iStatus.Int(), KErrNone);
1.3028 +
1.3029 + // Delete current record
1.3030 + savedId = view->Event().Id();
1.3031 + changeObs->StartCollectingChanges();
1.3032 + active->StartL();
1.3033 + aClient.DeleteEvent(savedId, active->iStatus);
1.3034 + CActiveScheduler::Start();
1.3035 + TEST2(active->iStatus.Int(), KErrNone);
1.3036 + count = view->CountL();
1.3037 + TEST2(count, KTestEventNum + 2 - 5 - 1); // one less
1.3038 +
1.3039 + // Check changes
1.3040 + changeCount = changeObs->Changes().Count();
1.3041 + TEST2(changeCount, 1);
1.3042 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3043 + TEST2(type, ELogChangeTypeEventDeleted);
1.3044 + TEST2(logId, savedId);
1.3045 + TEST2(viewIndex, KTestEventNum + 2 - 5 - 2); // last but one event
1.3046 +
1.3047 + // Check we're now at the end of the view
1.3048 + res = view->NextL(active->iStatus);
1.3049 + TEST(!res);
1.3050 +
1.3051 + // Go to the first record
1.3052 + res = view->FirstL(active->iStatus);
1.3053 + TEST(res);
1.3054 + active->StartL();
1.3055 + CActiveScheduler::Start();
1.3056 + TEST2(active->iStatus.Int(), KErrNone);
1.3057 +
1.3058 + // Delete the first record
1.3059 + savedId = view->Event().Id();
1.3060 + changeObs->StartCollectingChanges();
1.3061 + active->StartL();
1.3062 + aClient.DeleteEvent(savedId, active->iStatus);
1.3063 + CActiveScheduler::Start();
1.3064 + TEST2(active->iStatus.Int(), KErrNone);
1.3065 + count = view->CountL();
1.3066 + TEST2(count, KTestEventNum - 5);
1.3067 +
1.3068 + // Check changes
1.3069 + changeCount = changeObs->Changes().Count();
1.3070 + TEST2(changeCount, 1);
1.3071 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3072 + TEST2(type, ELogChangeTypeEventDeleted);
1.3073 + TEST2(logId, savedId);
1.3074 + TEST2(viewIndex, 0); // first item
1.3075 +
1.3076 + // Check 'next' navigation can be performed correctly
1.3077 + count = 0;
1.3078 + view->NextL(active->iStatus);
1.3079 + do
1.3080 + {
1.3081 + active->StartL();
1.3082 + CActiveScheduler::Start();
1.3083 + TEST2(active->iStatus.Int(), KErrNone);
1.3084 + ++count;
1.3085 + }
1.3086 + while(view->NextL(active->iStatus));
1.3087 + TEST2(count, KTestEventNum - 5 - 1);
1.3088 +
1.3089 + // Check last record
1.3090 + savedId = view->Event().Id();
1.3091 + res = view->LastL(active->iStatus);
1.3092 + TEST(res);
1.3093 + active->StartL();
1.3094 + CActiveScheduler::Start();
1.3095 + TEST2(active->iStatus.Int(), KErrNone);
1.3096 + TEST2(savedId, view->Event().Id());
1.3097 +
1.3098 + // Delete the last record
1.3099 + savedId = view->Event().Id();
1.3100 + changeObs->StartCollectingChanges();
1.3101 + active->StartL();
1.3102 + aClient.DeleteEvent(savedId, active->iStatus);
1.3103 + CActiveScheduler::Start();
1.3104 + TEST2(active->iStatus.Int(), KErrNone);
1.3105 + count = view->CountL();
1.3106 + TEST2(count, KTestEventNum - 6);
1.3107 +
1.3108 + // Check changes
1.3109 + changeCount = changeObs->Changes().Count();
1.3110 + TEST2(changeCount, 1);
1.3111 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3112 + TEST2(type, ELogChangeTypeEventDeleted);
1.3113 + TEST2(logId, savedId);
1.3114 + TEST2(viewIndex, count); // There's now one less item, and we deleted the last item of the previous view
1.3115 +
1.3116 + // Check we're still at the end of the view
1.3117 + res = view->NextL(active->iStatus);
1.3118 + TEST(!res);
1.3119 +
1.3120 + CleanupStack::PopAndDestroy(5, event); // view, changeObs, active, filter, event
1.3121 + }
1.3122 +
1.3123 +CBaBackupSessionWrapper* theBackup = NULL;
1.3124 +
1.3125 +LOCAL_C TBool IsLogOpenL()
1.3126 + {
1.3127 + return TestUtils::IsDatabaseOpenL();
1.3128 + }
1.3129 +
1.3130 +LOCAL_C void TestLogOpenL()
1.3131 + {
1.3132 + TEST(IsLogOpenL());
1.3133 + }
1.3134 +
1.3135 +LOCAL_C void TestLogClosedL()
1.3136 + {
1.3137 + TEST(!IsLogOpenL());
1.3138 + }
1.3139 +
1.3140 +LOCAL_C void StartBackupL()
1.3141 + {
1.3142 + User::InfoPrint(_L("Backup"));
1.3143 +
1.3144 + TDriveUnit driveUnit(EDriveC);
1.3145 + TDriveName name = driveUnit.Name();
1.3146 +
1.3147 + TParse parse;
1.3148 + LEAVE_IF_ERROR(parse.Set(KLogDatabaseName, &name, NULL));
1.3149 +
1.3150 + delete theBackup;
1.3151 + theBackup = NULL;
1.3152 + theBackup = CBaBackupSessionWrapper::NewL();
1.3153 +
1.3154 + theBackup->CloseFileL(parse.FullName(), MBackupObserver::EReleaseLockNoAccess);
1.3155 + User::After(1000000);
1.3156 + }
1.3157 +
1.3158 +LOCAL_C void EndBackupL()
1.3159 + {
1.3160 + delete theBackup;
1.3161 + theBackup = NULL;
1.3162 + User::After(1000000);
1.3163 + }
1.3164 +
1.3165 +LOCAL_C void DelayL(TInt aDelay)
1.3166 + {
1.3167 + CTestTimer* timer = CTestTimer::NewL();
1.3168 + timer->After(aDelay);
1.3169 + CActiveScheduler::Start();
1.3170 + delete timer;
1.3171 + }
1.3172 +
1.3173 +/**
1.3174 +@SYMTestCaseID SYSLIB-LOGENG-CT-0869
1.3175 +@SYMTestCaseDesc Tests for CLogViewChangeObserver::HaveChanges(),CLogViewChangeObserver::Changes() functions
1.3176 +@SYMTestPriority High
1.3177 +@SYMTestActions Check for observing changes while adding,deleting events.Check for observing changes after a backup.
1.3178 + Check for navigating the view.Test for KErrNone condition.
1.3179 +@SYMTestExpectedResults Test must not fail
1.3180 +@SYMREQ REQ0000
1.3181 +*/
1.3182 +LOCAL_C void TestViewChangeEvents1aL(CLogClient& aClient)
1.3183 + {
1.3184 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0869 "));
1.3185 + TestUtils::DeleteDatabaseL();
1.3186 +
1.3187 + CLogEvent* event = CLogEvent::NewL();
1.3188 + CleanupStack::PushL(event);
1.3189 +
1.3190 + CLogFilter* filter = CLogFilter::NewL();
1.3191 + CleanupStack::PushL(filter);
1.3192 + filter->SetContact(KTestContact);
1.3193 + filter->SetEventType(KLogPacketDataEventTypeUid);
1.3194 +
1.3195 + CTestActive* active = new(ELeave)CTestActive();
1.3196 + CleanupStack::PushL(active);
1.3197 +
1.3198 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.3199 + changeObs->SetActive();
1.3200 +
1.3201 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.3202 + CleanupStack::PushL(view);
1.3203 +
1.3204 + // Incoming
1.3205 + TBuf<KLogMaxDirectionLength> buf;
1.3206 + aClient.GetString(buf, R_LOG_DIR_IN);
1.3207 +
1.3208 + event->SetEventType(KLogPacketDataEventTypeUid);
1.3209 + event->SetDirection(buf);
1.3210 + event->SetContact(KTestContact);
1.3211 +
1.3212 + TInt i;
1.3213 + TInt count;
1.3214 + for(count = 0; count < KTestEventNum; count++)
1.3215 + {
1.3216 + active->StartL();
1.3217 + aClient.AddEvent(*event, active->iStatus);
1.3218 + CActiveScheduler::Start();
1.3219 + TEST2(active->iStatus.Int(), KErrNone);
1.3220 + User::After(1 * 1000000);
1.3221 + }
1.3222 + //
1.3223 + TEST2(view->CountL(), 0);
1.3224 + active->StartL();
1.3225 + TEST(view->SetFilterL(*filter, active->iStatus));
1.3226 + CActiveScheduler::Start();
1.3227 + TEST2(active->iStatus.Int(), KErrNone);
1.3228 + TEST2(view->CountL(), KTestEventNum);
1.3229 + //
1.3230 + count = KTestEventNum;
1.3231 + TEST(view->FirstL(active->iStatus));
1.3232 + do {
1.3233 + active->StartL();
1.3234 + CActiveScheduler::Start();
1.3235 + TEST2(active->iStatus.Int(), KErrNone);
1.3236 + //
1.3237 + TEST2(view->CountL(), KTestEventNum);
1.3238 + const TLogId eventId = view->Event().Id();
1.3239 + TEST2(eventId, (TLogId)--count);
1.3240 + }
1.3241 + while(view->NextL(active->iStatus));
1.3242 +
1.3243 + // Transients
1.3244 + TInt changeCount;
1.3245 + TLogId logId;
1.3246 + TInt viewIndex;
1.3247 + TLogDatabaseChangeType type;
1.3248 + CLogChangeDefinition* changes;
1.3249 +
1.3250 + // Add an event and check for changes
1.3251 + active->StartL();
1.3252 + aClient.AddEvent(*event, active->iStatus);
1.3253 + changes = changeObs->WaitForChangesLC();
1.3254 + if (active->IsActive())
1.3255 + CActiveScheduler::Start();
1.3256 + TEST2(active->iStatus.Int(), KErrNone);
1.3257 + count = view->CountL();
1.3258 + TEST2(count, KTestEventNum+1);
1.3259 +
1.3260 + changeCount = changes->Count();
1.3261 + for(i=0; i<changeCount; i++)
1.3262 + {
1.3263 + type = changes->At(i, logId, viewIndex);
1.3264 + TheTest.Printf(_L("Change Type: %d, logId: %d, viewIndex: %d"), type, logId, viewIndex);
1.3265 + }
1.3266 +
1.3267 + // Check the change was as expected
1.3268 + TEST2(changes->Count(), 1);
1.3269 + type = changes->At(0, logId, viewIndex);
1.3270 + TEST2(type, ELogChangeTypeEventAdded);
1.3271 + TEST2(viewIndex, 0); // first (newest) event in the view
1.3272 + {
1.3273 + const TLogId expectedLogId = ((TLogId) KTestEventNum);
1.3274 + TEST2(logId, expectedLogId);
1.3275 + }
1.3276 + CleanupStack::PopAndDestroy(changes);
1.3277 +
1.3278 + // Check view navigation
1.3279 + i=0;
1.3280 + TEST(view->FirstL(active->iStatus));
1.3281 + do
1.3282 + {
1.3283 + active->StartL();
1.3284 + CActiveScheduler::Start();
1.3285 + TEST2(active->iStatus.Int(), KErrNone);
1.3286 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3287 + }
1.3288 + while(view->NextL(active->iStatus));
1.3289 + TheTest.Printf(_L("==\n"));
1.3290 + TEST2(i, count);
1.3291 + TEST(view->FirstL(active->iStatus));
1.3292 + active->StartL();
1.3293 + CActiveScheduler::Start();
1.3294 + TEST2(active->iStatus.Int(), KErrNone);
1.3295 +
1.3296 + // Check that changes work after a backup
1.3297 + DelayL(1000000);
1.3298 + StartBackupL();
1.3299 + DelayL(1000000);
1.3300 + TestLogClosedL();
1.3301 + EndBackupL();
1.3302 + TestLogOpenL();
1.3303 +
1.3304 + // Delete some events
1.3305 + TEST(KTestEventNum >= 10);
1.3306 + changeObs->StartCollectingChanges();
1.3307 + for(i=1; i<KTestEventNum; i+=2)
1.3308 + {
1.3309 + active->StartL();
1.3310 + aClient.DeleteEvent(TLogId(i), active->iStatus);
1.3311 + CActiveScheduler::Start();
1.3312 + TEST2(active->iStatus.Int(), KErrNone);
1.3313 + }
1.3314 +
1.3315 + // Check changes
1.3316 + changeCount = changeObs->Changes().Count();
1.3317 + TEST2(changeCount, 5); // 1,3,5,7,9
1.3318 + for(i=0; i<changeCount; i++)
1.3319 + {
1.3320 + TEST2(changeObs->Changes().At(i, logId, viewIndex), ELogChangeTypeEventDeleted);
1.3321 + TEST2(logId, TLogId(2*i + 1));
1.3322 + TEST2(viewIndex, 10 - ((2*i) + 1));
1.3323 + }
1.3324 +
1.3325 + // Check that changes work after a backup
1.3326 + StartBackupL();
1.3327 + DelayL(1000000);
1.3328 + TestLogClosedL();
1.3329 + EndBackupL();
1.3330 + TestLogOpenL();
1.3331 +
1.3332 + // Add a new event that shouldn't appear in the view
1.3333 + changeObs->StartCollectingChanges();
1.3334 + event->SetContact(TLogContactItemId(0));
1.3335 + active->StartL();
1.3336 + aClient.AddEvent(*event, active->iStatus);
1.3337 + CActiveScheduler::Start();
1.3338 + TEST2(active->iStatus.Int(), KErrNone);
1.3339 + count = view->CountL();
1.3340 + TEST2(count, KTestEventNum + 1 - 5);
1.3341 + TEST2(event->Id(), KTestEventNum + 1);
1.3342 +
1.3343 + // Check changes
1.3344 + TEST(!changeObs->HaveChanges());
1.3345 +
1.3346 + // Check view navigation
1.3347 + i=0;
1.3348 + TEST(view->FirstL(active->iStatus));
1.3349 + do
1.3350 + {
1.3351 + active->StartL();
1.3352 + CActiveScheduler::Start();
1.3353 + TEST2(active->iStatus.Int(), KErrNone);
1.3354 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3355 + }
1.3356 + while(view->NextL(active->iStatus));
1.3357 + TheTest.Printf(_L("==\n"));
1.3358 + TEST2(i, count);
1.3359 + TEST(view->FirstL(active->iStatus));
1.3360 + active->StartL();
1.3361 + CActiveScheduler::Start();
1.3362 + TEST2(active->iStatus.Int(), KErrNone);
1.3363 +
1.3364 + // Check that changes work after a backup
1.3365 + StartBackupL();
1.3366 + DelayL(1000000);
1.3367 + TestLogClosedL();
1.3368 + EndBackupL();
1.3369 + TestLogOpenL();
1.3370 +
1.3371 + // Delete event which isn't in view
1.3372 + changeObs->StartCollectingChanges();
1.3373 + active->StartL();
1.3374 + aClient.DeleteEvent(event->Id(), active->iStatus);
1.3375 + CActiveScheduler::Start();
1.3376 + TEST2(active->iStatus.Int(), KErrNone);
1.3377 + count = view->CountL();
1.3378 + TEST2(count, KTestEventNum + 1 - 5);
1.3379 +
1.3380 + // Check changes
1.3381 + TEST(!changeObs->HaveChanges());
1.3382 +
1.3383 + // Check view navigation
1.3384 + i=0;
1.3385 + TEST(view->FirstL(active->iStatus));
1.3386 + do
1.3387 + {
1.3388 + active->StartL();
1.3389 + CActiveScheduler::Start();
1.3390 + TEST2(active->iStatus.Int(), KErrNone);
1.3391 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3392 + }
1.3393 + while(view->NextL(active->iStatus));
1.3394 + TheTest.Printf(_L("==\n"));
1.3395 + TEST2(i, count);
1.3396 + TEST(view->FirstL(active->iStatus));
1.3397 + active->StartL();
1.3398 + CActiveScheduler::Start();
1.3399 + TEST2(active->iStatus.Int(), KErrNone);
1.3400 +
1.3401 + // Check that changes work after a backup
1.3402 + StartBackupL();
1.3403 + DelayL(1000000);
1.3404 + TestLogClosedL();
1.3405 + EndBackupL();
1.3406 + TestLogOpenL();
1.3407 +
1.3408 + // Add a new event again that shouldn't appear in the view
1.3409 + changeObs->StartCollectingChanges();
1.3410 + event->SetContact(TLogContactItemId(0));
1.3411 + active->StartL();
1.3412 + aClient.AddEvent(*event, active->iStatus);
1.3413 + CActiveScheduler::Start();
1.3414 + TEST2(active->iStatus.Int(), KErrNone);
1.3415 + count = view->CountL();
1.3416 + TEST2(count, KTestEventNum + 1 - 5);
1.3417 + TEST2(event->Id(), KTestEventNum + 2);
1.3418 +
1.3419 + // Check changes
1.3420 + TEST(!changeObs->HaveChanges());
1.3421 +
1.3422 + // Check view navigation
1.3423 + i=0;
1.3424 + TEST(view->FirstL(active->iStatus));
1.3425 + do
1.3426 + {
1.3427 + active->StartL();
1.3428 + CActiveScheduler::Start();
1.3429 + TEST2(active->iStatus.Int(), KErrNone);
1.3430 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3431 + }
1.3432 + while(view->NextL(active->iStatus));
1.3433 + TheTest.Printf(_L("==\n"));
1.3434 + TEST2(i, count);
1.3435 + TEST(view->FirstL(active->iStatus));
1.3436 + active->StartL();
1.3437 + CActiveScheduler::Start();
1.3438 + TEST2(active->iStatus.Int(), KErrNone);
1.3439 +
1.3440 + // Check that changes work after a backup
1.3441 + StartBackupL();
1.3442 + DelayL(1000000);
1.3443 + TestLogClosedL();
1.3444 + EndBackupL();
1.3445 + TestLogOpenL();
1.3446 +
1.3447 + // Change event so that it appears in the view
1.3448 + changeObs->StartCollectingChanges();
1.3449 + event->SetContact(KTestContact);
1.3450 + active->StartL();
1.3451 + aClient.ChangeEvent(*event, active->iStatus);
1.3452 + CActiveScheduler::Start();
1.3453 + TEST2(active->iStatus.Int(), KErrNone);
1.3454 + count = view->CountL();
1.3455 + TEST2(count, KTestEventNum + 2 - 5);
1.3456 + TEST2(event->Id(), KTestEventNum + 2); // Shouldn't change
1.3457 +
1.3458 + // Check changes
1.3459 + changeCount = changeObs->Changes().Count();
1.3460 + TEST2(changeCount, 1);
1.3461 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3462 + TEST2(type, ELogChangeTypeEventAdded);
1.3463 + TEST2(logId, KTestEventNum + 2);
1.3464 + TEST2(viewIndex, 0);
1.3465 +
1.3466 + // Check view navigation
1.3467 + i=0;
1.3468 + TEST(view->FirstL(active->iStatus));
1.3469 + do
1.3470 + {
1.3471 + active->StartL();
1.3472 + CActiveScheduler::Start();
1.3473 + TEST2(active->iStatus.Int(), KErrNone);
1.3474 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3475 + }
1.3476 + while(view->NextL(active->iStatus));
1.3477 + TheTest.Printf(_L("==\n"));
1.3478 + TEST2(i, count);
1.3479 + TEST(view->FirstL(active->iStatus));
1.3480 + active->StartL();
1.3481 + CActiveScheduler::Start();
1.3482 + TEST2(active->iStatus.Int(), KErrNone);
1.3483 +
1.3484 + // Check that changes work after a backup
1.3485 + StartBackupL();
1.3486 + DelayL(1000000);
1.3487 + TestLogClosedL();
1.3488 + EndBackupL();
1.3489 + TestLogOpenL();
1.3490 +
1.3491 + // Simply change an event in the view
1.3492 + changeObs->StartCollectingChanges();
1.3493 + event->SetDescription(_L("Test"));
1.3494 + active->StartL();
1.3495 + aClient.ChangeEvent(*event, active->iStatus);
1.3496 + CActiveScheduler::Start();
1.3497 + TEST2(active->iStatus.Int(), KErrNone);
1.3498 + count = view->CountL();
1.3499 + TEST2(count, KTestEventNum + 2 - 5); // Shouldn't change
1.3500 + TEST2(event->Id(), KTestEventNum + 2); // Shouldn't change
1.3501 +
1.3502 + // Check changes
1.3503 + changeCount = changeObs->Changes().Count();
1.3504 + TEST2(changeCount, 1);
1.3505 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3506 + TEST2(type, ELogChangeTypeEventChanged);
1.3507 + TEST2(logId, KTestEventNum + 2);
1.3508 + TEST2(viewIndex, 0);
1.3509 +
1.3510 + // Check that changes work after a backup
1.3511 + StartBackupL();
1.3512 + DelayL(1000000);
1.3513 + TestLogClosedL();
1.3514 + EndBackupL();
1.3515 + TestLogOpenL();
1.3516 +
1.3517 + // Change an event in the view so that it is deleted
1.3518 + changeObs->StartCollectingChanges();
1.3519 + event->SetContact(0);
1.3520 + active->StartL();
1.3521 + aClient.ChangeEvent(*event, active->iStatus);
1.3522 + CActiveScheduler::Start();
1.3523 + TEST2(active->iStatus.Int(), KErrNone);
1.3524 + count = view->CountL();
1.3525 + TEST2(count, KTestEventNum + 2 - 5 - 1); // one less now
1.3526 +
1.3527 + // Check changes
1.3528 + changeCount = changeObs->Changes().Count();
1.3529 + TEST2(changeCount, 1);
1.3530 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3531 + TEST2(type, ELogChangeTypeEventDeleted);
1.3532 + TEST2(logId, KTestEventNum + 2);
1.3533 + TEST2(viewIndex, 0);
1.3534 +
1.3535 + // Navigate part way through the view so we have
1.3536 + // a cursor position part way through...
1.3537 + i=0;
1.3538 + count = view->CountL();
1.3539 + TEST(view->FirstL(active->iStatus));
1.3540 + do
1.3541 + {
1.3542 + active->StartL();
1.3543 + CActiveScheduler::Start();
1.3544 + TEST2(active->iStatus.Int(), KErrNone);
1.3545 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3546 + }
1.3547 + while(view->NextL(active->iStatus));
1.3548 + TheTest.Printf(_L("==\n"));
1.3549 + TEST2(i, count);
1.3550 + TEST2(view->Event().Id(), TLogId(0));
1.3551 +
1.3552 + // Save id
1.3553 + TLogId savedId = view->Event().Id();
1.3554 +
1.3555 + // Go one back
1.3556 + TEST(view->PreviousL(active->iStatus));
1.3557 + active->StartL();
1.3558 + CActiveScheduler::Start();
1.3559 + TEST2(active->iStatus.Int(), KErrNone);
1.3560 +
1.3561 + // Check that changes work after a backup
1.3562 + StartBackupL();
1.3563 + DelayL(1000000);
1.3564 + TestLogClosedL();
1.3565 + EndBackupL();
1.3566 + TestLogOpenL();
1.3567 +
1.3568 + // Insert something
1.3569 + changeObs->StartCollectingChanges();
1.3570 + event->SetContact(KTestContact);
1.3571 + active->StartL();
1.3572 + aClient.AddEvent(*event, active->iStatus);
1.3573 + CActiveScheduler::Start();
1.3574 + TEST2(active->iStatus.Int(), KErrNone);
1.3575 + count = view->CountL();
1.3576 + TEST2(count, KTestEventNum + 2 - 5); // one more now
1.3577 + TEST2(event->Id(), KTestEventNum + 3);
1.3578 +
1.3579 + // Check changes
1.3580 + changeCount = changeObs->Changes().Count();
1.3581 + TEST2(changeCount, 1);
1.3582 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3583 + TEST2(type, ELogChangeTypeEventAdded);
1.3584 + TEST2(logId, KTestEventNum + 3);
1.3585 + TEST2(viewIndex, 0);
1.3586 +
1.3587 + // Check we can still go forward to the last record
1.3588 + TEST(view->NextL(active->iStatus));
1.3589 + active->StartL();
1.3590 + CActiveScheduler::Start();
1.3591 + TEST2(active->iStatus.Int(), KErrNone);
1.3592 + TEST2(view->Event().Id(), savedId);
1.3593 +
1.3594 + // Go one back
1.3595 + TEST(view->PreviousL(active->iStatus));
1.3596 + active->StartL();
1.3597 + CActiveScheduler::Start();
1.3598 + TEST2(active->iStatus.Int(), KErrNone);
1.3599 +
1.3600 + // Check that changes work after a backup
1.3601 + StartBackupL();
1.3602 + DelayL(1000000);
1.3603 + TestLogClosedL();
1.3604 + EndBackupL();
1.3605 + TestLogOpenL();
1.3606 +
1.3607 + // Delete current record
1.3608 + savedId = view->Event().Id();
1.3609 + changeObs->StartCollectingChanges();
1.3610 + active->StartL();
1.3611 + aClient.DeleteEvent(savedId, active->iStatus);
1.3612 + CActiveScheduler::Start();
1.3613 + TEST2(active->iStatus.Int(), KErrNone);
1.3614 + count = view->CountL();
1.3615 + TEST2(count, KTestEventNum + 2 - 5 - 1); // one less
1.3616 +
1.3617 + // Check changes
1.3618 + changeCount = changeObs->Changes().Count();
1.3619 + TEST2(changeCount, 1);
1.3620 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3621 + TEST2(type, ELogChangeTypeEventDeleted);
1.3622 + TEST2(logId, savedId);
1.3623 + TEST2(viewIndex, KTestEventNum + 2 - 5 - 2); // last but one event
1.3624 +
1.3625 + // Check we're now at the end of the view
1.3626 + TEST(!view->NextL(active->iStatus));
1.3627 +
1.3628 + // Go to the first record
1.3629 + TEST(view->FirstL(active->iStatus));
1.3630 + active->StartL();
1.3631 + CActiveScheduler::Start();
1.3632 + TEST2(active->iStatus.Int(), KErrNone);
1.3633 +
1.3634 + // Check that changes work after a backup
1.3635 + StartBackupL();
1.3636 + DelayL(1000000);
1.3637 + TestLogClosedL();
1.3638 + EndBackupL();
1.3639 + TestLogOpenL();
1.3640 +
1.3641 + // Delete the first record
1.3642 + savedId = view->Event().Id();
1.3643 + changeObs->StartCollectingChanges();
1.3644 + active->StartL();
1.3645 + aClient.DeleteEvent(savedId, active->iStatus);
1.3646 + CActiveScheduler::Start();
1.3647 + TEST2(active->iStatus.Int(), KErrNone);
1.3648 + count = view->CountL();
1.3649 + TEST2(count, KTestEventNum - 5);
1.3650 +
1.3651 + // Check changes
1.3652 + changeCount = changeObs->Changes().Count();
1.3653 + TEST2(changeCount, 1);
1.3654 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3655 + TEST2(type, ELogChangeTypeEventDeleted);
1.3656 + TEST2(logId, savedId);
1.3657 + TEST2(viewIndex, 0); // first item
1.3658 +
1.3659 + // Check 'next' navigation can be performed correctly
1.3660 + count = 0;
1.3661 + view->NextL(active->iStatus);
1.3662 + do
1.3663 + {
1.3664 + active->StartL();
1.3665 + CActiveScheduler::Start();
1.3666 + TEST2(active->iStatus.Int(), KErrNone);
1.3667 + ++count;
1.3668 + }
1.3669 + while(view->NextL(active->iStatus));
1.3670 + TEST2(count, KTestEventNum - 5 - 1);
1.3671 +
1.3672 + // Check last record
1.3673 + savedId = view->Event().Id();
1.3674 + TEST(view->LastL(active->iStatus));
1.3675 + active->StartL();
1.3676 + CActiveScheduler::Start();
1.3677 + TEST2(active->iStatus.Int(), KErrNone);
1.3678 + TEST2(savedId, view->Event().Id());
1.3679 +
1.3680 + // Check that changes work after a backup
1.3681 + StartBackupL();
1.3682 + DelayL(1000000);
1.3683 + TestLogClosedL();
1.3684 + EndBackupL();
1.3685 + TestLogOpenL();
1.3686 +
1.3687 + // Delete the last record
1.3688 + savedId = view->Event().Id();
1.3689 + changeObs->StartCollectingChanges();
1.3690 + active->StartL();
1.3691 + aClient.DeleteEvent(savedId, active->iStatus);
1.3692 + CActiveScheduler::Start();
1.3693 + TEST2(active->iStatus.Int(), KErrNone);
1.3694 + count = view->CountL();
1.3695 + TEST2(count, KTestEventNum - 6);
1.3696 +
1.3697 + // Check changes
1.3698 + changeCount = changeObs->Changes().Count();
1.3699 + TEST2(changeCount, 1);
1.3700 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3701 + TEST2(type, ELogChangeTypeEventDeleted);
1.3702 + TEST2(logId, savedId);
1.3703 + TEST2(viewIndex, count); // There's now one less item, and we deleted the last item of the previous view
1.3704 +
1.3705 + // Check we're still at the end of the view
1.3706 + TEST(!view->NextL(active->iStatus));
1.3707 +
1.3708 + CleanupStack::PopAndDestroy(5, event); // view, changeObs, active, filter, event
1.3709 + }
1.3710 +
1.3711 +/**
1.3712 +@SYMTestCaseID SYSLIB-LOGENG-CT-0870
1.3713 +@SYMTestCaseDesc Tests for CLogViewChangeObserver::HaveChanges(),Changes() functions
1.3714 +@SYMTestPriority High
1.3715 +@SYMTestActions Check for observing changes while adding,deleting events.Check for observing changes after a backup.
1.3716 + Check for observing changes while traversing through the events in the view.
1.3717 + Delete everything in the view and make sure we can't navigate anymore.
1.3718 +@SYMTestExpectedResults Test must not fail
1.3719 +@SYMREQ REQ0000
1.3720 +*/
1.3721 +LOCAL_C void TestViewChangeEvents2L(CLogClient& aClient)
1.3722 + {
1.3723 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0870 "));
1.3724 + // Transients
1.3725 + TInt i=0;
1.3726 + TInt count;
1.3727 + TBuf<1> description; description.SetLength(1);
1.3728 + TInt changeCount;
1.3729 + TLogId logId;
1.3730 + TInt viewIndex;
1.3731 + TLogDatabaseChangeType type;
1.3732 + TLogId runningNewId = 0;
1.3733 + //
1.3734 + const TInt KChangeEventTest2NumberOfEventsInView = 7;
1.3735 + TestUtils::DeleteDatabaseL();
1.3736 +
1.3737 + CLogEvent* event = CLogEvent::NewL();
1.3738 + CleanupStack::PushL(event);
1.3739 +
1.3740 + CLogFilter* filter = CLogFilter::NewL();
1.3741 + CleanupStack::PushL(filter);
1.3742 + filter->SetContact(KTestContact);
1.3743 +
1.3744 + CTestActive* active = new(ELeave)CTestActive();
1.3745 + CleanupStack::PushL(active);
1.3746 +
1.3747 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.3748 + changeObs->SetActive();
1.3749 +
1.3750 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.3751 + CleanupStack::PushL(view);
1.3752 +
1.3753 + // Add seed events
1.3754 + TBuf<KLogMaxDirectionLength> buf;
1.3755 + aClient.GetString(buf, R_LOG_DIR_IN);
1.3756 +
1.3757 + event->SetEventType(KLogPacketDataEventTypeUid);
1.3758 + event->SetDirection(buf);
1.3759 + //
1.3760 + for(count = 0; count < KChangeEventTest2NumberOfEventsInView; count++)
1.3761 + {
1.3762 + // Have to create one event which isn't in the view by default, but
1.3763 + // when it 'appears' will be part way through
1.3764 + if (count == 3 && description[0] != TUint16('Z'))
1.3765 + {
1.3766 + description[0] = TUint16('Z');
1.3767 + event->SetContact(0);
1.3768 +
1.3769 + // Go back and do this one again but with a real view entry this time, i.e. 'D'
1.3770 + --count;
1.3771 + }
1.3772 + else
1.3773 + {
1.3774 + description[0] = TUint16('A' + KChangeEventTest2NumberOfEventsInView - count);
1.3775 + event->SetContact(KTestContact);
1.3776 + }
1.3777 + event->SetDescription(description);
1.3778 + //
1.3779 + active->StartL();
1.3780 + aClient.AddEvent(*event, active->iStatus);
1.3781 + CActiveScheduler::Start();
1.3782 + TEST2(active->iStatus.Int(), KErrNone);
1.3783 + TEST2(event->Id(), runningNewId++);
1.3784 + User::After(1 * 1000000);
1.3785 + }
1.3786 + //
1.3787 + TEST2(view->CountL(), 0);
1.3788 + active->StartL();
1.3789 + TBool res =view->SetFilterL(*filter, active->iStatus);
1.3790 + TEST(res);
1.3791 + CActiveScheduler::Start();
1.3792 + TEST2(active->iStatus.Int(), KErrNone);
1.3793 + count = view->CountL();
1.3794 + TEST2(count, KChangeEventTest2NumberOfEventsInView);
1.3795 +
1.3796 + res = view->FirstL(active->iStatus);
1.3797 + TEST(res);
1.3798 + do
1.3799 + {
1.3800 + active->StartL();
1.3801 + CActiveScheduler::Start();
1.3802 + TEST2(active->iStatus.Int(), KErrNone);
1.3803 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.3804 + }
1.3805 + while(view->NextL(active->iStatus));
1.3806 +
1.3807 + // Check addition change events
1.3808 + res = view->FirstL(active->iStatus);
1.3809 + TEST(res);
1.3810 + active->StartL();
1.3811 + CActiveScheduler::Start();
1.3812 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.3813 + TEST2(view->Event().Id(), 7);
1.3814 +
1.3815 + // Add a new entry - should appear as the first item in the view
1.3816 + description[0] = TUint16('X');
1.3817 + event->SetDescription(description);
1.3818 + //
1.3819 + changeObs->StartCollectingChanges();
1.3820 + active->StartL();
1.3821 + aClient.AddEvent(*event, active->iStatus);
1.3822 + CActiveScheduler::Start();
1.3823 + TEST2(active->iStatus.Int(), KErrNone);
1.3824 + TEST2(event->Id(), runningNewId++);
1.3825 +
1.3826 + // Check changes
1.3827 + changeCount = changeObs->Changes().Count();
1.3828 + TEST2(changeCount, 1);
1.3829 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3830 + TEST2(type, ELogChangeTypeEventAdded);
1.3831 + TEST2(logId, runningNewId-1);
1.3832 + TEST2(viewIndex, 0); // 8, [7], 6, 5, 4, 2, 1, 0
1.3833 +
1.3834 + // Check we can go forward
1.3835 + res = view->NextL(active->iStatus);
1.3836 + TEST(res);
1.3837 + active->StartL();
1.3838 + CActiveScheduler::Start();
1.3839 + TEST2(active->iStatus.Int(), KErrNone);
1.3840 + TEST2(view->Event().Id(), TLogId(6)); // 8, 7, [6], 5, 4, 2, 1, 0
1.3841 +
1.3842 + // Check we can now go back (new first entry)
1.3843 + res = view->PreviousL(active->iStatus);
1.3844 + TEST(res);
1.3845 + active->StartL();
1.3846 + CActiveScheduler::Start();
1.3847 + TEST2(active->iStatus.Int(), KErrNone); // 8, [7], 6, 5, 4, 2, 1, 0
1.3848 + TEST2(view->Event().Id(), 7);
1.3849 + res = view->PreviousL(active->iStatus);
1.3850 + TEST(res);
1.3851 + active->StartL();
1.3852 + CActiveScheduler::Start();
1.3853 + TEST2(active->iStatus.Int(), KErrNone); // [8], 7, 6, 5, 4, 2, 1, 0
1.3854 + TEST2(view->Event().Id(), TLogId(KChangeEventTest2NumberOfEventsInView+1));
1.3855 +
1.3856 + // Delete added event
1.3857 + changeObs->ResetChanges();
1.3858 + changeCount = changeObs->Changes().Count();
1.3859 + TEST2(changeCount, 0);
1.3860 + active->StartL();
1.3861 + aClient.DeleteEvent(view->Event().Id(), active->iStatus);
1.3862 + CActiveScheduler::Start();
1.3863 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.3864 +
1.3865 + // Check deletion changes
1.3866 + changeCount = changeObs->Changes().Count();
1.3867 + TEST2(changeCount, 1);
1.3868 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3869 + TEST2(type, ELogChangeTypeEventDeleted);
1.3870 + TEST2(logId, runningNewId-1);
1.3871 + TEST2(viewIndex, 0);
1.3872 +
1.3873 + // Go to end of view
1.3874 + res = view->LastL(active->iStatus);
1.3875 + TEST(res);
1.3876 + active->StartL();
1.3877 + CActiveScheduler::Start();
1.3878 + TEST2(active->iStatus.Int(), KErrNone);
1.3879 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 2, 1, [0]
1.3880 +
1.3881 + // Add new event
1.3882 + description[0] = TUint16('X');
1.3883 + event->SetDescription(description);
1.3884 + //
1.3885 + changeObs->StartCollectingChanges();
1.3886 + active->StartL();
1.3887 + aClient.AddEvent(*event, active->iStatus);
1.3888 + CActiveScheduler::Start();
1.3889 + TEST2(active->iStatus.Int(), KErrNone);
1.3890 + TEST2(event->Id(), runningNewId++);
1.3891 +
1.3892 + // Check changes
1.3893 + changeCount = changeObs->Changes().Count();
1.3894 + TEST2(changeCount, 1);
1.3895 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3896 + TEST2(type, ELogChangeTypeEventAdded);
1.3897 + TEST2(logId, runningNewId-1);
1.3898 + TEST2(viewIndex, 0); // 9, 7, 6, 5, 4, 2, 1, [0]
1.3899 +
1.3900 + // Check we can't go forward
1.3901 + res = view->NextL(active->iStatus);
1.3902 + TEST(!res);
1.3903 +
1.3904 + // Go back to the first record
1.3905 + res = view->FirstL(active->iStatus);
1.3906 + TEST(res);
1.3907 + active->StartL();
1.3908 + CActiveScheduler::Start();
1.3909 + TEST2(active->iStatus.Int(), KErrNone);
1.3910 + TEST2(view->Event().Id(), TLogId(runningNewId-1)); // 9, 7, 6, 5, 4, 2, 1, [0]
1.3911 +
1.3912 + // Delete added event
1.3913 + changeObs->ResetChanges();
1.3914 + active->StartL();
1.3915 + aClient.DeleteEvent(view->Event().Id(), active->iStatus);
1.3916 + CActiveScheduler::Start();
1.3917 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.3918 +
1.3919 + // Check deletion changes
1.3920 + changeCount = changeObs->Changes().Count();
1.3921 + TEST2(changeCount, 1);
1.3922 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3923 + TEST2(type, ELogChangeTypeEventDeleted);
1.3924 + TEST2(logId, runningNewId-1);
1.3925 + TEST2(viewIndex, 0);
1.3926 +
1.3927 + // Go part way through view
1.3928 + res = view->NextL(active->iStatus);
1.3929 + TEST(res);
1.3930 + active->StartL();
1.3931 + CActiveScheduler::Start();
1.3932 + TEST2(active->iStatus.Int(), KErrNone);
1.3933 + TEST2(view->Event().Id(), TLogId(6)); // 7, [6], 5, 4, 2, 1, 0
1.3934 + res = view->NextL(active->iStatus);
1.3935 + TEST(res);
1.3936 + active->StartL();
1.3937 + CActiveScheduler::Start();
1.3938 + TEST2(active->iStatus.Int(), KErrNone);
1.3939 + TEST2(view->Event().Id(), TLogId(5)); // 7, 6, [5], 4, 2, 1, 0
1.3940 +
1.3941 + // Add new event
1.3942 + description[0] = TUint16('X');
1.3943 + event->SetDescription(description);
1.3944 + //
1.3945 + changeObs->StartCollectingChanges();
1.3946 + active->StartL();
1.3947 + aClient.AddEvent(*event, active->iStatus);
1.3948 + CActiveScheduler::Start();
1.3949 + TEST2(active->iStatus.Int(), KErrNone);
1.3950 + TEST2(event->Id(), runningNewId++);
1.3951 +
1.3952 + // Check changes
1.3953 + changeCount = changeObs->Changes().Count();
1.3954 + TEST2(changeCount, 1);
1.3955 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3956 + TEST2(type, ELogChangeTypeEventAdded);
1.3957 + TEST2(logId, runningNewId-1);
1.3958 + TEST2(viewIndex, 0); // 10, 7, 6, [5], 4, 2, 1, 0
1.3959 + changeObs->ResetChanges();
1.3960 +
1.3961 + // Work back to beginning
1.3962 + res = view->PreviousL(active->iStatus);
1.3963 + TEST(res);
1.3964 + active->StartL();
1.3965 + CActiveScheduler::Start();
1.3966 + TEST2(active->iStatus.Int(), KErrNone);
1.3967 + TEST2(view->Event().Id(), TLogId(6)); // 10, 7, [6], 5, 4, 2, 1, 0
1.3968 + res = view->PreviousL(active->iStatus);
1.3969 + TEST(res);
1.3970 + active->StartL();
1.3971 + CActiveScheduler::Start();
1.3972 + TEST2(active->iStatus.Int(), KErrNone);
1.3973 + TEST2(view->Event().Id(), TLogId(7)); // 10, [7], 6, 5, 4, 2, 1, 0
1.3974 + res = view->PreviousL(active->iStatus);
1.3975 + TEST(res);
1.3976 + active->StartL();
1.3977 + CActiveScheduler::Start();
1.3978 + TEST2(active->iStatus.Int(), KErrNone);
1.3979 + TEST2(view->Event().Id(), runningNewId-1); // [10], 7, 6, 5, 4, 2, 1, 0
1.3980 +
1.3981 + // Delete added event
1.3982 + changeCount = changeObs->Changes().Count();
1.3983 + TEST2(changeCount, 0);
1.3984 + active->StartL();
1.3985 + aClient.DeleteEvent(view->Event().Id(), active->iStatus);
1.3986 + CActiveScheduler::Start();
1.3987 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.3988 +
1.3989 + // Check deletion changes
1.3990 + changeCount = changeObs->Changes().Count();
1.3991 + TEST2(changeCount, 1);
1.3992 + type = changeObs->Changes().At(0, logId, viewIndex);
1.3993 + TEST2(type, ELogChangeTypeEventDeleted);
1.3994 + TEST2(logId, runningNewId-1);
1.3995 + TEST2(viewIndex, 0);
1.3996 + changeObs->ResetChanges();
1.3997 +
1.3998 + // Go back to the first record
1.3999 + res = view->FirstL(active->iStatus);
1.4000 + TEST(res);
1.4001 + active->StartL();
1.4002 + CActiveScheduler::Start();
1.4003 + TEST2(active->iStatus.Int(), KErrNone);
1.4004 + TEST2(view->Event().Id(), TLogId(7)); // [7], 6, 5, 4, 2, 1, 0
1.4005 +
1.4006 + // Move one record forward
1.4007 + res = view->NextL(active->iStatus);
1.4008 + TEST(res);
1.4009 + active->StartL();
1.4010 + CActiveScheduler::Start();
1.4011 + TEST2(active->iStatus.Int(), KErrNone);
1.4012 + TEST2(view->Event().Id(), TLogId(6)); // 7, [6], 5, 4, 2, 1, 0
1.4013 +
1.4014 + // Change 'Z' event so that it now appears in the view
1.4015 + changeCount = changeObs->Changes().Count();
1.4016 + TEST2(changeCount, 0);
1.4017 + active->StartL();
1.4018 + event->SetId(TLogId(3));
1.4019 + aClient.GetEvent(*event, active->iStatus);
1.4020 + CActiveScheduler::Start();
1.4021 + TEST2(active->iStatus.Int(), KErrNone);
1.4022 + //
1.4023 + event->SetContact(KTestContact);
1.4024 + active->StartL();
1.4025 + changeObs->StartCollectingChanges();
1.4026 + aClient.ChangeEvent(*event, active->iStatus);
1.4027 + CActiveScheduler::Start();
1.4028 + TEST2(active->iStatus.Int(), KErrNone);
1.4029 + count = view->CountL();
1.4030 + TEST2(count, KChangeEventTest2NumberOfEventsInView+1);
1.4031 +
1.4032 + // Check changes
1.4033 + changeCount = changeObs->Changes().Count();
1.4034 + TEST2(changeCount, 1);
1.4035 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4036 + TEST2(type, ELogChangeTypeEventAdded); // Change resulted in an addition to the view
1.4037 + TEST2(logId, TLogId(3));
1.4038 + TEST2(viewIndex, 4); // 7, [6], 5, 4, 3, 2, 1, 0
1.4039 + changeObs->ResetChanges();
1.4040 +
1.4041 + // Move forwards and check
1.4042 + res = view->NextL(active->iStatus);
1.4043 + TEST(res);
1.4044 + active->StartL();
1.4045 + CActiveScheduler::Start();
1.4046 + TEST2(active->iStatus.Int(), KErrNone);
1.4047 + TEST2(view->Event().Id(), TLogId(5)); // 7, 6, [5], 4, 3, 2, 1, 0
1.4048 + res = view->NextL(active->iStatus);
1.4049 + TEST(res);
1.4050 + active->StartL();
1.4051 + CActiveScheduler::Start();
1.4052 + TEST2(active->iStatus.Int(), KErrNone);
1.4053 + TEST2(view->Event().Id(), TLogId(4)); // 7, 6, 5, [4], 3, 2, 1, 0
1.4054 + res = view->NextL(active->iStatus);
1.4055 + TEST(res);
1.4056 + active->StartL();
1.4057 + CActiveScheduler::Start();
1.4058 + TEST2(active->iStatus.Int(), KErrNone);
1.4059 + TEST2(view->Event().Id(), TLogId(3)); // 7, 6, 5, 4, [3], 2, 1, 0
1.4060 +
1.4061 + // Change 'Z' event so that its now missing from the view again
1.4062 + changeCount = changeObs->Changes().Count();
1.4063 + TEST2(changeCount, 0);
1.4064 + active->StartL();
1.4065 + event->SetId(TLogId(3));
1.4066 + aClient.GetEvent(*event, active->iStatus);
1.4067 + CActiveScheduler::Start();
1.4068 + TEST2(active->iStatus.Int(), KErrNone);
1.4069 + //
1.4070 + event->SetContact(0);
1.4071 + active->StartL();
1.4072 + changeObs->StartCollectingChanges();
1.4073 + aClient.ChangeEvent(*event, active->iStatus);
1.4074 + CActiveScheduler::Start();
1.4075 + TEST2(active->iStatus.Int(), KErrNone);
1.4076 + count = view->CountL();
1.4077 + TEST2(count, KChangeEventTest2NumberOfEventsInView);
1.4078 +
1.4079 + // Check changes
1.4080 + changeCount = changeObs->Changes().Count();
1.4081 + TEST2(changeCount, 1);
1.4082 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4083 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4084 + TEST2(logId, TLogId(3));
1.4085 + TEST2(viewIndex, 4); // 7, 6, 5, 4, [2], 1, 0
1.4086 + changeObs->ResetChanges();
1.4087 +
1.4088 + // Move forwards and check
1.4089 + res = view->NextL(active->iStatus);
1.4090 + TEST(res);
1.4091 + active->StartL();
1.4092 + CActiveScheduler::Start();
1.4093 + TEST2(active->iStatus.Int(), KErrNone);
1.4094 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 2, [1], 0
1.4095 + res = view->NextL(active->iStatus);
1.4096 + TEST(res);
1.4097 + active->StartL();
1.4098 + CActiveScheduler::Start();
1.4099 + TEST2(active->iStatus.Int(), KErrNone);
1.4100 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 2, 1, [0]
1.4101 +
1.4102 + // Move back one
1.4103 + res = view->PreviousL(active->iStatus);
1.4104 + TEST(res);
1.4105 + active->StartL();
1.4106 + CActiveScheduler::Start();
1.4107 + TEST2(active->iStatus.Int(), KErrNone);
1.4108 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 2, [1], 0
1.4109 + changeCount = changeObs->Changes().Count();
1.4110 + TEST2(changeCount, 0);
1.4111 +
1.4112 + // Change 'Z' event so that it now appears in the view
1.4113 + active->StartL();
1.4114 + event->SetId(TLogId(3));
1.4115 + aClient.GetEvent(*event, active->iStatus);
1.4116 + CActiveScheduler::Start();
1.4117 + TEST2(active->iStatus.Int(), KErrNone);
1.4118 + //
1.4119 + event->SetContact(KTestContact);
1.4120 + active->StartL();
1.4121 + changeObs->StartCollectingChanges();
1.4122 + aClient.ChangeEvent(*event, active->iStatus);
1.4123 + CActiveScheduler::Start();
1.4124 + TEST2(active->iStatus.Int(), KErrNone);
1.4125 + count = view->CountL();
1.4126 + TEST2(count, KChangeEventTest2NumberOfEventsInView+1);
1.4127 +
1.4128 + // Check changes
1.4129 + changeCount = changeObs->Changes().Count();
1.4130 + TEST2(changeCount, 1);
1.4131 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4132 + TEST2(type, ELogChangeTypeEventAdded); // Change resulted in an addition to the view
1.4133 + TEST2(logId, TLogId(3));
1.4134 + TEST2(viewIndex, 4); // 7, 6, 5, 4, 3, 2, [1], 0
1.4135 + changeObs->ResetChanges();
1.4136 +
1.4137 + // Check can only move forward one more record
1.4138 + res = view->NextL(active->iStatus);
1.4139 + TEST(res);
1.4140 + active->StartL();
1.4141 + CActiveScheduler::Start();
1.4142 + TEST2(active->iStatus.Int(), KErrNone);
1.4143 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 3, 2, 1, [0]
1.4144 +
1.4145 + // Move back until we are before the inserted record
1.4146 + res = view->PreviousL(active->iStatus);
1.4147 + TEST(res);
1.4148 + active->StartL();
1.4149 + CActiveScheduler::Start();
1.4150 + TEST2(active->iStatus.Int(), KErrNone);
1.4151 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 3, 2, [1], 0
1.4152 + res = view->PreviousL(active->iStatus);
1.4153 + TEST(res);
1.4154 + active->StartL();
1.4155 + CActiveScheduler::Start();
1.4156 + TEST2(active->iStatus.Int(), KErrNone);
1.4157 + TEST2(view->Event().Id(), TLogId(2)); // 7, 6, 5, 4, 3, [2], 1, 0
1.4158 + res = view->PreviousL(active->iStatus);
1.4159 + TEST(res);
1.4160 + active->StartL();
1.4161 + CActiveScheduler::Start();
1.4162 + TEST2(active->iStatus.Int(), KErrNone);
1.4163 + TEST2(view->Event().Id(), TLogId(3)); // 7, 6, 5, 4, [3], 2, 1, 0
1.4164 + res = view->PreviousL(active->iStatus);
1.4165 + TEST(res);
1.4166 + active->StartL();
1.4167 + CActiveScheduler::Start();
1.4168 + TEST2(active->iStatus.Int(), KErrNone);
1.4169 + TEST2(view->Event().Id(), TLogId(4)); // 7, 6, 5, [4], 3, 2, 1, 0
1.4170 + changeCount = changeObs->Changes().Count();
1.4171 + TEST2(changeCount, 0);
1.4172 +
1.4173 + // Change 'Z' event so that its now missing from the view again
1.4174 + active->StartL();
1.4175 + event->SetId(TLogId(3));
1.4176 + aClient.GetEvent(*event, active->iStatus);
1.4177 + CActiveScheduler::Start();
1.4178 + TEST2(active->iStatus.Int(), KErrNone);
1.4179 + //
1.4180 + event->SetContact(0);
1.4181 + active->StartL();
1.4182 + changeObs->StartCollectingChanges();
1.4183 + aClient.ChangeEvent(*event, active->iStatus);
1.4184 + CActiveScheduler::Start();
1.4185 + TEST2(active->iStatus.Int(), KErrNone);
1.4186 + count = view->CountL();
1.4187 + TEST2(count, KChangeEventTest2NumberOfEventsInView);
1.4188 +
1.4189 + // Check changes
1.4190 + changeCount = changeObs->Changes().Count();
1.4191 + TEST2(changeCount, 1);
1.4192 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4193 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4194 + TEST2(logId, TLogId(3));
1.4195 + TEST2(viewIndex, 4); // 7, 6, 5, [4], 2, 1, 0
1.4196 + changeObs->ResetChanges();
1.4197 +
1.4198 + // Check navigating to the end of the view
1.4199 + res = view->NextL(active->iStatus);
1.4200 + TEST(res);
1.4201 + active->StartL();
1.4202 + CActiveScheduler::Start();
1.4203 + TEST2(active->iStatus.Int(), KErrNone);
1.4204 + TEST2(view->Event().Id(), TLogId(2)); // 7, 6, 5, 4, [2], 1, 0
1.4205 + res = view->NextL(active->iStatus);
1.4206 + TEST(res);
1.4207 + active->StartL();
1.4208 + CActiveScheduler::Start();
1.4209 + TEST2(active->iStatus.Int(), KErrNone);
1.4210 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 2, [1], 0
1.4211 + res = view->NextL(active->iStatus);
1.4212 + TEST(res);
1.4213 + active->StartL();
1.4214 + CActiveScheduler::Start();
1.4215 + TEST2(active->iStatus.Int(), KErrNone);
1.4216 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 2, 1, [0]
1.4217 + changeCount = changeObs->Changes().Count();
1.4218 + TEST2(changeCount, 0);
1.4219 + res = view->NextL(active->iStatus);
1.4220 + TEST(!res);
1.4221 +
1.4222 + // Delete everything in the view and make sure we can't navigate anymore.
1.4223 + active->StartL();
1.4224 + aClient.DeleteEvent(TLogId(4), active->iStatus);
1.4225 + CActiveScheduler::Start();
1.4226 + TEST2(active->iStatus.Int(), KErrNone);
1.4227 + count = view->CountL();
1.4228 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 1);
1.4229 + changeCount = changeObs->Changes().Count();
1.4230 + TEST2(changeCount, 1);
1.4231 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4232 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4233 + TEST2(logId, TLogId(4));
1.4234 + TEST2(viewIndex, 3); // 7, 6, 5, 2, 1, [0]
1.4235 + changeObs->ResetChanges();
1.4236 + //
1.4237 + active->StartL();
1.4238 + aClient.DeleteEvent(TLogId(7), active->iStatus);
1.4239 + CActiveScheduler::Start();
1.4240 + TEST2(active->iStatus.Int(), KErrNone);
1.4241 + count = view->CountL();
1.4242 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 2);
1.4243 + changeCount = changeObs->Changes().Count();
1.4244 + TEST2(changeCount, 1);
1.4245 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4246 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4247 + TEST2(logId, TLogId(7));
1.4248 + TEST2(viewIndex, 0); // 6, 5, 2, 1, [0]
1.4249 + changeObs->ResetChanges();
1.4250 + //
1.4251 + active->StartL();
1.4252 + aClient.DeleteEvent(TLogId(0), active->iStatus);
1.4253 + CActiveScheduler::Start();
1.4254 + TEST2(active->iStatus.Int(), KErrNone);
1.4255 + count = view->CountL();
1.4256 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 3);
1.4257 + changeCount = changeObs->Changes().Count();
1.4258 + TEST2(changeCount, 1);
1.4259 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4260 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4261 + TEST2(logId, TLogId(0));
1.4262 + TEST2(viewIndex, 4); // 6, 5, 2, [1]
1.4263 + changeObs->ResetChanges();
1.4264 + //
1.4265 + active->StartL();
1.4266 + aClient.DeleteEvent(TLogId(5), active->iStatus);
1.4267 + CActiveScheduler::Start();
1.4268 + TEST2(active->iStatus.Int(), KErrNone);
1.4269 + count = view->CountL();
1.4270 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 4);
1.4271 + changeCount = changeObs->Changes().Count();
1.4272 + TEST2(changeCount, 1);
1.4273 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4274 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4275 + TEST2(logId, TLogId(5));
1.4276 + TEST2(viewIndex, 1); // 6, 2, [1]
1.4277 + changeObs->ResetChanges();
1.4278 + //
1.4279 + active->StartL();
1.4280 + aClient.DeleteEvent(TLogId(2), active->iStatus);
1.4281 + CActiveScheduler::Start();
1.4282 + TEST2(active->iStatus.Int(), KErrNone);
1.4283 + count = view->CountL();
1.4284 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 5);
1.4285 + changeCount = changeObs->Changes().Count();
1.4286 + TEST2(changeCount, 1);
1.4287 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4288 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4289 + TEST2(logId, TLogId(2));
1.4290 + TEST2(viewIndex, 1); // 6, [1]
1.4291 + changeObs->ResetChanges();
1.4292 + //
1.4293 + active->StartL();
1.4294 + aClient.DeleteEvent(TLogId(6), active->iStatus);
1.4295 + CActiveScheduler::Start();
1.4296 + TEST2(active->iStatus.Int(), KErrNone);
1.4297 + count = view->CountL();
1.4298 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 6);
1.4299 + changeCount = changeObs->Changes().Count();
1.4300 + TEST2(changeCount, 1);
1.4301 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4302 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4303 + TEST2(logId, TLogId(6));
1.4304 + TEST2(viewIndex, 0); // [1]
1.4305 + changeObs->ResetChanges();
1.4306 +
1.4307 + // Check we can't go backwards or forwards
1.4308 + res = view->NextL(active->iStatus);
1.4309 + TEST(!res);
1.4310 + res = view->PreviousL(active->iStatus);
1.4311 + TEST(!res);
1.4312 + res = view->FirstL(active->iStatus);
1.4313 + TEST(res);
1.4314 + active->StartL();
1.4315 + CActiveScheduler::Start();
1.4316 + TEST2(active->iStatus.Int(), KErrNone);
1.4317 + TEST2(view->Event().Id(), TLogId(1)); // [1]
1.4318 + res = view->LastL(active->iStatus);
1.4319 + TEST(res);
1.4320 + active->StartL();
1.4321 + CActiveScheduler::Start();
1.4322 + TEST2(active->iStatus.Int(), KErrNone);
1.4323 + TEST2(view->Event().Id(), TLogId(1)); // [1]
1.4324 +
1.4325 + // Delete last event in view
1.4326 + active->StartL();
1.4327 + aClient.DeleteEvent(TLogId(1), active->iStatus);
1.4328 + CActiveScheduler::Start();
1.4329 + TEST2(active->iStatus.Int(), KErrNone);
1.4330 + count = view->CountL();
1.4331 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 7);
1.4332 + changeCount = changeObs->Changes().Count();
1.4333 + TEST2(changeCount, 1);
1.4334 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4335 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4336 + TEST2(logId, TLogId(1));
1.4337 + TEST2(viewIndex, 0); // *Empty*
1.4338 + changeObs->ResetChanges();
1.4339 +
1.4340 + // Check we can't navigate
1.4341 + res = view->NextL(active->iStatus);
1.4342 + TEST(!res);
1.4343 + res = view->PreviousL(active->iStatus);
1.4344 + TEST(!res);
1.4345 + res = view->FirstL(active->iStatus);
1.4346 + TEST(!res);
1.4347 + res = view->LastL(active->iStatus);
1.4348 + TEST(!res);
1.4349 +
1.4350 + CleanupStack::PopAndDestroy(5, event); // view, changeObs, active, filter, event
1.4351 + }
1.4352 +
1.4353 +/**
1.4354 +@SYMTestCaseID SYSLIB-LOGENG-CT-0871
1.4355 +@SYMTestCaseDesc Tests for CLogViewChangeObserver::HaveChanges(),Changes() functions
1.4356 +@SYMTestPriority High
1.4357 +@SYMTestActions Check for observing changes while adding,deleting events.Check for observing changes after a backup.
1.4358 + Check for observing changes while traversing through the events in the view.
1.4359 + Delete everything in the view and make sure we can't navigate anymore.
1.4360 +@SYMTestExpectedResults Test must not fail
1.4361 +@SYMREQ REQ0000
1.4362 +*/
1.4363 +LOCAL_C void TestViewChangeEvents2aL(CLogClient& aClient)
1.4364 + {
1.4365 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0871 "));
1.4366 + // Transients
1.4367 + TInt i=0;
1.4368 + TInt count;
1.4369 + TBuf<1> description; description.SetLength(1);
1.4370 + TInt changeCount;
1.4371 + TLogId logId;
1.4372 + TInt viewIndex;
1.4373 + TLogDatabaseChangeType type;
1.4374 + TLogId runningNewId = 0;
1.4375 + //
1.4376 + const TInt KChangeEventTest2NumberOfEventsInView = 7;
1.4377 + TestUtils::DeleteDatabaseL();
1.4378 +
1.4379 + CLogEvent* event = CLogEvent::NewL();
1.4380 + CleanupStack::PushL(event);
1.4381 +
1.4382 + CLogFilter* filter = CLogFilter::NewL();
1.4383 + CleanupStack::PushL(filter);
1.4384 + filter->SetContact(KTestContact);
1.4385 +
1.4386 + CTestActive* active = new(ELeave)CTestActive();
1.4387 + CleanupStack::PushL(active);
1.4388 +
1.4389 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.4390 + changeObs->SetActive();
1.4391 +
1.4392 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.4393 + CleanupStack::PushL(view);
1.4394 +
1.4395 + // Add seed events
1.4396 + TBuf<KLogMaxDirectionLength> buf;
1.4397 + aClient.GetString(buf, R_LOG_DIR_IN);
1.4398 +
1.4399 + event->SetEventType(KLogPacketDataEventTypeUid);
1.4400 + event->SetDirection(buf);
1.4401 + //
1.4402 + for(count = 0; count < KChangeEventTest2NumberOfEventsInView; count++)
1.4403 + {
1.4404 + // Have to create one event which isn't in the view by default, but
1.4405 + // when it 'appears' will be part way through
1.4406 + if (count == 3 && description[0] != TUint16('Z'))
1.4407 + {
1.4408 + description[0] = TUint16('Z');
1.4409 + event->SetContact(0);
1.4410 +
1.4411 + // Go back and do this one again but with a real view entry this time, i.e. 'D'
1.4412 + --count;
1.4413 + }
1.4414 + else
1.4415 + {
1.4416 + description[0] = TUint16('A' + KChangeEventTest2NumberOfEventsInView - count);
1.4417 + event->SetContact(KTestContact);
1.4418 + }
1.4419 + event->SetDescription(description);
1.4420 + //
1.4421 + active->StartL();
1.4422 + aClient.AddEvent(*event, active->iStatus);
1.4423 + CActiveScheduler::Start();
1.4424 + TEST2(active->iStatus.Int(), KErrNone);
1.4425 + TEST2(event->Id(), runningNewId++);
1.4426 + User::After(1 * 1000000);
1.4427 + }
1.4428 + //
1.4429 + TEST2(view->CountL(), 0);
1.4430 + active->StartL();
1.4431 + TEST(view->SetFilterL(*filter, active->iStatus));
1.4432 + CActiveScheduler::Start();
1.4433 + TEST2(active->iStatus.Int(), KErrNone);
1.4434 + count = view->CountL();
1.4435 + TEST2(count, KChangeEventTest2NumberOfEventsInView);
1.4436 +
1.4437 +
1.4438 + TEST(view->FirstL(active->iStatus));
1.4439 + do
1.4440 + {
1.4441 + active->StartL();
1.4442 + CActiveScheduler::Start();
1.4443 + TEST2(active->iStatus.Int(), KErrNone);
1.4444 + TheTest.Printf(_L("View Entry[%d]: Id: %d\r\n"), i++, view->Event().Id());
1.4445 + }
1.4446 + while(view->NextL(active->iStatus));
1.4447 +
1.4448 + // Check addition change events
1.4449 + TEST(view->FirstL(active->iStatus));
1.4450 + active->StartL();
1.4451 + CActiveScheduler::Start();
1.4452 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.4453 + TEST2(view->Event().Id(), 7);
1.4454 +
1.4455 + // Add a new entry - should appear as the first item in the view
1.4456 + description[0] = TUint16('X');
1.4457 + event->SetDescription(description);
1.4458 +
1.4459 + // Check that changes work after a backup
1.4460 + StartBackupL();
1.4461 + DelayL(1000000);
1.4462 + TestLogClosedL();
1.4463 + EndBackupL();
1.4464 + TestLogOpenL();
1.4465 +
1.4466 + //
1.4467 + changeObs->StartCollectingChanges();
1.4468 + active->StartL();
1.4469 + aClient.AddEvent(*event, active->iStatus);
1.4470 + CActiveScheduler::Start();
1.4471 + TEST2(active->iStatus.Int(), KErrNone);
1.4472 + TEST2(event->Id(), runningNewId++);
1.4473 +
1.4474 + // Check changes
1.4475 + changeCount = changeObs->Changes().Count();
1.4476 + TEST2(changeCount, 1);
1.4477 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4478 + TEST2(type, ELogChangeTypeEventAdded);
1.4479 + TEST2(logId, runningNewId-1);
1.4480 + TEST2(viewIndex, 0); // 8, [7], 6, 5, 4, 2, 1, 0
1.4481 +
1.4482 + // Check we can go forward
1.4483 + TEST(view->NextL(active->iStatus));
1.4484 + active->StartL();
1.4485 + CActiveScheduler::Start();
1.4486 + TEST2(active->iStatus.Int(), KErrNone);
1.4487 + TEST2(view->Event().Id(), TLogId(6)); // 8, 7, [6], 5, 4, 2, 1, 0
1.4488 +
1.4489 + // Check we can now go back (new first entry)
1.4490 + TEST(view->PreviousL(active->iStatus));
1.4491 + active->StartL();
1.4492 + CActiveScheduler::Start();
1.4493 + TEST2(active->iStatus.Int(), KErrNone); // 8, [7], 6, 5, 4, 2, 1, 0
1.4494 + TEST2(view->Event().Id(), 7);
1.4495 + TEST(view->PreviousL(active->iStatus));
1.4496 + active->StartL();
1.4497 + CActiveScheduler::Start();
1.4498 + TEST2(active->iStatus.Int(), KErrNone); // [8], 7, 6, 5, 4, 2, 1, 0
1.4499 + TEST2(view->Event().Id(), TLogId(KChangeEventTest2NumberOfEventsInView+1));
1.4500 +
1.4501 + // Delete added event
1.4502 + changeObs->ResetChanges();
1.4503 + changeCount = changeObs->Changes().Count();
1.4504 + TEST2(changeCount, 0);
1.4505 + active->StartL();
1.4506 + aClient.DeleteEvent(view->Event().Id(), active->iStatus);
1.4507 + CActiveScheduler::Start();
1.4508 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.4509 +
1.4510 + // Check deletion changes
1.4511 + changeCount = changeObs->Changes().Count();
1.4512 + TEST2(changeCount, 1);
1.4513 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4514 + TEST2(type, ELogChangeTypeEventDeleted);
1.4515 + TEST2(logId, runningNewId-1);
1.4516 + TEST2(viewIndex, 0);
1.4517 +
1.4518 + // Go to end of view
1.4519 + TEST(view->LastL(active->iStatus));
1.4520 + active->StartL();
1.4521 + CActiveScheduler::Start();
1.4522 + TEST2(active->iStatus.Int(), KErrNone);
1.4523 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 2, 1, [0]
1.4524 +
1.4525 + // Add new event
1.4526 + description[0] = TUint16('X');
1.4527 + event->SetDescription(description);
1.4528 +
1.4529 + // Check that changes work after a backup
1.4530 + StartBackupL();
1.4531 + DelayL(1000000);
1.4532 + TestLogClosedL();
1.4533 + EndBackupL();
1.4534 + TestLogOpenL();
1.4535 +
1.4536 + //
1.4537 + changeObs->StartCollectingChanges();
1.4538 + active->StartL();
1.4539 + aClient.AddEvent(*event, active->iStatus);
1.4540 + CActiveScheduler::Start();
1.4541 + TEST2(active->iStatus.Int(), KErrNone);
1.4542 + TEST2(event->Id(), runningNewId++);
1.4543 +
1.4544 + // Check changes
1.4545 + changeCount = changeObs->Changes().Count();
1.4546 + TEST2(changeCount, 1);
1.4547 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4548 + TEST2(type, ELogChangeTypeEventAdded);
1.4549 + TEST2(logId, runningNewId-1);
1.4550 + TEST2(viewIndex, 0); // 9, 7, 6, 5, 4, 2, 1, [0]
1.4551 +
1.4552 + // Check we can't go forward
1.4553 + TEST(!view->NextL(active->iStatus));
1.4554 +
1.4555 + // Go back to the first record
1.4556 + TEST(view->FirstL(active->iStatus));
1.4557 + active->StartL();
1.4558 + CActiveScheduler::Start();
1.4559 + TEST2(active->iStatus.Int(), KErrNone);
1.4560 + TEST2(view->Event().Id(), TLogId(runningNewId-1)); // 9, 7, 6, 5, 4, 2, 1, [0]
1.4561 +
1.4562 + // Delete added event
1.4563 + changeObs->ResetChanges();
1.4564 + active->StartL();
1.4565 + aClient.DeleteEvent(view->Event().Id(), active->iStatus);
1.4566 + CActiveScheduler::Start();
1.4567 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.4568 +
1.4569 + // Check deletion changes
1.4570 + changeCount = changeObs->Changes().Count();
1.4571 + TEST2(changeCount, 1);
1.4572 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4573 + TEST2(type, ELogChangeTypeEventDeleted);
1.4574 + TEST2(logId, runningNewId-1);
1.4575 + TEST2(viewIndex, 0);
1.4576 +
1.4577 + // Go part way through view
1.4578 + TEST(view->NextL(active->iStatus));
1.4579 + active->StartL();
1.4580 + CActiveScheduler::Start();
1.4581 + TEST2(active->iStatus.Int(), KErrNone);
1.4582 + TEST2(view->Event().Id(), TLogId(6)); // 7, [6], 5, 4, 2, 1, 0
1.4583 + TEST(view->NextL(active->iStatus));
1.4584 + active->StartL();
1.4585 + CActiveScheduler::Start();
1.4586 + TEST2(active->iStatus.Int(), KErrNone);
1.4587 + TEST2(view->Event().Id(), TLogId(5)); // 7, 6, [5], 4, 2, 1, 0
1.4588 +
1.4589 + // Add new event
1.4590 + description[0] = TUint16('X');
1.4591 + event->SetDescription(description);
1.4592 +
1.4593 + // Check that changes work after a backup
1.4594 + StartBackupL();
1.4595 + DelayL(1000000);
1.4596 + TestLogClosedL();
1.4597 + EndBackupL();
1.4598 + TestLogOpenL();
1.4599 +
1.4600 + //
1.4601 + changeObs->StartCollectingChanges();
1.4602 + active->StartL();
1.4603 + aClient.AddEvent(*event, active->iStatus);
1.4604 + CActiveScheduler::Start();
1.4605 + TEST2(active->iStatus.Int(), KErrNone);
1.4606 + TEST2(event->Id(), runningNewId++);
1.4607 +
1.4608 + // Check changes
1.4609 + changeCount = changeObs->Changes().Count();
1.4610 + TEST2(changeCount, 1);
1.4611 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4612 + TEST2(type, ELogChangeTypeEventAdded);
1.4613 + TEST2(logId, runningNewId-1);
1.4614 + TEST2(viewIndex, 0); // 10, 7, 6, [5], 4, 2, 1, 0
1.4615 + changeObs->ResetChanges();
1.4616 +
1.4617 + // Work back to beginning
1.4618 + TEST(view->PreviousL(active->iStatus));
1.4619 + active->StartL();
1.4620 + CActiveScheduler::Start();
1.4621 + TEST2(active->iStatus.Int(), KErrNone);
1.4622 + TEST2(view->Event().Id(), TLogId(6)); // 10, 7, [6], 5, 4, 2, 1, 0
1.4623 + TEST(view->PreviousL(active->iStatus));
1.4624 + active->StartL();
1.4625 + CActiveScheduler::Start();
1.4626 + TEST2(active->iStatus.Int(), KErrNone);
1.4627 + TEST2(view->Event().Id(), TLogId(7)); // 10, [7], 6, 5, 4, 2, 1, 0
1.4628 + TEST(view->PreviousL(active->iStatus));
1.4629 + active->StartL();
1.4630 + CActiveScheduler::Start();
1.4631 + TEST2(active->iStatus.Int(), KErrNone);
1.4632 + TEST2(view->Event().Id(), runningNewId-1); // [10], 7, 6, 5, 4, 2, 1, 0
1.4633 +
1.4634 + // Delete added event
1.4635 + changeCount = changeObs->Changes().Count();
1.4636 + TEST2(changeCount, 0);
1.4637 + active->StartL();
1.4638 + aClient.DeleteEvent(view->Event().Id(), active->iStatus);
1.4639 + CActiveScheduler::Start();
1.4640 + TEST2(active->iStatus.Int(), KErrNone); // [7], 6, 5, 4, 2, 1, 0
1.4641 +
1.4642 + // Check deletion changes
1.4643 + changeCount = changeObs->Changes().Count();
1.4644 + TEST2(changeCount, 1);
1.4645 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4646 + TEST2(type, ELogChangeTypeEventDeleted);
1.4647 + TEST2(logId, runningNewId-1);
1.4648 + TEST2(viewIndex, 0);
1.4649 + changeObs->ResetChanges();
1.4650 +
1.4651 + // Go back to the first record
1.4652 + TEST(view->FirstL(active->iStatus));
1.4653 + active->StartL();
1.4654 + CActiveScheduler::Start();
1.4655 + TEST2(active->iStatus.Int(), KErrNone);
1.4656 + TEST2(view->Event().Id(), TLogId(7)); // [7], 6, 5, 4, 2, 1, 0
1.4657 +
1.4658 + // Move one record forward
1.4659 + TEST(view->NextL(active->iStatus));
1.4660 + active->StartL();
1.4661 + CActiveScheduler::Start();
1.4662 + TEST2(active->iStatus.Int(), KErrNone);
1.4663 + TEST2(view->Event().Id(), TLogId(6)); // 7, [6], 5, 4, 2, 1, 0
1.4664 +
1.4665 + // Change 'Z' event so that it now appears in the view
1.4666 + changeCount = changeObs->Changes().Count();
1.4667 + TEST2(changeCount ,0);
1.4668 + active->StartL();
1.4669 + event->SetId(TLogId(3));
1.4670 + aClient.GetEvent(*event, active->iStatus);
1.4671 + CActiveScheduler::Start();
1.4672 + TEST2(active->iStatus.Int(), KErrNone);
1.4673 + //
1.4674 + event->SetContact(KTestContact);
1.4675 + active->StartL();
1.4676 +
1.4677 + // Check that changes work after a backup
1.4678 + StartBackupL();
1.4679 + DelayL(1000000);
1.4680 + TestLogClosedL();
1.4681 + EndBackupL();
1.4682 + TestLogOpenL();
1.4683 +
1.4684 + changeObs->StartCollectingChanges();
1.4685 + aClient.ChangeEvent(*event, active->iStatus);
1.4686 + CActiveScheduler::Start();
1.4687 + TEST2(active->iStatus.Int(), KErrNone);
1.4688 + count = view->CountL();
1.4689 + TEST2(count, KChangeEventTest2NumberOfEventsInView+1);
1.4690 +
1.4691 + // Check changes
1.4692 + changeCount = changeObs->Changes().Count();
1.4693 + TEST2(changeCount, 1);
1.4694 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4695 + TEST2(type, ELogChangeTypeEventAdded); // Change resulted in an addition to the view
1.4696 + TEST2(logId, TLogId(3));
1.4697 + TEST2(viewIndex, 4); // 7, [6], 5, 4, 3, 2, 1, 0
1.4698 + changeObs->ResetChanges();
1.4699 +
1.4700 + // Move forwards and check
1.4701 + TEST(view->NextL(active->iStatus));
1.4702 + active->StartL();
1.4703 + CActiveScheduler::Start();
1.4704 + TEST2(active->iStatus.Int(), KErrNone);
1.4705 + TEST2(view->Event().Id(), TLogId(5)); // 7, 6, [5], 4, 3, 2, 1, 0
1.4706 + TEST(view->NextL(active->iStatus));
1.4707 + active->StartL();
1.4708 + CActiveScheduler::Start();
1.4709 + TEST2(active->iStatus.Int(), KErrNone);
1.4710 + TEST2(view->Event().Id(), TLogId(4)); // 7, 6, 5, [4], 3, 2, 1, 0
1.4711 + TEST(view->NextL(active->iStatus));
1.4712 + active->StartL();
1.4713 + CActiveScheduler::Start();
1.4714 + TEST2(active->iStatus.Int(), KErrNone);
1.4715 + TEST2(view->Event().Id(), TLogId(3)); // 7, 6, 5, 4, [3], 2, 1, 0
1.4716 +
1.4717 + // Change 'Z' event so that its now missing from the view again
1.4718 + changeCount = changeObs->Changes().Count();
1.4719 + TEST2(changeCount ,0);
1.4720 + active->StartL();
1.4721 + event->SetId(TLogId(3));
1.4722 + aClient.GetEvent(*event, active->iStatus);
1.4723 + CActiveScheduler::Start();
1.4724 + TEST2(active->iStatus.Int(), KErrNone);
1.4725 + //
1.4726 + event->SetContact(0);
1.4727 + active->StartL();
1.4728 +
1.4729 + // Check that changes work after a backup
1.4730 + StartBackupL();
1.4731 + DelayL(1000000);
1.4732 + TestLogClosedL();
1.4733 + EndBackupL();
1.4734 + TestLogOpenL();
1.4735 +
1.4736 + changeObs->StartCollectingChanges();
1.4737 + aClient.ChangeEvent(*event, active->iStatus);
1.4738 + CActiveScheduler::Start();
1.4739 + TEST2(active->iStatus.Int(), KErrNone);
1.4740 + count = view->CountL();
1.4741 + TEST2(count, KChangeEventTest2NumberOfEventsInView);
1.4742 +
1.4743 + // Check changes
1.4744 + changeCount = changeObs->Changes().Count();
1.4745 + TEST2(changeCount, 1);
1.4746 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4747 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4748 + TEST2(logId, TLogId(3));
1.4749 + TEST2(viewIndex, 4); // 7, 6, 5, 4, [2], 1, 0
1.4750 + changeObs->ResetChanges();
1.4751 +
1.4752 + // Move forwards and check
1.4753 + TEST(view->NextL(active->iStatus));
1.4754 + active->StartL();
1.4755 + CActiveScheduler::Start();
1.4756 + TEST2(active->iStatus.Int(), KErrNone);
1.4757 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 2, [1], 0
1.4758 + TEST(view->NextL(active->iStatus));
1.4759 + active->StartL();
1.4760 + CActiveScheduler::Start();
1.4761 + TEST2(active->iStatus.Int(), KErrNone);
1.4762 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 2, 1, [0]
1.4763 +
1.4764 + // Move back one
1.4765 + TEST(view->PreviousL(active->iStatus));
1.4766 + active->StartL();
1.4767 + CActiveScheduler::Start();
1.4768 + TEST2(active->iStatus.Int(), KErrNone);
1.4769 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 2, [1], 0
1.4770 + changeCount = changeObs->Changes().Count();
1.4771 + TEST2(changeCount ,0);
1.4772 +
1.4773 + // Change 'Z' event so that it now appears in the view
1.4774 + active->StartL();
1.4775 + event->SetId(TLogId(3));
1.4776 + aClient.GetEvent(*event, active->iStatus);
1.4777 + CActiveScheduler::Start();
1.4778 + TEST2(active->iStatus.Int(), KErrNone);
1.4779 + //
1.4780 + event->SetContact(KTestContact);
1.4781 + active->StartL();
1.4782 +
1.4783 + // Check that changes work after a backup
1.4784 + StartBackupL();
1.4785 + DelayL(1000000);
1.4786 + TestLogClosedL();
1.4787 + EndBackupL();
1.4788 + TestLogOpenL();
1.4789 +
1.4790 + changeObs->StartCollectingChanges();
1.4791 + aClient.ChangeEvent(*event, active->iStatus);
1.4792 + CActiveScheduler::Start();
1.4793 + TEST2(active->iStatus.Int(), KErrNone);
1.4794 + count = view->CountL();
1.4795 + TEST2(count, KChangeEventTest2NumberOfEventsInView+1);
1.4796 +
1.4797 + // Check changes
1.4798 + changeCount = changeObs->Changes().Count();
1.4799 + TEST2(changeCount, 1);
1.4800 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4801 + TEST2(type, ELogChangeTypeEventAdded); // Change resulted in an addition to the view
1.4802 + TEST2(logId, TLogId(3));
1.4803 + TEST2(viewIndex, 4); // 7, 6, 5, 4, 3, 2, [1], 0
1.4804 + changeObs->ResetChanges();
1.4805 +
1.4806 + // Check can only move forward one more record
1.4807 + TEST(view->NextL(active->iStatus));
1.4808 + active->StartL();
1.4809 + CActiveScheduler::Start();
1.4810 + TEST2(active->iStatus.Int(), KErrNone);
1.4811 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 3, 2, 1, [0]
1.4812 +
1.4813 + // Move back until we are before the inserted record
1.4814 + TEST(view->PreviousL(active->iStatus));
1.4815 + active->StartL();
1.4816 + CActiveScheduler::Start();
1.4817 + TEST2(active->iStatus.Int(), KErrNone);
1.4818 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 3, 2, [1], 0
1.4819 + TEST(view->PreviousL(active->iStatus));
1.4820 + active->StartL();
1.4821 + CActiveScheduler::Start();
1.4822 + TEST2(active->iStatus.Int(), KErrNone);
1.4823 + TEST2(view->Event().Id(), TLogId(2)); // 7, 6, 5, 4, 3, [2], 1, 0
1.4824 + TEST(view->PreviousL(active->iStatus));
1.4825 + active->StartL();
1.4826 + CActiveScheduler::Start();
1.4827 + TEST2(active->iStatus.Int(), KErrNone);
1.4828 + TEST2(view->Event().Id(), TLogId(3)); // 7, 6, 5, 4, [3], 2, 1, 0
1.4829 + TEST(view->PreviousL(active->iStatus));
1.4830 + active->StartL();
1.4831 + CActiveScheduler::Start();
1.4832 + TEST2(active->iStatus.Int(), KErrNone);
1.4833 + TEST2(view->Event().Id(), TLogId(4)); // 7, 6, 5, [4], 3, 2, 1, 0
1.4834 + changeCount = changeObs->Changes().Count();
1.4835 + TEST2(changeCount ,0);
1.4836 +
1.4837 + // Change 'Z' event so that its now missing from the view again
1.4838 + active->StartL();
1.4839 + event->SetId(TLogId(3));
1.4840 + aClient.GetEvent(*event, active->iStatus);
1.4841 + CActiveScheduler::Start();
1.4842 + TEST2(active->iStatus.Int(), KErrNone);
1.4843 + //
1.4844 + event->SetContact(0);
1.4845 + active->StartL();
1.4846 +
1.4847 + // Check that changes work after a backup
1.4848 + StartBackupL();
1.4849 + DelayL(1000000);
1.4850 + TestLogClosedL();
1.4851 + EndBackupL();
1.4852 + TestLogOpenL();
1.4853 +
1.4854 + changeObs->StartCollectingChanges();
1.4855 + aClient.ChangeEvent(*event, active->iStatus);
1.4856 + CActiveScheduler::Start();
1.4857 + TEST2(active->iStatus.Int(), KErrNone);
1.4858 + count = view->CountL();
1.4859 + TEST2(count, KChangeEventTest2NumberOfEventsInView);
1.4860 +
1.4861 + // Check changes
1.4862 + changeCount = changeObs->Changes().Count();
1.4863 + TEST2(changeCount, 1);
1.4864 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4865 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4866 + TEST2(logId, TLogId(3));
1.4867 + TEST2(viewIndex, 4); // 7, 6, 5, [4], 2, 1, 0
1.4868 + changeObs->ResetChanges();
1.4869 +
1.4870 + // Check navigating to the end of the view
1.4871 + TEST(view->NextL(active->iStatus));
1.4872 + active->StartL();
1.4873 + CActiveScheduler::Start();
1.4874 + TEST2(active->iStatus.Int(), KErrNone);
1.4875 + TEST2(view->Event().Id(), TLogId(2)); // 7, 6, 5, 4, [2], 1, 0
1.4876 + TEST(view->NextL(active->iStatus));
1.4877 + active->StartL();
1.4878 + CActiveScheduler::Start();
1.4879 + TEST2(active->iStatus.Int(), KErrNone);
1.4880 + TEST2(view->Event().Id(), TLogId(1)); // 7, 6, 5, 4, 2, [1], 0
1.4881 + TEST(view->NextL(active->iStatus));
1.4882 + active->StartL();
1.4883 + CActiveScheduler::Start();
1.4884 + TEST2(active->iStatus.Int(), KErrNone);
1.4885 + TEST2(view->Event().Id(), TLogId(0)); // 7, 6, 5, 4, 2, 1, [0]
1.4886 + changeCount = changeObs->Changes().Count();
1.4887 + TEST2(changeCount ,0);
1.4888 + TEST(!view->NextL(active->iStatus));
1.4889 +
1.4890 + // Delete everything in the view and make sure we can't navigate anymore.
1.4891 + active->StartL();
1.4892 + aClient.DeleteEvent(TLogId(4), active->iStatus);
1.4893 + CActiveScheduler::Start();
1.4894 + TEST2(active->iStatus.Int(), KErrNone);
1.4895 + count = view->CountL();
1.4896 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 1);
1.4897 + changeCount = changeObs->Changes().Count();
1.4898 + TEST2(changeCount, 1);
1.4899 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4900 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4901 + TEST2(logId, TLogId(4));
1.4902 + TEST2(viewIndex, 3); // 7, 6, 5, 2, 1, [0]
1.4903 + changeObs->ResetChanges();
1.4904 + //
1.4905 + active->StartL();
1.4906 + aClient.DeleteEvent(TLogId(7), active->iStatus);
1.4907 + CActiveScheduler::Start();
1.4908 + TEST2(active->iStatus.Int(), KErrNone);
1.4909 + count = view->CountL();
1.4910 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 2);
1.4911 + changeCount = changeObs->Changes().Count();
1.4912 + TEST2(changeCount, 1);
1.4913 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4914 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4915 + TEST2(logId, TLogId(7));
1.4916 + TEST2(viewIndex, 0); // 6, 5, 2, 1, [0]
1.4917 + changeObs->ResetChanges();
1.4918 + //
1.4919 + active->StartL();
1.4920 + aClient.DeleteEvent(TLogId(0), active->iStatus);
1.4921 + CActiveScheduler::Start();
1.4922 + TEST2(active->iStatus.Int(), KErrNone);
1.4923 + count = view->CountL();
1.4924 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 3);
1.4925 + changeCount = changeObs->Changes().Count();
1.4926 + TEST2(changeCount, 1);
1.4927 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4928 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4929 + TEST2(logId, TLogId(0));
1.4930 + TEST2(viewIndex, 4); // 6, 5, 2, [1]
1.4931 + changeObs->ResetChanges();
1.4932 + //
1.4933 + active->StartL();
1.4934 + aClient.DeleteEvent(TLogId(5), active->iStatus);
1.4935 + CActiveScheduler::Start();
1.4936 + TEST2(active->iStatus.Int(), KErrNone);
1.4937 + count = view->CountL();
1.4938 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 4);
1.4939 + changeCount = changeObs->Changes().Count();
1.4940 + TEST2(changeCount, 1);
1.4941 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4942 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4943 + TEST2(logId, TLogId(5));
1.4944 + TEST2(viewIndex, 1); // 6, 2, [1]
1.4945 + changeObs->ResetChanges();
1.4946 + //
1.4947 + active->StartL();
1.4948 + aClient.DeleteEvent(TLogId(2), active->iStatus);
1.4949 + CActiveScheduler::Start();
1.4950 + TEST2(active->iStatus.Int(), KErrNone);
1.4951 + count = view->CountL();
1.4952 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 5);
1.4953 + changeCount = changeObs->Changes().Count();
1.4954 + TEST2(changeCount, 1);
1.4955 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4956 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4957 + TEST2(logId, TLogId(2));
1.4958 + TEST2(viewIndex, 1); // 6, [1]
1.4959 + changeObs->ResetChanges();
1.4960 + //
1.4961 + active->StartL();
1.4962 + aClient.DeleteEvent(TLogId(6), active->iStatus);
1.4963 + CActiveScheduler::Start();
1.4964 + TEST2(active->iStatus.Int(), KErrNone);
1.4965 + count = view->CountL();
1.4966 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 6);
1.4967 + changeCount = changeObs->Changes().Count();
1.4968 + TEST2(changeCount, 1);
1.4969 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4970 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.4971 + TEST2(logId, TLogId(6));
1.4972 + TEST2(viewIndex, 0); // [1]
1.4973 + changeObs->ResetChanges();
1.4974 +
1.4975 + // Check we can't go backwards or forwards
1.4976 + TEST(!view->NextL(active->iStatus));
1.4977 + TEST(!view->PreviousL(active->iStatus));
1.4978 + TEST(view->FirstL(active->iStatus));
1.4979 + active->StartL();
1.4980 + CActiveScheduler::Start();
1.4981 + TEST2(active->iStatus.Int(), KErrNone);
1.4982 + TEST2(view->Event().Id(), TLogId(1)); // [1]
1.4983 + TEST(view->LastL(active->iStatus));
1.4984 + active->StartL();
1.4985 + CActiveScheduler::Start();
1.4986 + TEST2(active->iStatus.Int(), KErrNone);
1.4987 + TEST2(view->Event().Id(), TLogId(1)); // [1]
1.4988 +
1.4989 + // Delete last event in view
1.4990 + active->StartL();
1.4991 + aClient.DeleteEvent(TLogId(1), active->iStatus);
1.4992 + CActiveScheduler::Start();
1.4993 + TEST2(active->iStatus.Int(), KErrNone);
1.4994 + count = view->CountL();
1.4995 + TEST2(count, KChangeEventTest2NumberOfEventsInView - 7);
1.4996 + changeCount = changeObs->Changes().Count();
1.4997 + TEST2(changeCount, 1);
1.4998 + type = changeObs->Changes().At(0, logId, viewIndex);
1.4999 + TEST2(type, ELogChangeTypeEventDeleted); // Change resulted in a removal from the view
1.5000 + TEST2(logId, TLogId(1));
1.5001 + TEST2(viewIndex, 0); // *Empty*
1.5002 + changeObs->ResetChanges();
1.5003 +
1.5004 + // Check we can't navigate
1.5005 + TEST(!view->NextL(active->iStatus));
1.5006 + TEST(!view->PreviousL(active->iStatus));
1.5007 + TEST(!view->FirstL(active->iStatus));
1.5008 + TEST(!view->LastL(active->iStatus));
1.5009 +
1.5010 + CleanupStack::PopAndDestroy(5, event); // view, changeObs, active, filter, event
1.5011 + }
1.5012 +
1.5013 +/**
1.5014 +@SYMTestCaseID SYSLIB-LOGENG-CT-0872
1.5015 +@SYMTestCaseDesc Filtering log view test
1.5016 +@SYMTestPriority High
1.5017 +@SYMTestActions Add the Voice call,FAX,SMS event types to the log client.
1.5018 + Set all the event types to filter list.Check for the correct event types and no errors
1.5019 +@SYMTestExpectedResults Test must not fail
1.5020 +@SYMREQ REQ0000
1.5021 +*/
1.5022 +LOCAL_C void TestViewFilteringDefect1L(CLogClient& aClient)
1.5023 + {
1.5024 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0872 "));
1.5025 + CLogEvent* event = CLogEvent::NewL();
1.5026 + CleanupStack::PushL(event);
1.5027 +
1.5028 + CTestActive* active = new(ELeave) CTestActive();
1.5029 + CleanupStack::PushL(active);
1.5030 +
1.5031 + // VOICE CALL
1.5032 + event->SetEventType(KLogCallEventTypeUid);
1.5033 + active->StartL();
1.5034 + aClient.AddEvent(*event, active->iStatus);
1.5035 + CActiveScheduler::Start();
1.5036 + TEST2(active->iStatus.Int(), KErrNone);
1.5037 + const TLogId event1 = event->Id();
1.5038 +
1.5039 + // FAX
1.5040 + event->SetEventType(KLogFaxEventTypeUid);
1.5041 + active->StartL();
1.5042 + aClient.AddEvent(*event, active->iStatus);
1.5043 + CActiveScheduler::Start();
1.5044 + TEST2(active->iStatus.Int(), KErrNone);
1.5045 + const TLogId event2 = event->Id();
1.5046 + (void) event2;
1.5047 +
1.5048 + // SMS, CONTACT SEARCHED
1.5049 + event->SetEventType(KLogShortMessageEventTypeUid);
1.5050 + event->SetFlags(KLogEventContactSearched);
1.5051 + active->StartL();
1.5052 + aClient.AddEvent(*event, active->iStatus);
1.5053 + CActiveScheduler::Start();
1.5054 + TEST2(active->iStatus.Int(), KErrNone);
1.5055 + const TLogId event3 = event->Id();
1.5056 +
1.5057 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.5058 + changeObs->SetActive();
1.5059 +
1.5060 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.5061 + CleanupStack::PushL(view);
1.5062 +
1.5063 + CLogFilterList* filterList = new(ELeave) CLogFilterList();
1.5064 + CleanupStack::PushL(filterList);
1.5065 +
1.5066 + CLogFilter* filter1 = CLogFilter::NewL();
1.5067 + CleanupStack::PushL(filter1);
1.5068 + filter1->SetEventType(KLogCallEventTypeUid); // ALL VOICE CALL EVENTS
1.5069 + filterList->AppendL(filter1);
1.5070 +
1.5071 + CLogFilter* filter2 = CLogFilter::NewL();
1.5072 + CleanupStack::PushL(filter2);
1.5073 + filter2->SetEventType(KLogShortMessageEventTypeUid); // ALL SMS's WHERE CONTACTS SEARCH FLAG IS SET
1.5074 + filter2->SetFlags(KLogEventContactSearched);
1.5075 + filterList->AppendL(filter2);
1.5076 +
1.5077 + TInt count = view->CountL();
1.5078 + TEST2(count, 0);
1.5079 + TBool res = view->SetFilterParseFilterByFilterL(*filterList, active->iStatus);
1.5080 + TEST(res);
1.5081 + CleanupStack::PopAndDestroy(3, filterList);
1.5082 +
1.5083 + active->StartL();
1.5084 + CActiveScheduler::Start();
1.5085 + TEST2(active->iStatus.Int(), KErrNone);
1.5086 + count = view->CountL();
1.5087 + TEST2(count, 2);
1.5088 +
1.5089 + // Check correct events
1.5090 + TLogId eventId;
1.5091 + //
1.5092 + active->StartL();
1.5093 + res = view->FirstL(active->iStatus);
1.5094 + TEST(res);
1.5095 + CActiveScheduler::Start();
1.5096 + TEST2(active->iStatus.Int(), KErrNone);
1.5097 + eventId = view->Event().Id();
1.5098 + TEST2(eventId, event3);
1.5099 + //
1.5100 + active->StartL();
1.5101 + res = view->NextL(active->iStatus);
1.5102 + TEST(res);
1.5103 + CActiveScheduler::Start();
1.5104 + TEST2(active->iStatus.Int(), KErrNone);
1.5105 + eventId = view->Event().Id();
1.5106 + TEST2(eventId, event1);
1.5107 +
1.5108 + CleanupStack::PopAndDestroy(4, event);
1.5109 + }
1.5110 +
1.5111 +//
1.5112 +//
1.5113 +//
1.5114 +static TInt TestDeletingViewWithinObserverCallbackL_CallbackFn(TAny* aView)
1.5115 + {
1.5116 + CLogViewEvent* view = reinterpret_cast<CLogViewEvent*>(aView);
1.5117 + delete view;
1.5118 + return KErrNone;
1.5119 + }
1.5120 +
1.5121 +//
1.5122 +//
1.5123 +//
1.5124 +static void TestDeletingViewWithinObserverCallbackL_ThreadFunctionL()
1.5125 + {
1.5126 + RFs fsSession;
1.5127 + LEAVE_IF_ERROR(fsSession.Connect());
1.5128 + CleanupClosePushL(fsSession);
1.5129 + //
1.5130 + CLogClient* client = CLogClient::NewL(fsSession);
1.5131 + CleanupStack::PushL(client);
1.5132 + //
1.5133 + CLogEvent* event = CLogEvent::NewL();
1.5134 + CleanupStack::PushL(event);
1.5135 + event->SetEventType(KLogCallEventTypeUid);
1.5136 + //
1.5137 + CTestActive* active = new(ELeave) CTestActive();
1.5138 + CleanupStack::PushL(active);
1.5139 +
1.5140 + // Wait for main test code thread
1.5141 + RSemaphore semaphore;
1.5142 + const TInt error = semaphore.OpenGlobal(KThreadSemaphoreName);
1.5143 + LEAVE_IF_ERROR(error);
1.5144 +
1.5145 + // Add 5 recent events to the list
1.5146 + TBuf<KLogMaxDirectionLength> incoming;
1.5147 + client->GetString(incoming, R_LOG_DIR_IN);
1.5148 + event->SetDirection(incoming);
1.5149 +
1.5150 + // Incoming
1.5151 + for(TInt recent = 1; recent <= 5; recent++)
1.5152 + {
1.5153 + event->SetContact(recent);
1.5154 + for(TInt duplicate = 1; duplicate <= 6; duplicate++)
1.5155 + {
1.5156 + active->StartL();
1.5157 + client->AddEvent(*event, active->iStatus);
1.5158 + CActiveScheduler::Start();
1.5159 + __ASSERT_ALWAYS(active->iStatus == KErrNone, User::Panic(_L("ThreadPanic"), 1));
1.5160 + }
1.5161 + }
1.5162 +
1.5163 + // Wait now until the main thread says we can delete all events
1.5164 + semaphore.Signal();
1.5165 + User::After(5 * 1000000);
1.5166 + semaphore.Wait();
1.5167 +
1.5168 + // Clear the duplicates which should result in a batch of changes
1.5169 + // in the other thread
1.5170 + CLogViewRecent* view = CLogViewRecent::NewL(*client);
1.5171 + CleanupStack::PushL(view);
1.5172 + //
1.5173 + __ASSERT_ALWAYS(view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus), User::Panic(_L("ThreadPanic"), 2));
1.5174 + __ASSERT_ALWAYS(view->CountL() == 5, User::Panic(_L("ThreadPanic"), 3));
1.5175 + active->StartL();
1.5176 + CActiveScheduler::Start();
1.5177 + __ASSERT_ALWAYS(active->iStatus == KErrNone, User::Panic(_L("ThreadPanic"), 4));
1.5178 +
1.5179 + // Now do the clear
1.5180 + view->ClearDuplicatesL();
1.5181 + __ASSERT_ALWAYS(view->CountL() == 5, User::Panic(_L("ThreadPanic"), 5));
1.5182 +
1.5183 + // Cleanup
1.5184 + CleanupStack::PopAndDestroy(view);
1.5185 + semaphore.Close();
1.5186 + CleanupStack::PopAndDestroy(4, &fsSession); // active, event, client, fsSession
1.5187 + }
1.5188 +
1.5189 +//
1.5190 +//
1.5191 +//
1.5192 +static TInt TestDeletingViewWithinObserverCallbackL_ThreadFunction(TAny* /*aData*/)
1.5193 + {
1.5194 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.5195 + if (!cleanup)
1.5196 + return KErrNoMemory;
1.5197 + CActiveScheduler* scheduler = new CActiveScheduler();
1.5198 + if (!scheduler)
1.5199 + return KErrNoMemory;
1.5200 + CActiveScheduler::Install(scheduler);
1.5201 + //
1.5202 + TRAPD(err, TestDeletingViewWithinObserverCallbackL_ThreadFunctionL());
1.5203 + UNUSED_VAR(err);
1.5204 + //
1.5205 + delete scheduler;
1.5206 + delete cleanup;
1.5207 + //
1.5208 + return KErrNone;
1.5209 + }
1.5210 +
1.5211 +/**
1.5212 +@SYMTestCaseID SYSLIB-LOGENG-CT-0873
1.5213 +@SYMTestCaseDesc Tests for observing changes within a callback
1.5214 +@SYMTestPriority High
1.5215 +@SYMTestActions Check for observing changes within a callback
1.5216 +@SYMTestExpectedResults Test must not fail
1.5217 +@SYMREQ REQ0000
1.5218 +*/
1.5219 +LOCAL_C void TestDeletingViewWithinObserverCallbackL(CLogClient& aClient)
1.5220 + {
1.5221 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0873 "));
1.5222 + TestUtils::DeleteDatabaseL();
1.5223 +
1.5224 + TInt error = 0;
1.5225 + //
1.5226 + CTestActive* active = new(ELeave) CTestActive();
1.5227 + CleanupStack::PushL(active);
1.5228 +
1.5229 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.5230 +
1.5231 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.5232 + CleanupStack::PushL(view);
1.5233 +
1.5234 + CLogFilter* filter = CLogFilter::NewL();
1.5235 + CleanupStack::PushL(filter);
1.5236 + filter->SetEventType(KLogCallEventTypeUid);
1.5237 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.5238 + TEST(!res);
1.5239 + CleanupStack::PopAndDestroy(filter);
1.5240 +
1.5241 + // Create semaphore so we can control other thread
1.5242 + RSemaphore semaphore;
1.5243 + error = semaphore.CreateGlobal(KThreadSemaphoreName, 0);
1.5244 + LEAVE_IF_ERROR(error);
1.5245 + CleanupClosePushL(semaphore);
1.5246 +
1.5247 + // Create thread which adds two events
1.5248 + RThread thread;
1.5249 + error = thread.Create(_L("T_VIEW1_OBS_EVENT_CREATION_THREAD"), TestDeletingViewWithinObserverCallbackL_ThreadFunction, 10 * 1024, 5 * 1024, 20 * 1024, NULL);
1.5250 + LEAVE_IF_ERROR(error);
1.5251 + CleanupClosePushL(thread);
1.5252 +
1.5253 + // Start the worker thread going
1.5254 + thread.Resume();
1.5255 + User::After(1 * 100000);
1.5256 + semaphore.Wait();
1.5257 +
1.5258 + // Wait for changes
1.5259 + CLogChangeDefinition* changes = changeObs->WaitForChangesLC(TCallBack(TestDeletingViewWithinObserverCallbackL_CallbackFn, view), CLogViewChangeObserver::EStopOnChanges);
1.5260 +
1.5261 + // Check the changes
1.5262 + TEST2(changes->Count(), 1);
1.5263 + TEST2(changes->At(0), ELogChangeTypeEventAdded);
1.5264 +
1.5265 + TLogId logId = -1;
1.5266 + TLogDatabaseChangeType dbChangeType = changes->At(0, logId);
1.5267 + TEST2(dbChangeType, ELogChangeTypeEventAdded);
1.5268 + TEST2(logId, 0);
1.5269 + TInt viewIndex = -1;
1.5270 + dbChangeType = changes->At(0, logId, viewIndex);
1.5271 + TEST2(logId, 0);
1.5272 + TEST2(viewIndex, 0);
1.5273 + //Find a change position by the log id
1.5274 + TInt pos = changes->Find(logId);
1.5275 + TEST2(pos, 0);
1.5276 + pos = changes->Find(8125347);
1.5277 + TEST2(pos, KErrNotFound);
1.5278 + //Find a change position by the log id and the change type
1.5279 + pos = changes->Find(logId, dbChangeType);
1.5280 + TEST2(pos, 0);
1.5281 + pos = changes->Find(432837, ELogChangeTypeEventChanged);
1.5282 + TEST2(pos, KErrNotFound);
1.5283 + //Find a view position by the view index
1.5284 + pos = changes->FindByViewIndex(viewIndex);
1.5285 + TEST2(pos, 0);
1.5286 + pos = changes->FindByViewIndex(33939);
1.5287 + TEST2(pos, KErrNotFound);
1.5288 + //Stream out the changes to a buffer
1.5289 + TBuf8<100> strmBuf;
1.5290 + RDesWriteStream strmOut(strmBuf);
1.5291 + changes->ExternalizeL(strmOut);
1.5292 + strmOut.CommitL();
1.5293 +
1.5294 + CleanupStack::PopAndDestroy(changes);
1.5295 +
1.5296 + //Re-create changes from the buffer
1.5297 + RDesReadStream strmIn(strmBuf);
1.5298 + changes = CLogChangeDefinition::NewL(strmIn);
1.5299 + dbChangeType = changes->At(0, logId);
1.5300 + TEST2(dbChangeType, ELogChangeTypeEventAdded);
1.5301 + TEST2(logId, 0);
1.5302 + delete changes;
1.5303 +
1.5304 + // The view should be deleted...
1.5305 + CleanupStack::PopAndDestroy(&thread);
1.5306 + CleanupStack::PopAndDestroy(&semaphore);
1.5307 +
1.5308 + CleanupStack::Pop(); // view
1.5309 + CleanupStack::PopAndDestroy(2, active); // changeObs, active
1.5310 + }
1.5311 +
1.5312 +
1.5313 +
1.5314 +//
1.5315 +//
1.5316 +//
1.5317 +struct TThreadData
1.5318 + {
1.5319 + inline TThreadData() : iArray(NULL), iStopThread(EFalse) { }
1.5320 + //
1.5321 + RArray<TLogId>* iArray;
1.5322 + TBool iStopThread;
1.5323 + };
1.5324 +
1.5325 +// Slave Thread for the TestNavigationWhilstBusyL() test.
1.5326 +// This runs continuously while aThreadData.iStopThread is False.
1.5327 +static void TestNavigationWhilstBusyL_ThreadFunctionL(TThreadData& aThreadData)
1.5328 + {
1.5329 + enum TNextOp
1.5330 + {
1.5331 + EAdd = 0,
1.5332 + EDelete,
1.5333 + EClear,
1.5334 + };
1.5335 +
1.5336 + const static TNextOp KOpTable[] =
1.5337 + {
1.5338 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5339 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5340 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5341 + EAdd, EAdd, EAdd, EAdd, EAdd, EDelete, EAdd, EAdd, EAdd, EAdd,
1.5342 + EAdd, EAdd, EAdd, EDelete, EDelete, EDelete, EAdd, EAdd, EAdd, EAdd,
1.5343 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5344 + EAdd, EAdd, EAdd, EDelete, EDelete, EDelete, EAdd, EAdd, EAdd, EAdd,
1.5345 + EDelete, EDelete, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5346 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5347 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5348 + EAdd, EAdd, EAdd, EDelete, EDelete, EDelete, EAdd, EAdd, EAdd, EAdd,
1.5349 + EDelete, EDelete, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5350 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5351 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5352 + EAdd, EAdd, EAdd, EAdd, EAdd, EDelete, EAdd, EAdd, EAdd, EAdd,
1.5353 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5354 + EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete,
1.5355 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5356 + EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete,
1.5357 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5358 + EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete,
1.5359 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5360 + EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete,
1.5361 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5362 + EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete, EAdd, EDelete,
1.5363 + EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd, EAdd,
1.5364 + };
1.5365 + const static TInt KIndexTable[] =
1.5366 + {
1.5367 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5368 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5369 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5370 + -1, -1, -1, -1, -1, 0, -1, -1, -1, -1,
1.5371 + -1, -1, -1, 0, 4, 20, -1, -1, -1, -1,
1.5372 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5373 + -1, -1, -1, 0, 1, 0, -1, -1, -1, -1,
1.5374 + 25, 8, -1, -1, -1, -1, -1, -1, -1, -1,
1.5375 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5376 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5377 + -1, -1, -1, 2, 4, 15, -1, -1, -1, -1,
1.5378 + 0, 0, -1, -1, -1, -1, -1, -1, -1, -1,
1.5379 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5380 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5381 + -1, -1, -1, -1, -1, 0, -1, -1, -1, -1,
1.5382 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5383 + -1, 0, -1, 30, -1, 0, -1, 31, -1, 14,
1.5384 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5385 + -1, 10, -1, 2, -1, 0, -1, 24, -1, 11,
1.5386 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5387 + -1, 0, -1, 10, -1, 0, -1, 12, -1, 5,
1.5388 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5389 + -1, 15, -1, 9, -1, 0, -1, 19, -1, 25,
1.5390 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5391 + -1, 0, -1, 1, -1, 0, -1, 7, -1, 31,
1.5392 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1.5393 + };
1.5394 + const static TInt KDelayTable[] =
1.5395 + {
1.5396 + 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001,
1.5397 + 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001,
1.5398 + 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001,
1.5399 + 0001, 0001, 0001, 0001, 0001, 0001, 0002, 0002, 0002, 0002,
1.5400 + 0002, 0002, 0002, 0001, 0001, 0001, 0002, 0002, 0002, 0002,
1.5401 + 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5402 + 0002, 0002, 0002, 0001, 0002, 0001, 0002, 0002, 0002, 0002,
1.5403 + 2500, 8000, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5404 + 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5405 + 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5406 + 0002, 0002, 0002, 2000, 4000000, 1500, 0002, 0002, 0002, 0002,
1.5407 + 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5408 + 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5409 + 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
1.5410 + 0002, 0002, 0002, 0002, 0002, 0001, 0002, 0002, 0002, 0002,
1.5411 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5412 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5413 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5414 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5415 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5416 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5417 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5418 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5419 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5420 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5421 + 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
1.5422 + };
1.5423 + const TInt KOpCount = sizeof(KOpTable) / sizeof(TNextOp);
1.5424 +
1.5425 + TInt TotalAdds = 0;
1.5426 + TInt TotalDeletes = 0;
1.5427 +
1.5428 + RFs fsSession;
1.5429 + LEAVE_IF_ERROR(fsSession.Connect());
1.5430 + CleanupClosePushL(fsSession);
1.5431 + //
1.5432 + CLogClient* client = CLogClient::NewL(fsSession);
1.5433 + CleanupStack::PushL(client);
1.5434 + //
1.5435 + CLogEvent* event = CLogEvent::NewL();
1.5436 + CleanupStack::PushL(event);
1.5437 + event->SetEventType(TEST_LOG_UID);
1.5438 + //
1.5439 + CTestActive* active = new(ELeave) CTestActive();
1.5440 + CleanupStack::PushL(active);
1.5441 +
1.5442 + // Add 5 recent events to the list
1.5443 + TBuf<KLogMaxDirectionLength> incoming;
1.5444 + client->GetString(incoming, R_LOG_DIR_IN);
1.5445 + event->SetDirection(incoming);
1.5446 +
1.5447 + CLogSchedulerTimer* timer = CLogSchedulerTimer::NewLC();
1.5448 + TInt count = 0;
1.5449 + TInt i=0;
1.5450 + TInt Repeat =0;
1.5451 + //
1.5452 + while(!(aThreadData.iStopThread))
1.5453 + {
1.5454 + const TInt op = KOpTable[i];
1.5455 + //
1.5456 + switch(op)
1.5457 + {
1.5458 + case EAdd:
1.5459 + {
1.5460 + event->SetContact(i);
1.5461 + active->StartL();
1.5462 + client->AddEvent(*event, active->iStatus);
1.5463 + CActiveScheduler::Start();
1.5464 + __ASSERT_ALWAYS(active->iStatus == KErrNone, User::Panic(_L("ThreadPanic"), 1));
1.5465 + ++count;
1.5466 + LEAVE_IF_ERROR(aThreadData.iArray->Append(event->Id()));
1.5467 + // TheTest.Printf(_L("EAdd: i:%d count:%d, id:%d\n"), i, aThreadData.iArray->Count(), event->Id());
1.5468 +
1.5469 + // Have to wait for a minimum of 1 ms here because otherwise DMBS sorts records (by time)
1.5470 + // in an arbitrary manor
1.5471 + // If this occurs this test will fail the logId == arrayId test below, as the order
1.5472 + // will be different between the logeng and arrayOfIds[].
1.5473 + const TInt timeToWait = KDelayTable[i];
1.5474 + if (timeToWait)
1.5475 + timer->Wait(timeToWait);
1.5476 +
1.5477 + timer->Wait(500000);
1.5478 +
1.5479 + TotalAdds++;
1.5480 + break;
1.5481 + }
1.5482 + case EDelete:
1.5483 + {
1.5484 + const TInt index = KIndexTable[i];
1.5485 + const TLogId logId = (*aThreadData.iArray)[index];
1.5486 + RDebug::Print(_L("EDelete index[%i]=%d id:%d\n"),i, index, logId);
1.5487 + active->StartL();
1.5488 + client->DeleteEvent(logId, active->iStatus);
1.5489 + CActiveScheduler::Start();
1.5490 + if (active->iStatus != KErrNone)
1.5491 + {
1.5492 + /* This happens if the LogID is not present in the log,
1.5493 + so the LogEngine cannot find the event to delete.
1.5494 + This can happen if the log is full, as it will start
1.5495 + deleting the old events itself */
1.5496 + RDebug::Print(_L("Delete failed error:%d\n"), active->iStatus.Int());
1.5497 + __ASSERT_ALWAYS(active->iStatus == KErrNone, User::Panic(_L("ThreadPanic"), 2));
1.5498 + }
1.5499 + aThreadData.iArray->Remove(index);
1.5500 + --count;
1.5501 + TotalDeletes++;
1.5502 + break;
1.5503 + }
1.5504 + case EClear:
1.5505 + {
1.5506 + TTime now;
1.5507 + now.UniversalTime();
1.5508 + now += TTimeIntervalDays(1);
1.5509 +
1.5510 + // Clear log
1.5511 + active->StartL();
1.5512 + client->ClearLog(now, active->iStatus);
1.5513 + CActiveScheduler::Start();
1.5514 + __ASSERT_ALWAYS(active->iStatus == KErrNone, User::Panic(_L("ThreadPanic"), 3));
1.5515 + aThreadData.iArray->Reset();
1.5516 + count = 0;
1.5517 + RDebug::Print(_L("TEST CODE: Log cleared\n"));
1.5518 + break;
1.5519 + }
1.5520 + }
1.5521 +
1.5522 + if (++i >= KOpCount)
1.5523 + {
1.5524 + i = 0;
1.5525 + Repeat++;
1.5526 + }
1.5527 + }
1.5528 +
1.5529 + RDebug::Print(_L("Repeats:%d TotalAdds:%d TotalDeletes:%d = %d\n"),Repeat,TotalAdds, TotalDeletes, count);
1.5530 +
1.5531 + CleanupStack::PopAndDestroy(timer);
1.5532 +
1.5533 + // Tidy up
1.5534 + CleanupStack::PopAndDestroy(4, &fsSession);
1.5535 + }
1.5536 +
1.5537 +// Slave Thread for the TestNavigationWhilstBusyL() test.
1.5538 +//
1.5539 +static TInt TestNavigationWhilstBusyL_ThreadFunction(TAny* aData)
1.5540 + {
1.5541 + TThreadData* threadData = reinterpret_cast<TThreadData*>(aData);
1.5542 + //
1.5543 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.5544 + if (!cleanup)
1.5545 + return KErrNoMemory;
1.5546 + CActiveScheduler* scheduler = new CActiveScheduler();
1.5547 + if (!scheduler)
1.5548 + return KErrNoMemory;
1.5549 + CActiveScheduler::Install(scheduler);
1.5550 + //
1.5551 + TRAPD(err, TestNavigationWhilstBusyL_ThreadFunctionL(*threadData));
1.5552 + UNUSED_VAR(err);
1.5553 + //
1.5554 + delete scheduler;
1.5555 + delete cleanup;
1.5556 + //
1.5557 + return KErrNone;
1.5558 + }
1.5559 +
1.5560 +/**
1.5561 +This tests using the Logeng while it is busy. It starts a new thread which adds and deletes events
1.5562 +using the data in KOpTable[] and KIndexTable[]. It then checks the database while the new thread is
1.5563 +running.
1.5564 +
1.5565 +@SYMTestCaseID SYSLIB-LOGENG-CT-0874
1.5566 +@SYMTestCaseDesc Tests for navigation while Log engine is busy.
1.5567 +@SYMTestPriority High
1.5568 +@SYMTestActions Start a new thread which adds and deletes events
1.5569 + using the data in defined tables.It then checks the database while the new thread is running.
1.5570 +@SYMTestExpectedResults Test must not fail
1.5571 +@SYMREQ REQ0000
1.5572 +*/
1.5573 +LOCAL_C void TestNavigationWhilstBusyL(CLogClient& aClient)
1.5574 + {
1.5575 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0874 "));
1.5576 + TestUtils::DeleteDatabaseL();
1.5577 +
1.5578 + TInt error = 0;
1.5579 + TInt count = 0;
1.5580 + //
1.5581 + CTestActive* active = new(ELeave) CTestActive();
1.5582 + CleanupStack::PushL(active);
1.5583 +
1.5584 + CLogViewChangeObserver* changeObs = CLogViewChangeObserver::NewLC();
1.5585 +
1.5586 + // Create a test event type - TEST_LOG_UID
1.5587 + CLogEventType* type = CLogEventType::NewL();
1.5588 + CleanupStack::PushL(type);
1.5589 +
1.5590 + type->SetUid(TEST_LOG_UID);
1.5591 + type->SetDescription(KTestEventDesc);
1.5592 + type->SetLoggingEnabled(ETrue);
1.5593 + TheTest.Printf(_L("\nTest event type added %x\n"),TEST_LOG_UID );
1.5594 +
1.5595 + // Register the event type
1.5596 + active->StartL();
1.5597 + aClient.AddEventType(*type, active->iStatus);
1.5598 + CActiveScheduler::Start();
1.5599 + TEST2(active->iStatus.Int(), KErrNone);
1.5600 +
1.5601 + CleanupStack::PopAndDestroy(); // type
1.5602 +
1.5603 + CLogViewEvent* view = CLogViewEvent::NewL(aClient, *changeObs);
1.5604 + CleanupStack::PushL(view);
1.5605 +
1.5606 + CLogFilter* filter = CLogFilter::NewL();
1.5607 + CleanupStack::PushL(filter);
1.5608 + filter->SetEventType(TEST_LOG_UID);
1.5609 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.5610 + TEST(!res);
1.5611 +
1.5612 + // increase the default log size
1.5613 + TLogConfig Config;
1.5614 + const TInt kMaxLogSize = 2000;
1.5615 + Config.iMaxLogSize = kMaxLogSize;
1.5616 + aClient.ChangeConfig( Config, active->iStatus);
1.5617 + active->StartL();
1.5618 + CActiveScheduler::Start();
1.5619 + TEST2(active->iStatus.Int(), KErrNone);
1.5620 +
1.5621 + // Shared data between this and the worker thread
1.5622 + RArray<TLogId> arrayOfIds(100);
1.5623 + CleanupClosePushL(arrayOfIds);
1.5624 + TThreadData threadData;
1.5625 + threadData.iArray = &arrayOfIds;
1.5626 +
1.5627 + // Create thread which adds two events
1.5628 + RThread thread;
1.5629 + RHeap& heap = User::Heap();
1.5630 + error = thread.Create(_L("T_VIEW1_OBS_EVENT_CREATION_THREAD2"), TestNavigationWhilstBusyL_ThreadFunction, 10 * 1024, &heap, &threadData);
1.5631 + LEAVE_IF_ERROR(error);
1.5632 + CleanupClosePushL(thread);
1.5633 +
1.5634 + // Start the worker thread going
1.5635 + thread.Resume();
1.5636 +
1.5637 + // Suspend this thread
1.5638 + TheTest.Printf(_L("TEST CODE: Suspending thread for 2 seconds\n"));
1.5639 + CLogSchedulerTimer* timer = CLogSchedulerTimer::NewLC();
1.5640 + timer->Wait(10 * 1000000);
1.5641 +
1.5642 + // Apply the filter now there are some records
1.5643 + TheTest.Printf(_L("TEST CODE: Setting filter again - should be some records now\n"));
1.5644 + res = view->SetFilterL(*filter, active->iStatus);
1.5645 + TEST(res);
1.5646 + active->StartL();
1.5647 + CActiveScheduler::Start();
1.5648 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel); // KErrCancel when the worker thread clears the log at the same time as we are navigating to the first record
1.5649 + count = view->CountL();
1.5650 + TEST(count > 0);
1.5651 +
1.5652 + // Navigate around (up and down) whilst events are being created
1.5653 + count = view->CountL();
1.5654 + res = view->FirstL(active->iStatus);
1.5655 + TEST(res);
1.5656 + do {
1.5657 + active->StartL();
1.5658 + CActiveScheduler::Start();
1.5659 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel);
1.5660 + count--;
1.5661 + if (active->iStatus == KErrNone)
1.5662 + TEST(view->Event().Id() != KLogNullId);
1.5663 + }
1.5664 + while(view->NextL(active->iStatus));
1.5665 +
1.5666 + timer->Wait(5 * 1000000);
1.5667 + count = view->CountL();
1.5668 + res = view->FirstL(active->iStatus);
1.5669 + TEST(res);
1.5670 + do {
1.5671 + active->StartL();
1.5672 + CActiveScheduler::Start();
1.5673 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel);
1.5674 + count--;
1.5675 + if (active->iStatus == KErrNone)
1.5676 + TEST(view->Event().Id() != KLogNullId);
1.5677 + }
1.5678 + while(view->NextL(active->iStatus));
1.5679 +
1.5680 + timer->Wait(5 * 1000000);
1.5681 + count = view->CountL();
1.5682 + res = view->LastL(active->iStatus);
1.5683 + TEST(res);
1.5684 + do {
1.5685 + active->StartL();
1.5686 + CActiveScheduler::Start();
1.5687 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel);
1.5688 + count--;
1.5689 + if (active->iStatus == KErrNone)
1.5690 + TEST(view->Event().Id() != KLogNullId);
1.5691 + }
1.5692 + while(view->PreviousL(active->iStatus));
1.5693 +
1.5694 + timer->Wait(5 * 1000000);
1.5695 + count = view->CountL();
1.5696 + res = view->FirstL(active->iStatus);
1.5697 + TEST(res);
1.5698 + do {
1.5699 + active->StartL();
1.5700 + CActiveScheduler::Start();
1.5701 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel);
1.5702 + count--;
1.5703 + if (active->iStatus == KErrNone)
1.5704 + TEST(view->Event().Id() != KLogNullId);
1.5705 + }
1.5706 + while(view->NextL(active->iStatus));
1.5707 +
1.5708 + timer->Wait(5 * 1000000);
1.5709 + count = view->CountL();
1.5710 + res = view->LastL(active->iStatus);
1.5711 + TEST(res);
1.5712 + do {
1.5713 + active->StartL();
1.5714 + CActiveScheduler::Start();
1.5715 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel);
1.5716 + count--;
1.5717 + if (active->iStatus == KErrNone)
1.5718 + TEST(view->Event().Id() != KLogNullId);
1.5719 + }
1.5720 + while(view->PreviousL(active->iStatus));
1.5721 +
1.5722 + timer->Wait(5 * 1000000);
1.5723 + count = view->CountL();
1.5724 + res = view->LastL(active->iStatus);
1.5725 + TEST(res);
1.5726 + do {
1.5727 + active->StartL();
1.5728 + CActiveScheduler::Start();
1.5729 + TEST(active->iStatus == KErrNone || active->iStatus == KErrCancel);
1.5730 + count--;
1.5731 + if (active->iStatus == KErrNone)
1.5732 + TEST(view->Event().Id() != KLogNullId);
1.5733 + }
1.5734 + while(view->PreviousL(active->iStatus));
1.5735 +
1.5736 + // STOP THE WORKER THREAD
1.5737 + threadData.iStopThread = ETrue;
1.5738 + TheTest.Printf(_L("Stopping worker thread\n"));
1.5739 + timer->Wait(30 * 1000000);
1.5740 +
1.5741 + // do some checks on the log
1.5742 + TLogConfig logConfig;
1.5743 + aClient.GetConfig( logConfig, active->iStatus);
1.5744 + active->StartL();
1.5745 + CActiveScheduler::Start();
1.5746 + TEST2(active->iStatus.Int(), KErrNone);
1.5747 + TheTest.Printf(_L("MaxLogSize:%ld MaxRecentLogSize:%d\n"),
1.5748 + logConfig.iMaxLogSize, logConfig.iMaxRecentLogSize );
1.5749 + TEST(logConfig.iMaxLogSize > logConfig.iMaxRecentLogSize);
1.5750 +
1.5751 + /* Check the log has not overflowed.
1.5752 + If this fails either increase the log size or reduce the time the
1.5753 + worker thread has been running
1.5754 + */
1.5755 + TEST(arrayOfIds.Count() < kMaxLogSize);
1.5756 +
1.5757 + // Loop though the logevents created by the worker thread and compare against the
1.5758 + // data stored in arrayOfIds.
1.5759 + res = view->LastL(active->iStatus);
1.5760 + TEST(res);
1.5761 + count = 0;
1.5762 + do {
1.5763 + active->StartL();
1.5764 + CActiveScheduler::Start();
1.5765 + TEST2(active->iStatus.Int(), KErrNone);
1.5766 +
1.5767 + const TLogId logId = view->Event().Id();
1.5768 + const TLogId arrayId = arrayOfIds[count];
1.5769 + if (logId != arrayId)
1.5770 + TheTest.Printf(_L("Events[%d] - array:%5d, id:%5d ****\n"), count, arrayId, logId);
1.5771 + // Note: If this test fails the fist thing to check is the time delay after EAdd.
1.5772 + // If several events get the same time stamp, the order is arbitrary and the test fails here.
1.5773 + TEST2(logId, arrayId);
1.5774 + count++;
1.5775 + }
1.5776 + while(view->PreviousL(active->iStatus));
1.5777 +
1.5778 + CleanupStack::PopAndDestroy(timer);
1.5779 + CleanupStack::PopAndDestroy(&thread);
1.5780 + CleanupStack::PopAndDestroy(&arrayOfIds);
1.5781 + CleanupStack::PopAndDestroy(filter);
1.5782 + CleanupStack::PopAndDestroy(view);
1.5783 + CleanupStack::PopAndDestroy(2, active); // changeObs, active
1.5784 + }
1.5785 +
1.5786 +/**
1.5787 +@SYMTestCaseID SYSLIB-LOGENG-CT-4014
1.5788 +@SYMTestCaseDesc Tests CLogView::CountL works correctly after SetFilterL returns no event.
1.5789 +@SYMTestPriority High
1.5790 +@SYMTestActions 1. ClearLog.
1.5791 + 2. SetFilterL.
1.5792 + 3. Add events and check count.
1.5793 + 4. Step through the added events.
1.5794 +@SYMTestExpectedResults 2 - SetFilterL indicates no event in view.
1.5795 + 3. CountL method returns correct number of events.
1.5796 + 4. Can step through the added events.
1.5797 +
1.5798 +@SYMDEF INC123066
1.5799 +*/
1.5800 +LOCAL_C void INC123066L(CLogClient& aClient)
1.5801 + {
1.5802 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-4014 "));
1.5803 + CLogEvent* event = CLogEvent::NewL();
1.5804 + CleanupStack::PushL(event);
1.5805 + event->SetEventType(KLogCallEventTypeUid);
1.5806 +
1.5807 + CTestActive* active = new(ELeave)CTestActive();
1.5808 + CleanupStack::PushL(active);
1.5809 +
1.5810 + // deliberately not using CLogViewChangeObserver
1.5811 +
1.5812 + CLogViewEvent* view = CLogViewEvent::NewL(aClient);
1.5813 + CleanupStack::PushL(view);
1.5814 +
1.5815 + CLogFilter* filter = CLogFilter::NewL();
1.5816 + CleanupStack::PushL(filter);
1.5817 +
1.5818 + // Clear all the events
1.5819 + TTime now;
1.5820 + now.UniversalTime();
1.5821 + now += TTimeIntervalDays(1);
1.5822 + active->StartL();
1.5823 + aClient.ClearLog(now, active->iStatus);
1.5824 + CActiveScheduler::Start();
1.5825 + TEST2(active->iStatus.Int(), KErrNone);
1.5826 +
1.5827 + TBool res = view->SetFilterL(*filter, active->iStatus);
1.5828 + TEST2(res, 0);
1.5829 +
1.5830 + TInt count;
1.5831 + for(count = 0; count < KTestEventNum; count++)
1.5832 + {
1.5833 + active->StartL();
1.5834 + aClient.AddEvent(*event, active->iStatus);
1.5835 + CActiveScheduler::Start();
1.5836 + TEST2(active->iStatus.Int(), KErrNone);
1.5837 +
1.5838 + TEST2(view->CountL(), count+1);
1.5839 + }
1.5840 +
1.5841 + // save the most recent logId for checking.
1.5842 + TLogId lastLogId = event->Id();
1.5843 +
1.5844 + // Can iterate over the added events
1.5845 + for (count = 0; count < KTestEventNum; count++)
1.5846 + {
1.5847 + active->StartL();
1.5848 + TEST( view->NextL(active->iStatus) );
1.5849 + CActiveScheduler::Start();
1.5850 + TEST2(active->iStatus.Int(), KErrNone);
1.5851 +
1.5852 + TLogId id = view->Event().Id();
1.5853 + // Most recent event is first. Oldest event is last.
1.5854 + TEST2((lastLogId - count), id);
1.5855 + }
1.5856 +
1.5857 + CleanupStack::PopAndDestroy(4, event); // filter, view, active, event
1.5858 +
1.5859 + // See same test using CLogViewRecent in TestRecentView1L.
1.5860 + }
1.5861 +
1.5862 +/**
1.5863 +@SYMTestCaseID PDS-LOGENG-CT-4017
1.5864 +@SYMTestCaseDesc Tests Handling of CLogViewRecent::SetRecentListL when
1.5865 + Remote Party string contains single quote character
1.5866 +@SYMTestPriority High
1.5867 +@SYMTestActions 1. Create 10 Incoming call events from 3 different
1.5868 + Remote Parties using single quotes in strings
1.5869 + 2. Call CLogViewRecent::SetRecentListL.
1.5870 + 3. Check that duplicate entries have been deleted and only
1.5871 + 3 events are showm
1.5872 +
1.5873 +@SYMTestExpectedResults SetRecentListL indicates 3 events in view
1.5874 +@SYMDEF INC136334
1.5875 +*/
1.5876 +LOCAL_C void INC136334L(CLogClient& aClient)
1.5877 + {
1.5878 + TheTest.Next(_L(" @SYMTestCaseID:PDS-LOGENG-CT-4017 "));
1.5879 + CLogEvent* event = CLogEvent::NewL();
1.5880 + CleanupStack::PushL(event);
1.5881 +
1.5882 + CTestActive* active = new(ELeave)CTestActive();
1.5883 + CleanupStack::PushL(active);
1.5884 +
1.5885 + CLogViewRecent* view = CLogViewRecent::NewL(aClient);
1.5886 + CleanupStack::PushL(view);
1.5887 +
1.5888 + // Incoming
1.5889 + TBuf<KLogMaxDirectionLength> buf;
1.5890 + aClient.GetString(buf, R_LOG_DIR_IN);
1.5891 +
1.5892 + event->SetEventType(KLogCallEventTypeUid);
1.5893 + event->SetDirection(buf);
1.5894 +
1.5895 + TInt count;
1.5896 + //Add 10 missed calls from 3 different contacts
1.5897 + //These should result in only 3 entries int he log as
1.5898 + //duplicates should be deleted.
1.5899 + for(count = 0; count < KTestEventNum; count++)
1.5900 + {
1.5901 + //Use a string with a single quote
1.5902 + event->SetRemoteParty(_L("Sam's Wife"));
1.5903 +
1.5904 + active->StartL();
1.5905 + aClient.AddEvent(*event, active->iStatus);
1.5906 + CActiveScheduler::Start();
1.5907 + TEST2(active->iStatus.Int(), KErrNone);
1.5908 +
1.5909 + //Use a string with multiple single quotes
1.5910 + event->SetRemoteParty(_L("'Sam's W'i'f'e'''''''"));
1.5911 +
1.5912 + active->StartL();
1.5913 + aClient.AddEvent(*event, active->iStatus);
1.5914 + CActiveScheduler::Start();
1.5915 + TEST2(active->iStatus.Int(), KErrNone);
1.5916 +
1.5917 + //Use a string with no single quotes
1.5918 + event->SetRemoteParty(_L("Sams Wife"));
1.5919 +
1.5920 + active->StartL();
1.5921 + aClient.AddEvent(*event, active->iStatus);
1.5922 + CActiveScheduler::Start();
1.5923 + TEST2(active->iStatus.Int(), KErrNone);
1.5924 +
1.5925 + }
1.5926 +
1.5927 + TEST2(view->CountL(), 0);
1.5928 + TBool res = view->SetRecentListL(KLogRecentIncomingCalls, active->iStatus);
1.5929 + TEST(res);
1.5930 +
1.5931 + //All of the duplicate entries should be deleted and there should
1.5932 + //only be 3 events in the log
1.5933 + active->StartL();
1.5934 + CActiveScheduler::Start();
1.5935 + TEST2(active->iStatus.Int(), KErrNone);
1.5936 + TEST2(view->CountL(), 3);
1.5937 +
1.5938 + //Clear the log for he next test
1.5939 + aClient.ClearLog(KLogRecentIncomingCalls, active->iStatus);
1.5940 + active->StartL();
1.5941 + CActiveScheduler::Start();
1.5942 + TEST2(active->iStatus.Int(), KErrNone);
1.5943 +
1.5944 + count = view->CountL();
1.5945 + TEST2(count, 0);
1.5946 +
1.5947 + CleanupStack::PopAndDestroy(3); // view, active, event
1.5948 +
1.5949 + }
1.5950 +//
1.5951 +//
1.5952 +//
1.5953 +void doTestsL()
1.5954 + {
1.5955 + TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
1.5956 +
1.5957 + TestUtils::Initialize(_L("t_logview1"));
1.5958 + TestUtils::DeleteDatabaseL();
1.5959 +
1.5960 + CLogClient* client = CLogClient::NewL(theFs);
1.5961 + CleanupStack::PushL(client);
1.5962 +
1.5963 + CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
1.5964 + CleanupStack::PushL(notifier);
1.5965 +
1.5966 + TheTest.Start(_L("Event View With No Filter"));
1.5967 +
1.5968 + TestEventViewL(*client);
1.5969 + theLog.Write(_L8("Test 1 OK\n"));
1.5970 +
1.5971 + TheTest.Next(_L("Event View Filter alternative"));
1.5972 + TestViewFilteringDefect1L(*client);
1.5973 + theLog.Write(_L8("Test 2 OK\n"));
1.5974 + TheTest.Next(_L("Event View With Filter"));
1.5975 + TestEventViewFilter1L(*client);
1.5976 + TestEventViewFilter2L(*client);
1.5977 + TheTest.Next(_L("INC123066 - LogView not updated if SetFilterL found no event"));
1.5978 + INC123066L(*client);
1.5979 + theLog.Write(_L8("Test 3 OK\n"));
1.5980 +
1.5981 + TheTest.Next(_L("Recent View"));
1.5982 + TestRecentView1L(*client);
1.5983 + TestRecentView2L(*client);
1.5984 + theLog.Write(_L8("Test 4 OK\n"));
1.5985 +
1.5986 + TheTest.Next(_L("Removing recent events"));
1.5987 + TestRecentRemove1L(*client);
1.5988 + TestRecentRemove2L(*client);
1.5989 + theLog.Write(_L8("Test 5 OK\n"));
1.5990 +
1.5991 + TheTest.Next(_L("Duplicate View"));
1.5992 + TestDuplicateViewL(*client);
1.5993 + theLog.Write(_L8("Test 6 OK\n"));
1.5994 +
1.5995 + TheTest.Next(_L("Removing duplicate events"));
1.5996 + TestDuplicateRemoveL(*client);
1.5997 + theLog.Write(_L8("Test 7 OK\n"));
1.5998 +
1.5999 + TheTest.Next(_L("Check purge performed on view setup"));
1.6000 + TestPurgeOnSetup1L(*client);
1.6001 + TestPurgeOnSetup2L(*client);
1.6002 + theLog.Write(_L8("Test 8 OK\n"));
1.6003 +
1.6004 + TheTest.Next(_L("View Purging"));
1.6005 + TestViewPurgeL(*client);
1.6006 + theLog.Write(_L8("Test 9 OK\n"));
1.6007 +
1.6008 + TheTest.Next(_L("Clearing duplicate lists"));
1.6009 + TestClearDuplicatesL(*client);
1.6010 + theLog.Write(_L8("Test 10 OK\n"));
1.6011 +
1.6012 + TheTest.Next(_L("Phone number matching"));
1.6013 + TestPhoneNumberMatchingL(*client);
1.6014 + theLog.Write(_L8("Test 11 OK\n"));
1.6015 +
1.6016 + TheTest.Next(_L("view flags setting/clearing"));
1.6017 + TestViewFlagsL(*client);
1.6018 + theLog.Write(_L8("Test 12 OK\n"));
1.6019 +
1.6020 + TheTest.Next(_L("Recent view flags setting/clearing"));
1.6021 + TestRecentFlagsL(*client);
1.6022 + theLog.Write(_L8("Test 13 OK\n"));
1.6023 +
1.6024 + TheTest.Next(_L("View change tests 1"));
1.6025 + TestViewChangeEvents1L(*client);
1.6026 + TestViewChangeEvents1aL(*client);
1.6027 + theLog.Write(_L8("Test 14 OK\n"));
1.6028 +
1.6029 + TheTest.Next(_L("View change tests 2"));
1.6030 + TestViewChangeEvents2L(*client);
1.6031 + TestViewChangeEvents2aL(*client);
1.6032 + theLog.Write(_L8("Test 15 OK\n"));
1.6033 +
1.6034 + TheTest.Next(_L("View deletion from within callback"));
1.6035 + TestDeletingViewWithinObserverCallbackL(*client);
1.6036 + theLog.Write(_L8("Test 16 OK\n"));
1.6037 +
1.6038 + TheTest.Next(_L("Test navigation whilst events are added"));
1.6039 + TestNavigationWhilstBusyL(*client);
1.6040 + theLog.Write(_L8("Test 17 OK\n"));
1.6041 +
1.6042 + TheTest.Next(_L("Defect INC105010 - phone number matching"));
1.6043 + INC105010L(*client);
1.6044 + theLog.Write(_L8("Test 18 OK\n"));
1.6045 +
1.6046 + TheTest.Next(_L("INC136334 - The miss call log won't show if you have ' in your contact"));
1.6047 + INC136334L(*client);
1.6048 + theLog.Write(_L8("Test 19 OK\n"));
1.6049 +
1.6050 + CleanupStack::PopAndDestroy(2); // notifier, client;
1.6051 + }