sl@0
|
1 |
// Copyright (c) 2002-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "t_logutil2.h"
|
sl@0
|
17 |
#include <logview.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
RTest TheTest(_L("t_lognotify"));
|
sl@0
|
20 |
|
sl@0
|
21 |
_LIT(KTestRemoteParty1, "Remote Party");
|
sl@0
|
22 |
_LIT(KTestDirection1, "Direction");
|
sl@0
|
23 |
const TLogDurationType KTestDurationType1 = 1;
|
sl@0
|
24 |
const TLogDuration KTestDuration1 = 0x1234;
|
sl@0
|
25 |
_LIT(KTestStatus1, "Status");
|
sl@0
|
26 |
_LIT(KTestSubject1, "Subject");
|
sl@0
|
27 |
_LIT(KTestNumber1, "TheNumber");
|
sl@0
|
28 |
const TLogContactItemId KTestContact1 = 0x1234;
|
sl@0
|
29 |
const TLogLink KTestLink1 = 0x1234;
|
sl@0
|
30 |
_LIT8(KTestData1, "ABCDEFGH");
|
sl@0
|
31 |
const TLogFlags KTestFlags1 = 0x5;
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0926
|
sl@0
|
35 |
@SYMTestCaseDesc Tests for CLogClient::NotifyChange() function
|
sl@0
|
36 |
@SYMTestPriority High
|
sl@0
|
37 |
@SYMTestActions Tests for notification of changes to the logengine database.
|
sl@0
|
38 |
Add events within the time intervals ,check for the notification of an event
|
sl@0
|
39 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
40 |
@SYMREQ REQ0000
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
LOCAL_C void TestNotificationL()
|
sl@0
|
43 |
{
|
sl@0
|
44 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0926 "));
|
sl@0
|
45 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
46 |
CleanupStack::PushL(client);
|
sl@0
|
47 |
|
sl@0
|
48 |
CTestActive* active1 = new(ELeave)CTestActive;
|
sl@0
|
49 |
CleanupStack::PushL(active1);
|
sl@0
|
50 |
|
sl@0
|
51 |
CTestActive* active2 = new(ELeave)CTestActive;
|
sl@0
|
52 |
CleanupStack::PushL(active2);
|
sl@0
|
53 |
|
sl@0
|
54 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
55 |
CleanupStack::PushL(event);
|
sl@0
|
56 |
|
sl@0
|
57 |
event->SetEventType(KLogCallEventTypeUid);
|
sl@0
|
58 |
event->SetRemoteParty(KTestRemoteParty1);
|
sl@0
|
59 |
event->SetDirection(KTestDirection1);
|
sl@0
|
60 |
event->SetDurationType(KTestDurationType1);
|
sl@0
|
61 |
event->SetDuration(KTestDuration1);
|
sl@0
|
62 |
event->SetStatus(KTestStatus1);
|
sl@0
|
63 |
event->SetSubject(KTestSubject1);
|
sl@0
|
64 |
event->SetNumber(KTestNumber1);
|
sl@0
|
65 |
event->SetContact(KTestContact1);
|
sl@0
|
66 |
event->SetLink(KTestLink1);
|
sl@0
|
67 |
event->SetDataL(KTestData1);
|
sl@0
|
68 |
event->SetFlags(KTestFlags1);
|
sl@0
|
69 |
|
sl@0
|
70 |
// *** Notification when change made - no delay
|
sl@0
|
71 |
active1->StartL();
|
sl@0
|
72 |
client->NotifyChange(0, active1->iStatus);
|
sl@0
|
73 |
|
sl@0
|
74 |
// Add an event
|
sl@0
|
75 |
active2->StartL();
|
sl@0
|
76 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
77 |
|
sl@0
|
78 |
// Not sure which will finish first
|
sl@0
|
79 |
CActiveScheduler::Start();
|
sl@0
|
80 |
if (!active1->IsActive())
|
sl@0
|
81 |
{
|
sl@0
|
82 |
TEST(active2->IsActive());
|
sl@0
|
83 |
TEST(active1->iStatus.Int() >= 0);
|
sl@0
|
84 |
CActiveScheduler::Start();
|
sl@0
|
85 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
else
|
sl@0
|
88 |
{
|
sl@0
|
89 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
90 |
CActiveScheduler::Start();
|
sl@0
|
91 |
TEST(active1->iStatus.Int() >= 0);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
// Remember the time
|
sl@0
|
95 |
TTime before;
|
sl@0
|
96 |
before.UniversalTime();
|
sl@0
|
97 |
|
sl@0
|
98 |
const TTimeIntervalMicroSeconds32 delay = 3000000;
|
sl@0
|
99 |
|
sl@0
|
100 |
// *** Notification when change made - with long delay
|
sl@0
|
101 |
active1->StartL();
|
sl@0
|
102 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
103 |
|
sl@0
|
104 |
// Add an event
|
sl@0
|
105 |
active2->StartL();
|
sl@0
|
106 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
107 |
|
sl@0
|
108 |
// We can be fairly certain that the function will complete first
|
sl@0
|
109 |
CActiveScheduler::Start();
|
sl@0
|
110 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
111 |
TEST(active1->IsActive());
|
sl@0
|
112 |
CActiveScheduler::Start();
|
sl@0
|
113 |
TEST(active1->iStatus.Int() >= 0);
|
sl@0
|
114 |
|
sl@0
|
115 |
User::After(1000000);
|
sl@0
|
116 |
|
sl@0
|
117 |
// Check delay
|
sl@0
|
118 |
TTime after;
|
sl@0
|
119 |
after.UniversalTime();
|
sl@0
|
120 |
TEST(before + delay <= after);
|
sl@0
|
121 |
|
sl@0
|
122 |
before.UniversalTime();
|
sl@0
|
123 |
|
sl@0
|
124 |
// *** Notification when change made - with long delay - multiple changes
|
sl@0
|
125 |
active1->StartL();
|
sl@0
|
126 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
127 |
|
sl@0
|
128 |
// Add an event
|
sl@0
|
129 |
active2->StartL();
|
sl@0
|
130 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
131 |
|
sl@0
|
132 |
// The function should complete
|
sl@0
|
133 |
CActiveScheduler::Start();
|
sl@0
|
134 |
TEST(active1->IsActive());
|
sl@0
|
135 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
136 |
|
sl@0
|
137 |
// Change the event
|
sl@0
|
138 |
active2->StartL();
|
sl@0
|
139 |
client->ChangeEvent(*event, active2->iStatus);
|
sl@0
|
140 |
|
sl@0
|
141 |
// The function should complete
|
sl@0
|
142 |
CActiveScheduler::Start();
|
sl@0
|
143 |
TEST(active1->IsActive());
|
sl@0
|
144 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
145 |
|
sl@0
|
146 |
// The notification should complete
|
sl@0
|
147 |
CActiveScheduler::Start();
|
sl@0
|
148 |
TEST(active1->iStatus.Int() >= 0);
|
sl@0
|
149 |
|
sl@0
|
150 |
#ifdef __WINS__
|
sl@0
|
151 |
User::After(1000000);
|
sl@0
|
152 |
#endif
|
sl@0
|
153 |
|
sl@0
|
154 |
// Check delay
|
sl@0
|
155 |
after.UniversalTime();
|
sl@0
|
156 |
TEST(before + TTimeIntervalMicroSeconds32(delay) <= after);
|
sl@0
|
157 |
|
sl@0
|
158 |
// *** Notification when change made - after long delay
|
sl@0
|
159 |
active1->StartL();
|
sl@0
|
160 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
161 |
|
sl@0
|
162 |
// Wait around for a time equal to the delay
|
sl@0
|
163 |
CTestTimer* timer = CTestTimer::NewL();
|
sl@0
|
164 |
timer->After(delay);
|
sl@0
|
165 |
CActiveScheduler::Start();
|
sl@0
|
166 |
delete timer;
|
sl@0
|
167 |
|
sl@0
|
168 |
// Add an event
|
sl@0
|
169 |
active2->StartL();
|
sl@0
|
170 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
171 |
|
sl@0
|
172 |
// Not sure which will finish first
|
sl@0
|
173 |
CActiveScheduler::Start();
|
sl@0
|
174 |
if (!active1->IsActive())
|
sl@0
|
175 |
{
|
sl@0
|
176 |
TEST(active2->IsActive());
|
sl@0
|
177 |
TEST(active1->iStatus.Int() >= 0);
|
sl@0
|
178 |
CActiveScheduler::Start();
|
sl@0
|
179 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
180 |
}
|
sl@0
|
181 |
else
|
sl@0
|
182 |
{
|
sl@0
|
183 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
184 |
CActiveScheduler::Start();
|
sl@0
|
185 |
TEST(active1->iStatus.Int() >= 0);
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
CleanupStack::PopAndDestroy(4); // event, active2, active1, client
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
/**
|
sl@0
|
192 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0927
|
sl@0
|
193 |
@SYMTestCaseDesc Tests for CLogClient::NotifyChangeCancel() function
|
sl@0
|
194 |
@SYMTestPriority High
|
sl@0
|
195 |
@SYMTestActions Tests for cancelling of any outstanding notification requests for changes to log engine database
|
sl@0
|
196 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
197 |
@SYMREQ REQ0000
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
LOCAL_C void TestCancelNotificationL()
|
sl@0
|
200 |
{
|
sl@0
|
201 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0927 "));
|
sl@0
|
202 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
203 |
CleanupStack::PushL(client);
|
sl@0
|
204 |
|
sl@0
|
205 |
CTestActive* active1 = new(ELeave)CTestActive;
|
sl@0
|
206 |
CleanupStack::PushL(active1);
|
sl@0
|
207 |
|
sl@0
|
208 |
// *** Cancel without delay
|
sl@0
|
209 |
active1->StartL();
|
sl@0
|
210 |
client->NotifyChange(0, active1->iStatus);
|
sl@0
|
211 |
client->NotifyChangeCancel();
|
sl@0
|
212 |
CActiveScheduler::Start();
|
sl@0
|
213 |
TEST2(active1->iStatus.Int(), KErrCancel);
|
sl@0
|
214 |
|
sl@0
|
215 |
const TInt delay = 3000000;
|
sl@0
|
216 |
|
sl@0
|
217 |
// *** Cancel with delay
|
sl@0
|
218 |
active1->StartL();
|
sl@0
|
219 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
220 |
|
sl@0
|
221 |
// Wait around for a bit
|
sl@0
|
222 |
CTestTimer* timer = CTestTimer::NewL();
|
sl@0
|
223 |
timer->After(delay / 2);
|
sl@0
|
224 |
CActiveScheduler::Start();
|
sl@0
|
225 |
delete timer;
|
sl@0
|
226 |
|
sl@0
|
227 |
client->NotifyChangeCancel();
|
sl@0
|
228 |
CActiveScheduler::Start();
|
sl@0
|
229 |
TEST2(active1->iStatus.Int(), KErrCancel);
|
sl@0
|
230 |
|
sl@0
|
231 |
// *** Cancel with long delay
|
sl@0
|
232 |
active1->StartL();
|
sl@0
|
233 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
234 |
|
sl@0
|
235 |
// Wait around for a bit
|
sl@0
|
236 |
timer = CTestTimer::NewL();
|
sl@0
|
237 |
timer->After(delay * 2);
|
sl@0
|
238 |
CActiveScheduler::Start();
|
sl@0
|
239 |
delete timer;
|
sl@0
|
240 |
|
sl@0
|
241 |
client->NotifyChangeCancel();
|
sl@0
|
242 |
CActiveScheduler::Start();
|
sl@0
|
243 |
TEST2(active1->iStatus.Int(), KErrCancel);
|
sl@0
|
244 |
|
sl@0
|
245 |
// *** Cancel after change
|
sl@0
|
246 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
247 |
CleanupStack::PushL(event);
|
sl@0
|
248 |
event->SetEventType(KLogCallEventTypeUid);
|
sl@0
|
249 |
|
sl@0
|
250 |
active1->StartL();
|
sl@0
|
251 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
252 |
|
sl@0
|
253 |
CTestActive* active2 = new(ELeave)CTestActive;
|
sl@0
|
254 |
CleanupStack::PushL(active2);
|
sl@0
|
255 |
|
sl@0
|
256 |
active2->StartL();
|
sl@0
|
257 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
258 |
CActiveScheduler::Start();
|
sl@0
|
259 |
TEST(active1->IsActive());
|
sl@0
|
260 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
261 |
|
sl@0
|
262 |
client->NotifyChangeCancel();
|
sl@0
|
263 |
CActiveScheduler::Start();
|
sl@0
|
264 |
TEST2(active1->iStatus.Int(), KErrCancel);
|
sl@0
|
265 |
|
sl@0
|
266 |
// *** Cancel after change and delay
|
sl@0
|
267 |
active1->StartL();
|
sl@0
|
268 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
269 |
|
sl@0
|
270 |
// Wait around for a bit
|
sl@0
|
271 |
timer = CTestTimer::NewL();
|
sl@0
|
272 |
timer->After(delay / 2);
|
sl@0
|
273 |
CActiveScheduler::Start();
|
sl@0
|
274 |
delete timer;
|
sl@0
|
275 |
|
sl@0
|
276 |
active2->StartL();
|
sl@0
|
277 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
278 |
CActiveScheduler::Start();
|
sl@0
|
279 |
TEST(active1->IsActive());
|
sl@0
|
280 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
281 |
|
sl@0
|
282 |
client->NotifyChangeCancel();
|
sl@0
|
283 |
CActiveScheduler::Start();
|
sl@0
|
284 |
TEST2(active1->iStatus.Int(), KErrCancel);
|
sl@0
|
285 |
|
sl@0
|
286 |
// *** Cancel after change and delay
|
sl@0
|
287 |
active1->StartL();
|
sl@0
|
288 |
client->NotifyChange(delay, active1->iStatus);
|
sl@0
|
289 |
|
sl@0
|
290 |
active2->StartL();
|
sl@0
|
291 |
client->AddEvent(*event, active2->iStatus);
|
sl@0
|
292 |
CActiveScheduler::Start();
|
sl@0
|
293 |
TEST(active1->IsActive());
|
sl@0
|
294 |
TEST2(active2->iStatus.Int(), KErrNone);
|
sl@0
|
295 |
|
sl@0
|
296 |
// Wait around for a bit
|
sl@0
|
297 |
timer = CTestTimer::NewL();
|
sl@0
|
298 |
timer->After(delay / 2);
|
sl@0
|
299 |
CActiveScheduler::Start();
|
sl@0
|
300 |
delete timer;
|
sl@0
|
301 |
|
sl@0
|
302 |
client->NotifyChangeCancel();
|
sl@0
|
303 |
CActiveScheduler::Start();
|
sl@0
|
304 |
TEST2(active1->iStatus.Int(), KErrCancel);
|
sl@0
|
305 |
|
sl@0
|
306 |
// *** Cancel when not active
|
sl@0
|
307 |
client->NotifyChangeCancel();
|
sl@0
|
308 |
|
sl@0
|
309 |
CleanupStack::PopAndDestroy(4); // active2, event, active, client
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0928
|
sl@0
|
314 |
@SYMTestCaseDesc Tests for notification requests on view purge
|
sl@0
|
315 |
@SYMTestPriority High
|
sl@0
|
316 |
@SYMTestActions Notify changes on log view event
|
sl@0
|
317 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
318 |
@SYMREQ REQ0000
|
sl@0
|
319 |
*/
|
sl@0
|
320 |
LOCAL_C void TestViewPurgeNotifyL()
|
sl@0
|
321 |
{
|
sl@0
|
322 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0928 "));
|
sl@0
|
323 |
CTestTimer* timer = CTestTimer::NewL();
|
sl@0
|
324 |
CleanupStack::PushL(timer);
|
sl@0
|
325 |
|
sl@0
|
326 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
327 |
CleanupStack::PushL(active);
|
sl@0
|
328 |
|
sl@0
|
329 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
330 |
CleanupStack::PushL(client);
|
sl@0
|
331 |
|
sl@0
|
332 |
CLogViewEvent* view = CLogViewEvent::NewL(*client);
|
sl@0
|
333 |
CleanupStack::PushL(view);
|
sl@0
|
334 |
|
sl@0
|
335 |
CLogFilter* filter = CLogFilter::NewL();
|
sl@0
|
336 |
CleanupStack::PushL(filter);
|
sl@0
|
337 |
|
sl@0
|
338 |
CTestActive* notify = new(ELeave)CTestActive;
|
sl@0
|
339 |
CleanupStack::PushL(notify);
|
sl@0
|
340 |
|
sl@0
|
341 |
// Start notifier
|
sl@0
|
342 |
notify->StartL();
|
sl@0
|
343 |
client->NotifyChange(1000000, notify->iStatus);
|
sl@0
|
344 |
|
sl@0
|
345 |
// Wait for 10 seconds
|
sl@0
|
346 |
TEST(notify->IsActive());
|
sl@0
|
347 |
timer = CTestTimer::NewL();
|
sl@0
|
348 |
timer->After(7000000);
|
sl@0
|
349 |
CActiveScheduler::Start();
|
sl@0
|
350 |
delete timer;
|
sl@0
|
351 |
|
sl@0
|
352 |
// Setup a view
|
sl@0
|
353 |
TEST(notify->IsActive());
|
sl@0
|
354 |
if (view->SetFilterL(*filter, active->iStatus))
|
sl@0
|
355 |
{
|
sl@0
|
356 |
active->StartL();
|
sl@0
|
357 |
CActiveScheduler::Start();
|
sl@0
|
358 |
TEST(view->CountL() > 0);
|
sl@0
|
359 |
}
|
sl@0
|
360 |
|
sl@0
|
361 |
// Wait for 10 seconds
|
sl@0
|
362 |
TEST(notify->IsActive());
|
sl@0
|
363 |
timer = CTestTimer::NewL();
|
sl@0
|
364 |
timer->After(10000000);
|
sl@0
|
365 |
CActiveScheduler::Start();
|
sl@0
|
366 |
delete timer;
|
sl@0
|
367 |
|
sl@0
|
368 |
// We shouldn't be notified because nothing has changed
|
sl@0
|
369 |
TEST(notify->IsActive());
|
sl@0
|
370 |
client->NotifyChangeCancel();
|
sl@0
|
371 |
CActiveScheduler::Start();
|
sl@0
|
372 |
TEST2(notify->iStatus.Int(), KErrCancel);
|
sl@0
|
373 |
|
sl@0
|
374 |
CleanupStack::PopAndDestroy(6); // notify, client, filter, view, active, timer
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
/**
|
sl@0
|
378 |
INC045485 - AV20 Messaging App crashes when attempting to write New SMS
|
sl@0
|
379 |
|
sl@0
|
380 |
@SYMTestCaseID SYSLIB-LOGENG-CT-0929
|
sl@0
|
381 |
@SYMTestCaseDesc Tests for defect number INC045485L.
|
sl@0
|
382 |
@SYMTestPriority High
|
sl@0
|
383 |
@SYMTestActions Tests by adding a fax event type
|
sl@0
|
384 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
385 |
@SYMREQ REQ0000
|
sl@0
|
386 |
*/
|
sl@0
|
387 |
LOCAL_C void INC045485L()
|
sl@0
|
388 |
{
|
sl@0
|
389 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0929 "));
|
sl@0
|
390 |
const TInt KEventCnt = 5;//test events count
|
sl@0
|
391 |
const TInt KSizeOfEventData = 400;//should be bigger than KLogSizeOfEventGuess constant
|
sl@0
|
392 |
//Create client, active, event
|
sl@0
|
393 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
394 |
CleanupStack::PushL(client);
|
sl@0
|
395 |
CTestActive* active = new (ELeave) CTestActive;
|
sl@0
|
396 |
CleanupStack::PushL(active);
|
sl@0
|
397 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
398 |
CleanupStack::PushL(event);
|
sl@0
|
399 |
//Add KEventCnt events
|
sl@0
|
400 |
for(TInt i=0;i<KEventCnt;++i)
|
sl@0
|
401 |
{
|
sl@0
|
402 |
event->SetId(0x13579 + i);
|
sl@0
|
403 |
event->SetEventType(KLogFaxEventTypeUid);
|
sl@0
|
404 |
TUint8 buf[KSizeOfEventData];
|
sl@0
|
405 |
Mem::Fill(buf, KSizeOfEventData, TChar('1' + i));
|
sl@0
|
406 |
TPtr8 ptr(buf, KSizeOfEventData, KSizeOfEventData);
|
sl@0
|
407 |
event->SetDataL(ptr);
|
sl@0
|
408 |
//
|
sl@0
|
409 |
active->StartL();
|
sl@0
|
410 |
client->AddEvent(*event, active->iStatus);
|
sl@0
|
411 |
CActiveScheduler::Start();
|
sl@0
|
412 |
TEST(!active->IsActive());
|
sl@0
|
413 |
client->Cancel();
|
sl@0
|
414 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
415 |
}
|
sl@0
|
416 |
//Create LogViewEvent, CLogFilter
|
sl@0
|
417 |
CLogViewEvent* view = CLogViewEvent::NewL(*client);
|
sl@0
|
418 |
CleanupStack::PushL(view);
|
sl@0
|
419 |
CLogFilter* filter = CLogFilter::NewL();
|
sl@0
|
420 |
CleanupStack::PushL(filter);
|
sl@0
|
421 |
filter->SetEventType(KLogFaxEventTypeUid);//the same as the type UID of added events
|
sl@0
|
422 |
//Filter the events
|
sl@0
|
423 |
if(view->SetFilterL(*filter, active->iStatus))
|
sl@0
|
424 |
{
|
sl@0
|
425 |
active->StartL();
|
sl@0
|
426 |
CActiveScheduler::Start();
|
sl@0
|
427 |
TEST(view->CountL() == KEventCnt);
|
sl@0
|
428 |
}
|
sl@0
|
429 |
//Visit the events
|
sl@0
|
430 |
TInt j = 0;
|
sl@0
|
431 |
TEST(view->FirstL(active->iStatus));
|
sl@0
|
432 |
do
|
sl@0
|
433 |
{
|
sl@0
|
434 |
active->StartL();
|
sl@0
|
435 |
CActiveScheduler::Start();
|
sl@0
|
436 |
TEST2(active->iStatus.Int(), KErrNone);//If the defect is not fixed this check fails with "KErrOverflow"
|
sl@0
|
437 |
const CLogEvent& e = view->Event();
|
sl@0
|
438 |
TheTest.Printf(_L("View Entry[%d]: Id:%d, Type:%x\n"), j, e.Id(), e.EventType().iUid);
|
sl@0
|
439 |
const TDesC8& data = e.Data();
|
sl@0
|
440 |
TEST(data.Length() == KSizeOfEventData);
|
sl@0
|
441 |
//Touch the data.
|
sl@0
|
442 |
for(TInt k=0;k<KSizeOfEventData;++k)
|
sl@0
|
443 |
{
|
sl@0
|
444 |
TChar c = data[k];
|
sl@0
|
445 |
TEST(c >= TChar('1') && c < TChar('1' + KEventCnt));
|
sl@0
|
446 |
}
|
sl@0
|
447 |
++j;
|
sl@0
|
448 |
}
|
sl@0
|
449 |
while(view->NextL(active->iStatus));
|
sl@0
|
450 |
//Destroy filter, view, event, active, client
|
sl@0
|
451 |
CleanupStack::PopAndDestroy(filter);
|
sl@0
|
452 |
CleanupStack::PopAndDestroy(view);
|
sl@0
|
453 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
454 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
455 |
CleanupStack::PopAndDestroy(client);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
//DEF060381 Propagated: Receiving Chinese SMSes causes the battery to drain too fast
|
sl@0
|
459 |
static void DEF060381L()
|
sl@0
|
460 |
{
|
sl@0
|
461 |
const TInt KSizeOfEventData = 1025; //should be bigger than KLogSizeOfEventGuess constant
|
sl@0
|
462 |
|
sl@0
|
463 |
//Create two clients. The first one will be used to send one message to the server,
|
sl@0
|
464 |
//which length is too big. The second client will be used to receive the message from
|
sl@0
|
465 |
//the server.
|
sl@0
|
466 |
//If the defect is not fixed, the function hangs and its return point is never reached.
|
sl@0
|
467 |
CLogClient* client1 = CLogClient::NewL(theFs);
|
sl@0
|
468 |
CleanupStack::PushL(client1);
|
sl@0
|
469 |
|
sl@0
|
470 |
CLogClient* client2 = CLogClient::NewL(theFs);
|
sl@0
|
471 |
CleanupStack::PushL(client2);
|
sl@0
|
472 |
|
sl@0
|
473 |
CTestActive* active = new (ELeave) CTestActive;
|
sl@0
|
474 |
CleanupStack::PushL(active);
|
sl@0
|
475 |
|
sl@0
|
476 |
//Create one SMS event, which holds a block of data with size bigger than the default
|
sl@0
|
477 |
//size of the client side buffer (KLogSizeOfEventGuess).
|
sl@0
|
478 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
479 |
CleanupStack::PushL(event);
|
sl@0
|
480 |
|
sl@0
|
481 |
event->SetId(0x9991118);
|
sl@0
|
482 |
event->SetEventType(KLogShortMessageEventTypeUid);
|
sl@0
|
483 |
TUint8 buf[KSizeOfEventData];
|
sl@0
|
484 |
for(TInt i=0;i<KSizeOfEventData;++i)
|
sl@0
|
485 |
{
|
sl@0
|
486 |
buf[i] = static_cast <TUint8> (i % 256);
|
sl@0
|
487 |
}
|
sl@0
|
488 |
TPtr8 ptr(buf, KSizeOfEventData, KSizeOfEventData);
|
sl@0
|
489 |
event->SetDataL(ptr);
|
sl@0
|
490 |
|
sl@0
|
491 |
//Send the created event to the server unsing the first client.
|
sl@0
|
492 |
active->StartL();
|
sl@0
|
493 |
client1->AddEvent(*event, active->iStatus);
|
sl@0
|
494 |
CActiveScheduler::Start();
|
sl@0
|
495 |
TEST(!active->IsActive());
|
sl@0
|
496 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
497 |
|
sl@0
|
498 |
//Create a view using the second client.
|
sl@0
|
499 |
//Create a filter for SMS messages.
|
sl@0
|
500 |
CLogViewEvent* view = CLogViewEvent::NewL(*client2);
|
sl@0
|
501 |
CleanupStack::PushL(view);
|
sl@0
|
502 |
CLogFilter* filter = CLogFilter::NewL();
|
sl@0
|
503 |
CleanupStack::PushL(filter);
|
sl@0
|
504 |
filter->SetEventType(KLogShortMessageEventTypeUid);//the same as the type UID of added events
|
sl@0
|
505 |
//Filter the events
|
sl@0
|
506 |
if(view->SetFilterL(*filter, active->iStatus))
|
sl@0
|
507 |
{
|
sl@0
|
508 |
active->StartL();
|
sl@0
|
509 |
CActiveScheduler::Start();//Here the test fucntion hangs and never returns, if the defect is not fixed.
|
sl@0
|
510 |
TEST(view->CountL() == 1);
|
sl@0
|
511 |
}
|
sl@0
|
512 |
//Visit the events
|
sl@0
|
513 |
TInt j = 0;
|
sl@0
|
514 |
TEST(view->FirstL(active->iStatus));
|
sl@0
|
515 |
do
|
sl@0
|
516 |
{
|
sl@0
|
517 |
active->StartL();
|
sl@0
|
518 |
CActiveScheduler::Start();
|
sl@0
|
519 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
520 |
const CLogEvent& e = view->Event();
|
sl@0
|
521 |
TheTest.Printf(_L("View Entry[%d]: Id:%d, Type:%x\n"), j, e.Id(), e.EventType().iUid);
|
sl@0
|
522 |
const TDesC8& data = e.Data();
|
sl@0
|
523 |
TEST(data.Length() == KSizeOfEventData);
|
sl@0
|
524 |
//Touch the data.
|
sl@0
|
525 |
for(TInt k=0;k<KSizeOfEventData;++k)
|
sl@0
|
526 |
{
|
sl@0
|
527 |
TUint8 c = data[k];
|
sl@0
|
528 |
TEST(c == static_cast <TUint8> (k % 256));
|
sl@0
|
529 |
}
|
sl@0
|
530 |
++j;
|
sl@0
|
531 |
}
|
sl@0
|
532 |
while(view->NextL(active->iStatus));
|
sl@0
|
533 |
|
sl@0
|
534 |
CleanupStack::PopAndDestroy(filter);
|
sl@0
|
535 |
CleanupStack::PopAndDestroy(view);
|
sl@0
|
536 |
CleanupStack::PopAndDestroy(event);
|
sl@0
|
537 |
CleanupStack::PopAndDestroy(active);
|
sl@0
|
538 |
CleanupStack::PopAndDestroy(client2);
|
sl@0
|
539 |
CleanupStack::PopAndDestroy(client1);
|
sl@0
|
540 |
}
|
sl@0
|
541 |
|
sl@0
|
542 |
void doTestsL()
|
sl@0
|
543 |
{
|
sl@0
|
544 |
TestUtils::Initialize(_L("t_lognotify"));
|
sl@0
|
545 |
TestUtils::DeleteDatabaseL();
|
sl@0
|
546 |
|
sl@0
|
547 |
TheTest.Start(_L("Notifications"));
|
sl@0
|
548 |
TestNotificationL();
|
sl@0
|
549 |
theLog.Write(_L8("Test 1 OK\n"));
|
sl@0
|
550 |
|
sl@0
|
551 |
TheTest.Next(_L("INC045485"));
|
sl@0
|
552 |
::INC045485L();
|
sl@0
|
553 |
|
sl@0
|
554 |
TheTest.Next(_L("Cancelling Notifications"));
|
sl@0
|
555 |
TestCancelNotificationL();
|
sl@0
|
556 |
theLog.Write(_L8("Test 2 OK\n"));
|
sl@0
|
557 |
|
sl@0
|
558 |
TheTest.Next(_L("Notify with View Purge"));
|
sl@0
|
559 |
TestViewPurgeNotifyL();
|
sl@0
|
560 |
theLog.Write(_L8("Test 3 OK\n"));
|
sl@0
|
561 |
|
sl@0
|
562 |
TheTest.Next(_L("DEF060381"));
|
sl@0
|
563 |
::DEF060381L();
|
sl@0
|
564 |
}
|