Update contrib.
1 // Copyright (c) 2002-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "t_logutil2.h"
20 This test may fail occasionally, especially after changing the LogEng server code. The reported error is KErrCorrupt.
21 The typical scenario when the test fails is:
22 1) Some of the test functions calls "__FILE_FAILNEXT(failCount++)"
23 2) The test calls some CLogClient method, typically "aClient.GetEventType()".
24 3) The statement "test(active->iStatus == KErrNone)" fails.
25 This behaviour might be related to INC044553 "DBMS does not handle OOD error
26 scenarios correctly when committing a transaction".
27 "__FILE_FAILNEXT" is a macro, which calls theFs.SetErrorCondition(KErrGeneral, X).
28 If you perform a search with "SetErrorCondition" keyword in "Programming" database, you will find
29 some explanations that the programmer has to be careful when using SetErrorCondition() method,
32 "You have to be careful if you use this in the same way as you do for heap testing, because you
33 can get the file system in a state where it think the file you're working on is corrupted."
35 Anyway, LOGENG server internally uses DBMS component. Calling SetErrorCondition() we test DBMS
36 component actually not LOGENG component!
37 There is one addidtional thing in the test, which makes me believing that the problem is not
38 in LOGENG but in SetErrorCondition()/DBMS interaction - in many if the test functions a statement
44 may be found. I think that it is there to prevent exactly the problem with
45 SetErrorCondition()/DBMS interaction.
48 RTest TheTest(_L("t_logfile"));
50 const TUid KTestEventUid = {0x10005393};
51 _LIT(KTestEventDesc1, "Event Type Description");
52 _LIT(KTestEventDesc2, "Changed Event Description");
53 _LIT(KTestRemoteParty1, "Remote Party");
54 _LIT(KTestRemoteParty2, "Changed Remote Party");
55 _LIT(KTestDirection1, "Direction");
56 _LIT(KTestDirection2, "Changed Direction");
57 const TLogDurationType KTestDurationType1 = 1;
58 const TLogDurationType KTestDurationType2 = 2;
59 const TLogDuration KTestDuration1 = 0x1234;
60 const TLogDuration KTestDuration2 = 0x1234567;
61 _LIT(KTestStatus1, "Status");
62 _LIT(KTestStatus2, "Changed Status");
63 _LIT(KTestSubject1, "Subject");
64 _LIT(KTestSubject2, "Changed Subject");
65 _LIT(KTestNumber1, "Number");
66 _LIT(KTestNumber2, "Changed Number");
67 const TLogContactItemId KTestContact1 = 0x1234;
68 const TLogContactItemId KTestContact2 = 0x1234567;
69 const TLogLink KTestLink1 = 0x1234;
70 const TLogLink KTestLink2 = 0x1234567;
71 _LIT8(KTestData1, "ABCDEFGH");
72 _LIT8(KTestData2, "IJKLMNOPQRSTUVWXYZ");
73 const TLogSize KTestMaxLogSize = 0xFFF;
74 const TLogRecentSize KTestMaxRecentLogSize = 0xF;
75 const TLogAge KTestMaxEventAge = 0xFFFFFFF;
78 @SYMTestCaseID SYSLIB-LOGENG-CT-1334
79 @SYMTestCaseDesc Basic test to add events
81 @SYMTestActions Tests for CLogClient::AddEvent() function
82 @SYMTestExpectedResults Test must not fail
85 LOCAL_C void TestBasicL(CLogClient& aClient)
87 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1334 "));
88 CTestActive* active = new(ELeave)CTestActive();
89 CleanupStack::PushL(active);
91 CLogEvent* event = CLogEvent::NewL();
92 CleanupStack::PushL(event);
97 event->SetEventType(KLogCallEventTypeUid);
100 aClient.AddEvent(*event, active->iStatus);
101 CActiveScheduler::Start();
102 TEST2(active->iStatus.Int(), KErrNone);
104 TEST(event->EventType() == KLogCallEventTypeUid);
105 TEST(event->Description().Length() > 0);
106 TEST(event->Time() >= now);
109 TLogId id = event->Id();
111 event->SetRemoteParty(KTestRemoteParty1);
112 event->SetDirection(KTestDirection1);
113 event->SetDurationType(KTestDurationType1);
114 event->SetDuration(KTestDuration1);
115 event->SetStatus(KTestStatus1);
116 event->SetSubject(KTestSubject1);
117 event->SetNumber(KTestNumber1);
118 event->SetContact(KTestContact1);
119 event->SetLink(KTestLink1);
120 event->SetDataL(KTestData1);
123 aClient.ChangeEvent(*event, active->iStatus);
124 CActiveScheduler::Start();
125 TEST2(active->iStatus.Int(), KErrNone);
127 TEST(event->Id() == id);
128 TEST(event->EventType() == KLogCallEventTypeUid);
129 TEST(event->Description().Length() > 0);
130 TEST(event->Time() == now);
131 TEST(event->RemoteParty() == KTestRemoteParty1);
132 TEST(event->Direction() == KTestDirection1);
133 TEST(event->DurationType() == KTestDurationType1);
134 TEST(event->Duration() == KTestDuration1);
135 TEST(event->Status() == KTestStatus1);
136 TEST(event->Subject() == KTestSubject1);
137 TEST(event->Number() == KTestNumber1);
138 TEST(event->Contact() == KTestContact1);
139 TEST(event->Link() == KTestLink1);
140 TEST(event->Data() == KTestData1);
142 CleanupStack::PopAndDestroy(); // event;
144 event = CLogEvent::NewL();
145 CleanupStack::PushL(event);
150 aClient.GetEvent(*event, active->iStatus);
151 CActiveScheduler::Start();
152 TEST2(active->iStatus.Int(),KErrNone);
154 TEST(event->Id() == id);
155 TEST(event->EventType() == KLogCallEventTypeUid);
156 TEST(event->Description().Length() > 0);
157 TEST(event->Time() == now);
158 TEST(event->RemoteParty() == KTestRemoteParty1);
159 TEST(event->Direction() == KTestDirection1);
160 TEST(event->DurationType() == KTestDurationType1);
161 TEST(event->Duration() == KTestDuration1);
162 TEST(event->Status() == KTestStatus1);
163 TEST(event->Subject() == KTestSubject1);
164 TEST(event->Number() == KTestNumber1);
165 TEST(event->Contact() == KTestContact1);
166 TEST(event->Link() == KTestLink1);
167 TEST(event->Data() == KTestData1);
170 aClient.DeleteEvent(id, active->iStatus);
171 CActiveScheduler::Start();
172 TEST2(active->iStatus.Int(),KErrNone);
175 aClient.GetEvent(*event, active->iStatus);
176 CActiveScheduler::Start();
177 TEST2(active->iStatus.Int(), KErrNotFound);
179 CleanupStack::PopAndDestroy(2); // event, active
183 @SYMTestCaseID SYSLIB-LOGENG-CT-0911
184 @SYMTestCaseDesc Tests for new CLogClient object creation
185 @SYMTestPriority High
186 @SYMTestActions Create a new CLogClient check for memory errors
187 @SYMTestExpectedResults Test must not fail
190 LOCAL_C void TestConstructionL()
192 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0911 "));
193 CLogClient* client = NULL;
196 TBool finished = EFalse;
201 TheTest.Printf(_L("%d\r\n"), failCount);
205 TRAP(error, client = CLogClient::NewL(theFs));
206 TEST2(error, KErrNone);
212 __FILE_FAILNEXT(KErrNoMemory, failCount++);
214 TRAP(error, client = CLogClient::NewL(theFs));
218 if (error == KErrNone)
225 TEST2(error, KErrNoMemory);
226 TestUtils::DeleteDatabaseL();
231 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
235 @SYMTestCaseID SYSLIB-LOGENG-CT-0912
236 @SYMTestCaseDesc Adding an event type test,
237 Tests for CLogClient::AddEventType() function
238 @SYMTestPriority High
239 @SYMTestActions Check for file failure errors while adding event types
240 @SYMTestExpectedResults Test must not fail
243 LOCAL_C void TestAddEventTypeL(CLogClient& aClient)
245 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0912 "));
246 CLogEventType* type = CLogEventType::NewL();
247 CleanupStack::PushL(type);
249 type->SetUid(KTestEventUid);
250 type->SetDescription(KTestEventDesc1);
251 type->SetLoggingEnabled(ETrue);
253 CTestActive* active = new(ELeave)CTestActive();
254 CleanupStack::PushL(active);
257 TBool finished = EFalse;
265 aClient.AddEventType(*type, active->iStatus);
267 CActiveScheduler::Start();
268 TEST2(active->iStatus.Int(), KErrNone);
273 TheTest.Printf(_L("%d \r"), failCount);
275 __FILE_FAILNEXT(KErrNoMemory, failCount++);
277 aClient.AddEventType(*type, active->iStatus);
280 CActiveScheduler::Start();
282 if (active->iStatus == KErrNone)
285 error = active->iStatus.Int();
289 if (error == KErrNoMemory)
292 aClient.GetEventType(*type, active->iStatus);
293 CActiveScheduler::Start();
294 TEST2(active->iStatus.Int(), KErrNotFound);
297 TEST2(error, KErrNone);
302 aClient.AddEventType(*type, active->iStatus);
303 CActiveScheduler::Start();
304 TEST2(active->iStatus.Int(), KErrAlreadyExists);
306 CleanupStack::PopAndDestroy(2); // active, type
307 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
311 @SYMTestCaseID SYSLIB-LOGENG-CT-0913
312 @SYMTestCaseDesc Getting an event type test.
313 Tests for CLogClient::GetEventType() function
314 @SYMTestPriority High
315 @SYMTestActions Check for file failure errors while getting event types
316 @SYMTestExpectedResults Test must not fail
319 LOCAL_C void TestGetEventTypeL(CLogClient& aClient)
321 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0913 "));
322 CLogEventType* type = CLogEventType::NewL();
323 CleanupStack::PushL(type);
325 type->SetUid(KTestEventUid);
327 CTestActive* active = new(ELeave)CTestActive();
328 CleanupStack::PushL(active);
331 TBool finished = EFalse;
335 TheTest.Printf(_L("%d \r"), failCount);
336 __FILE_FAILNEXT(KErrNoMemory, failCount++);
338 aClient.GetEventType(*type, active->iStatus);
341 CActiveScheduler::Start();
343 if (active->iStatus == KErrNone)
347 TEST2(active->iStatus.Int(), KErrNoMemory);
348 TEST(type->Description() == KNullDesC);
354 TEST(type->Uid() == KTestEventUid);
355 TEST(type->Description() == KTestEventDesc1);
356 TEST(type->LoggingEnabled());
358 CleanupStack::PopAndDestroy(2); // active, type
359 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
363 @SYMTestCaseID SYSLIB-LOGENG-CT-0914
364 @SYMTestCaseDesc Changing an event type test,
365 Tests for CLogClient::ChangeEventType() function
366 @SYMTestPriority High
367 @SYMTestActions Check for file failure errors while changing event types
368 @SYMTestExpectedResults Test must not fail
371 LOCAL_C void TestChangeEventTypeL(CLogClient& aClient)
373 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0914 "));
374 CTestActive* active = new(ELeave)CTestActive();
375 CleanupStack::PushL(active);
377 CLogEventType* type = CLogEventType::NewL();
378 CleanupStack::PushL(type);
380 type->SetUid(KTestEventUid);
383 TBool finished = EFalse;
390 type->SetDescription(KTestEventDesc2);
391 type->SetLoggingEnabled(EFalse);
395 aClient.ChangeEventType(*type, active->iStatus);
397 CActiveScheduler::Start();
398 TEST2(active->iStatus.Int(), KErrNone);
403 TheTest.Printf(_L("%d \r"), failCount);
404 __FILE_FAILNEXT(KErrNoMemory, failCount++);
406 aClient.ChangeEventType(*type, active->iStatus);
409 CActiveScheduler::Start();
411 if (active->iStatus == KErrNone)
414 error = active->iStatus.Int();
418 if (error == KErrNoMemory)
421 aClient.GetEventType(*type, active->iStatus);
422 CActiveScheduler::Start();
423 TEST2(active->iStatus.Int(), KErrNone);
425 TEST(type->Description() == KTestEventDesc1);
426 TEST(type->LoggingEnabled());
429 TEST2(error, KErrNone);
432 type->SetUid(KTestEventUid);
435 aClient.GetEventType(*type, active->iStatus);
436 CActiveScheduler::Start();
437 TEST2(active->iStatus.Int(), KErrNone);
439 TEST(type->Uid() == KTestEventUid);
440 TEST(type->Description() == KTestEventDesc2);
441 TEST(type->LoggingEnabled() == EFalse);
443 CleanupStack::PopAndDestroy(2); // type, active
444 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
448 @SYMTestCaseID SYSLIB-LOGENG-CT-0915
449 @SYMTestCaseDesc Deleting an event type test
450 Tests for CLogClient::DeleteEventType() function
451 @SYMTestPriority High
452 @SYMTestActions Check for file failure errors while deleting event types
453 @SYMTestExpectedResults Test must not fail
456 LOCAL_C void TestDeleteEventTypeL(CLogClient& aClient)
458 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0915 "));
459 CTestActive* active = new(ELeave)CTestActive();
460 CleanupStack::PushL(active);
462 CLogEventType* type = CLogEventType::NewL();
463 CleanupStack::PushL(type);
465 type->SetUid(KTestEventUid);
468 TBool finished = EFalse;
477 aClient.DeleteEventType(KTestEventUid, active->iStatus);
479 CActiveScheduler::Start();
480 TEST2(active->iStatus.Int(), KErrNone);
485 TheTest.Printf(_L("%d \r"), failCount);
486 __FILE_FAILNEXT(KErrNoMemory, failCount++);
488 aClient.DeleteEventType(KTestEventUid, active->iStatus);
491 CActiveScheduler::Start();
493 if (active->iStatus == KErrNone)
496 error = active->iStatus.Int();
500 if (error == KErrNoMemory)
503 aClient.GetEventType(*type, active->iStatus);
504 CActiveScheduler::Start();
505 TEST2(active->iStatus.Int(), KErrNone);
508 TEST2(error, KErrNone);
512 aClient.GetEventType(*type, active->iStatus);
513 CActiveScheduler::Start();
514 TEST2(active->iStatus.Int(), KErrNotFound);
516 CleanupStack::PopAndDestroy(2); // type, active
517 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
521 @SYMTestCaseID SYSLIB-LOGENG-CT-0916
522 @SYMTestCaseDesc Adding an event test,
523 Tests for CLogClient::AddEvent() function
524 @SYMTestPriority High
525 @SYMTestActions Check for file failure errors while adding event
526 Tests for no error conditons,and the event information
527 @SYMTestExpectedResults Test must not fail
530 LOCAL_C void TestAddEventL(CLogClient& aClient)
532 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0916 "));
533 // Ensure we always start from the same state
534 TestUtils::DeleteDatabaseL();
536 CLogEventType* type = CLogEventType::NewL();
537 CleanupStack::PushL(type);
539 type->SetUid(KTestEventUid);
540 type->SetDescription(KTestEventDesc1);
541 type->SetLoggingEnabled(ETrue);
543 CTestActive* active = new(ELeave)CTestActive();
544 CleanupStack::PushL(active);
547 aClient.AddEventType(*type, active->iStatus);
548 CActiveScheduler::Start();
549 TEST2(active->iStatus.Int(), KErrNone);
551 CLogEvent* event = CLogEvent::NewL();
552 CleanupStack::PushL(event);
557 event->SetEventType(KTestEventUid);
558 event->SetRemoteParty(KTestRemoteParty1);
559 event->SetDirection(KTestDirection1);
560 event->SetDurationType(KTestDurationType1);
561 event->SetDuration(KTestDuration1);
562 event->SetStatus(KTestStatus1);
563 event->SetSubject(KTestSubject1);
564 event->SetNumber(KTestNumber1);
565 event->SetContact(KTestContact1);
566 event->SetLink(KTestLink1);
567 event->SetDataL(KTestData1);
570 TBool finished = EFalse;
579 aClient.AddEvent(*event, active->iStatus);
581 CActiveScheduler::Start();
582 TEST2(active->iStatus.Int(), KErrNone);
587 TheTest.Printf(_L("%d \r"), failCount);
588 __FILE_FAILNEXT(KErrNoMemory, failCount++);
589 aClient.AddEvent(*event, active->iStatus);
592 CActiveScheduler::Start();
594 if (active->iStatus == KErrNone)
597 error = active->iStatus.Int();
601 if (error == KErrNoMemory)
606 aClient.GetEvent(*event, active->iStatus);
607 CActiveScheduler::Start();
608 TEST2(active->iStatus.Int(), KErrNotFound);
610 event->SetId(KLogNullId);
613 TEST2(error, KErrNone);
616 TEST(event->Id() == 0);
617 TEST(event->Time() >= now);
618 TEST(event->Description() == KTestEventDesc1);
621 aClient.GetEvent(*event, active->iStatus);
622 CActiveScheduler::Start();
623 TEST2(active->iStatus.Int(), KErrNone);
625 CleanupStack::PopAndDestroy(3); // event, active, type
626 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
630 @SYMTestCaseID SYSLIB-LOGENG-CT-0917
631 @SYMTestCaseDesc Get an events' information test
632 Tests for CLogClient::GetEvent() function
633 @SYMTestPriority High
634 @SYMTestActions Check for file failure errors while getting an event
635 Tests for no error conditons,and the event information.
636 @SYMTestExpectedResults Test must not fail
639 LOCAL_C void TestGetEventL(CLogClient& aClient)
641 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0917 "));
642 CTestActive* active = new(ELeave)CTestActive();
643 CleanupStack::PushL(active);
645 CLogEvent* event = CLogEvent::NewL();
646 CleanupStack::PushL(event);
651 TBool finished = EFalse;
655 TheTest.Printf(_L("%d \r"), failCount);
656 __FILE_FAILNEXT(KErrNoMemory, failCount++);
657 aClient.GetEvent(*event, active->iStatus);
660 CActiveScheduler::Start();
662 if (active->iStatus == KErrNone)
665 TEST2(active->iStatus.Int(), KErrNoMemory);
670 TEST(event->Id() == 0);
671 TEST(event->Time() > TTime(0));
672 TEST(event->Description() == KTestEventDesc1);
673 TEST(event->EventType() == KTestEventUid);
674 TEST(event->RemoteParty() == KTestRemoteParty1);
675 TEST(event->Direction() == KTestDirection1);
676 TEST(event->DurationType() == KTestDurationType1);
677 TEST(event->Duration() == KTestDuration1);
678 TEST(event->Status() == KTestStatus1);
679 TEST(event->Subject() == KTestSubject1);
680 TEST(event->Number() == KTestNumber1);
681 TEST(event->Contact() == KTestContact1);
682 TEST(event->Link() == KTestLink1);
683 TEST(event->Data() == KTestData1);
685 CleanupStack::PopAndDestroy(2); // event, active
686 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
690 @SYMTestCaseID SYSLIB-LOGENG-CT-0918
691 @SYMTestCaseDesc Changing an event type test
692 Tests for CLogClient::ChangeEvent() function
693 @SYMTestPriority High
694 @SYMTestActions Check for file failure errors while changing an event
695 Tests for no error conditons,and the event information for the changed event
696 @SYMTestExpectedResults Test must not fail
699 LOCAL_C void TestChangeEventL(CLogClient& aClient)
701 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0918 "));
702 CTestActive* active = new(ELeave)CTestActive();
703 CleanupStack::PushL(active);
705 CLogEvent* event = CLogEvent::NewL();
706 CleanupStack::PushL(event);
712 TBool finished = EFalse;
721 event->SetRemoteParty(KTestRemoteParty2);
722 event->SetDirection(KTestDirection2);
723 event->SetDurationType(KTestDurationType2);
724 event->SetDuration(KTestDuration2);
725 event->SetStatus(KTestStatus2);
726 event->SetSubject(KTestSubject2);
727 event->SetNumber(KTestNumber2);
728 event->SetContact(KTestContact2);
729 event->SetLink(KTestLink2);
730 event->SetDataL(KTestData2);
734 aClient.ChangeEvent(*event, active->iStatus);
736 CActiveScheduler::Start();
737 TEST2(active->iStatus.Int(), KErrNone);
742 TheTest.Printf(_L("%d \r"), failCount);
743 __FILE_FAILNEXT(KErrNoMemory, failCount++);
745 aClient.ChangeEvent(*event, active->iStatus);
748 CActiveScheduler::Start();
749 if (active->iStatus == KErrNone)
752 error = active->iStatus.Int();
756 if (error == KErrNoMemory)
759 aClient.GetEvent(*event, active->iStatus);
760 CActiveScheduler::Start();
761 if (active->iStatus != KErrNone)
762 TheTest.Printf(_L("\nerror code:%d failcount:%d\n"),active->iStatus.Int(),failCount);
763 TEST2(active->iStatus.Int(), KErrNone);
765 TEST(event->Id() == 0);
766 TEST(event->Time() > TTime(0));
767 TEST(event->Description() == KTestEventDesc1);
768 TEST(event->EventType() == KTestEventUid);
769 TEST(event->RemoteParty() == KTestRemoteParty1);
770 TEST(event->Direction() == KTestDirection1);
771 TEST(event->DurationType() == KTestDurationType1);
772 TEST(event->Duration() == KTestDuration1);
773 TEST(event->Status() == KTestStatus1);
774 TEST(event->Subject() == KTestSubject1);
775 TEST(event->Number() == KTestNumber1);
776 TEST(event->Contact() == KTestContact1);
777 TEST(event->Link() == KTestLink1);
778 TEST(event->Data() == KTestData1);
781 TEST2(error, KErrNone);
785 aClient.GetEvent(*event, active->iStatus);
786 CActiveScheduler::Start();
787 TEST2(active->iStatus.Int(), KErrNone);
789 TEST(event->Id() == 0);
790 TEST(event->Time() == now);
791 TEST(event->Description() == KTestEventDesc1);
792 TEST(event->EventType() == KTestEventUid);
793 TEST(event->RemoteParty() == KTestRemoteParty2);
794 TEST(event->Direction() == KTestDirection2);
795 TEST(event->DurationType() == KTestDurationType2);
796 TEST(event->Duration() == KTestDuration2);
797 TEST(event->Status() == KTestStatus2);
798 TEST(event->Subject() == KTestSubject2);
799 TEST(event->Number() == KTestNumber2);
800 TEST(event->Contact() == KTestContact2);
801 TEST(event->Link() == KTestLink2);
802 TEST(event->Data() == KTestData2);
804 CleanupStack::PopAndDestroy(2); // event, active
805 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
809 @SYMTestCaseID SYSLIB-LOGENG-CT-0919
810 @SYMTestCaseDesc Deleting an event test,
811 Tests for CLogClient::DeleteEvent() function
812 @SYMTestPriority High
813 @SYMTestActions Check for file failure errors while deleting an event
814 Tests for ErrNone flag.
815 @SYMTestExpectedResults Test must not fail
818 LOCAL_C void TestDeleteEventL(CLogClient& aClient)
820 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0919 "));
821 CTestActive* active = new(ELeave)CTestActive();
822 CleanupStack::PushL(active);
824 CLogEvent* event = CLogEvent::NewL();
825 CleanupStack::PushL(event);
830 TBool finished = EFalse;
839 aClient.DeleteEvent(0, active->iStatus);
841 CActiveScheduler::Start();
842 TEST2(active->iStatus.Int(), KErrNone);
847 TheTest.Printf(_L("%d \r"), failCount);
848 __FILE_FAILNEXT(KErrNoMemory, failCount++);
850 aClient.DeleteEvent(0, active->iStatus);
853 CActiveScheduler::Start();
855 if (active->iStatus == KErrNone)
858 error = active->iStatus.Int();
862 if (error == KErrNoMemory)
865 aClient.GetEvent(*event, active->iStatus);
866 CActiveScheduler::Start();
867 TEST2(active->iStatus.Int(), KErrNone);
870 TEST2(error, KErrNone);
874 aClient.GetEvent(*event, active->iStatus);
875 CActiveScheduler::Start();
876 TEST2(active->iStatus.Int(), KErrNotFound);
878 CleanupStack::PopAndDestroy(2); // event, active
879 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
883 @SYMTestCaseID SYSLIB-LOGENG-CT-0920
884 @SYMTestCaseDesc Getting the Log Engine configuration information test
885 Tests for CLogClient::GetConfig() function
886 @SYMTestPriority High
887 @SYMTestActions Check for file failure errors while getting the configuration data
888 Tests for ErrNone flag.Tests for the retrieved information
889 @SYMTestExpectedResults Test must not fail
892 LOCAL_C void TestGetConfigL(CLogClient& aClient)
894 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0920 "));
895 CTestActive* active = new(ELeave)CTestActive();
896 CleanupStack::PushL(active);
900 TEST(config.iMaxEventAge == 0);
901 TEST(config.iMaxLogSize == 0);
902 TEST(config.iMaxRecentLogSize == 0);
905 TBool finished = EFalse;
909 TheTest.Printf(_L("%d \r"), failCount);
910 __FILE_FAILNEXT(KErrNoMemory, failCount++);
911 aClient.GetConfig(config, active->iStatus);
914 CActiveScheduler::Start();
916 if (active->iStatus == KErrNone)
919 TEST2(active->iStatus.Int(), KErrNoMemory);
924 TEST(config.iMaxEventAge > 0);
925 TEST(config.iMaxLogSize > 0);
926 TEST(config.iMaxRecentLogSize > 0);
928 CleanupStack::PopAndDestroy(); // active
929 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
933 @SYMTestCaseID SYSLIB-LOGENG-CT-0921
934 @SYMTestCaseDesc Changing the configuration of Log Engine test,
935 Tests for CLogClient::ChangeConfig() function
936 @SYMTestPriority High
937 @SYMTestActions Check for file failure errors while changing the log engine configuration data
938 Tests for ErrNone error conditons.Tests for the changed configuration data
939 @SYMTestExpectedResults Test must not fail
942 LOCAL_C void TestChangeConfigL(CLogClient& aClient)
944 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0921 "));
945 CTestActive* active = new(ELeave)CTestActive();
946 CleanupStack::PushL(active);
948 TLogConfig configOld;
951 aClient.GetConfig(configOld, active->iStatus);
952 CActiveScheduler::Start();
953 TEST2(active->iStatus.Int(), KErrNone);
958 TBool finished = EFalse;
965 config.iMaxLogSize = KTestMaxLogSize;
966 config.iMaxRecentLogSize = KTestMaxRecentLogSize;
967 config.iMaxEventAge = KTestMaxEventAge;
971 aClient.ChangeConfig(config, active->iStatus);
973 CActiveScheduler::Start();
974 TEST2(active->iStatus.Int(), KErrNone);
979 TheTest.Printf(_L("%d \r"), failCount);
980 __FILE_FAILNEXT(KErrNoMemory, failCount++);
982 aClient.ChangeConfig(config, active->iStatus);
985 CActiveScheduler::Start();
987 if (active->iStatus == KErrNone)
990 error = active->iStatus.Int();
994 if (error == KErrNoMemory)
997 aClient.GetConfig(config, active->iStatus);
998 CActiveScheduler::Start();
999 TEST2(active->iStatus.Int(), KErrNone);
1001 TEST(config.iMaxLogSize == configOld.iMaxLogSize);
1002 TEST(config.iMaxRecentLogSize == configOld.iMaxRecentLogSize);
1003 TEST(config.iMaxEventAge == configOld.iMaxEventAge);
1006 TEST2(error, KErrNone);
1009 TEST(config.iMaxLogSize == KTestMaxLogSize);
1010 TEST(config.iMaxRecentLogSize == KTestMaxRecentLogSize);
1011 TEST(config.iMaxEventAge == KTestMaxEventAge);
1013 CleanupStack::PopAndDestroy(); // active
1014 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
1018 @SYMTestCaseID SYSLIB-LOGENG-CT-0922
1019 @SYMTestCaseDesc Getting a standard string from the specified resource file test
1020 Tests for CLogClient::GetString() function
1021 @SYMTestPriority High
1022 @SYMTestActions Check for file failure errors while changing the log engine configuration data
1023 Check for ErrNone flag.Tests for general errors,and retrieved string length.
1024 @SYMTestExpectedResults Test must not fail
1027 LOCAL_C void TestGetStringL(CLogClient& aClient)
1029 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0922 "));
1030 TBuf<KLogMaxSharedStringLength> str;
1033 TBool finished = EFalse;
1038 TheTest.Printf(_L("%d \r"), failCount);
1039 __FILE_FAILNEXT(KErrNoMemory, failCount++);
1041 error = aClient.GetString(str, R_LOG_DIR_IN);
1045 if (error == KErrNone)
1048 TEST(str.Length() > 0);
1052 TEST2(error, KErrNoMemory);
1053 TEST(str.Length() == 0);
1056 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
1060 @SYMTestCaseID SYSLIB-LOGENG-CT-0923
1061 @SYMTestCaseDesc Clearing the Log Event test.
1062 Tests for CLogClient::ClearLog() function
1063 @SYMTestPriority High
1064 @SYMTestActions Add 4 events to the event log,check for ErrNone flag
1065 Clear the log by calling CLogClient::ClearLog() function.
1066 Try for getting the added 4 events.Check for not found error.
1067 @SYMTestExpectedResults Test must not fail
1070 LOCAL_C void TestClearEventLogL(CLogClient& aClient
1071 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
1072 , TBool aUseSimId = EFalse
1076 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-0923 "));
1078 now.UniversalTime();
1080 TDateTime dt(now.DateTime());
1081 dt.SetYear(dt.Year() - 1);
1084 dt.SetYear(dt.Year() - 1);
1087 CTestActive* active = new(ELeave)CTestActive();
1088 CleanupStack::PushL(active);
1090 CLogEvent* event1 = CLogEvent::NewL();
1091 CleanupStack::PushL(event1);
1092 event1->SetEventType(KTestEventUid);
1095 aClient.AddEvent(*event1, active->iStatus);
1096 CActiveScheduler::Start();
1097 TEST2(active->iStatus.Int(), KErrNone);
1099 event1->SetTime(date1);
1102 aClient.ChangeEvent(*event1, active->iStatus);
1103 CActiveScheduler::Start();
1104 TEST2(active->iStatus.Int(), KErrNone);
1106 CLogEvent* event2 = CLogEvent::NewL();
1107 CleanupStack::PushL(event2);
1108 event2->SetEventType(KTestEventUid);
1111 aClient.AddEvent(*event2, active->iStatus);
1112 CActiveScheduler::Start();
1113 TEST2(active->iStatus.Int(), KErrNone);
1115 event2->SetTime(date1);
1118 aClient.ChangeEvent(*event2, active->iStatus);
1119 CActiveScheduler::Start();
1120 TEST2(active->iStatus.Int(), KErrNone);
1122 CLogEvent* event3 = CLogEvent::NewL();
1123 CleanupStack::PushL(event3);
1124 event3->SetEventType(KTestEventUid);
1127 aClient.AddEvent(*event3, active->iStatus);
1128 CActiveScheduler::Start();
1129 TEST2(active->iStatus.Int(), KErrNone);
1131 event3->SetTime(date2);
1134 aClient.ChangeEvent(*event3, active->iStatus);
1135 CActiveScheduler::Start();
1136 TEST2(active->iStatus.Int(), KErrNone);
1138 CLogEvent* event4 = CLogEvent::NewL();
1139 CleanupStack::PushL(event4);
1140 event4->SetEventType(KTestEventUid);
1143 aClient.AddEvent(*event4, active->iStatus);
1144 CActiveScheduler::Start();
1145 TEST2(active->iStatus.Int(), KErrNone);
1147 event4->SetTime(date2);
1150 aClient.ChangeEvent(*event4, active->iStatus);
1151 CActiveScheduler::Start();
1152 TEST2(active->iStatus.Int(), KErrNone);
1155 TBool finished = EFalse;
1159 TheTest.Printf(_L("%d \r"), failCount);
1160 __FILE_FAILNEXT(KErrNoMemory, failCount++);
1162 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
1165 aClient.ClearLog(date1, KLogNullSimId, active->iStatus);
1170 aClient.ClearLog(date1, active->iStatus);
1176 CActiveScheduler::Start();
1178 if (active->iStatus == KErrNone)
1181 TEST2(active->iStatus.Int(), KErrNoMemory);
1185 aClient.GetEvent(*event1, active->iStatus);
1186 CActiveScheduler::Start();
1187 if (active->iStatus != KErrNone)
1188 TheTest.Printf(_L("error code:%d\n"),active->iStatus.Int());
1189 TEST2(active->iStatus.Int(), KErrNone);
1192 aClient.GetEvent(*event2, active->iStatus);
1193 CActiveScheduler::Start();
1194 TEST2(active->iStatus.Int(), KErrNone);
1197 aClient.GetEvent(*event3, active->iStatus);
1198 CActiveScheduler::Start();
1199 TEST2(active->iStatus.Int(), KErrNotFound);
1202 aClient.GetEvent(*event4, active->iStatus);
1203 CActiveScheduler::Start();
1204 TEST2(active->iStatus.Int(), KErrNotFound);
1207 aClient.ClearLog(now, active->iStatus);
1208 CActiveScheduler::Start();
1209 TEST2(active->iStatus.Int(), KErrNone);
1212 aClient.GetEvent(*event1, active->iStatus);
1213 CActiveScheduler::Start();
1214 TEST2(active->iStatus.Int(), KErrNotFound);
1217 aClient.GetEvent(*event2, active->iStatus);
1218 CActiveScheduler::Start();
1219 TEST2(active->iStatus.Int(), KErrNotFound);
1221 CleanupStack::PopAndDestroy(5); // event4, event3, event2, event1, active
1222 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
1227 TestUtils::Initialize(_L("t_logfile"));
1229 TheTest.Start(_L("Construction + create db"));
1230 TestUtils::DeleteDatabaseL();
1231 TestConstructionL(); // Creates database
1232 TheTest.Next(_L("Construction + open db"));
1233 TestConstructionL(); // Opens existing database
1234 TestUtils::DeleteDatabaseL();
1235 theLog.Write(_L8("Test 1 OK\n"));
1237 CLogClient* client = CLogClient::NewL(theFs);
1238 CleanupStack::PushL(client);
1240 TheTest.Next(_L("Add Event Type"));
1241 TestAddEventTypeL(*client);
1242 theLog.Write(_L8("Test 2 OK\n"));
1244 TheTest.Next(_L("Get Event Type"));
1245 TestGetEventTypeL(*client);
1246 theLog.Write(_L8("Test 3 OK\n"));
1248 TheTest.Next(_L("Change Event Type"));
1249 TestChangeEventTypeL(*client);
1250 theLog.Write(_L8("Test 4 OK\n"));
1252 TheTest.Next(_L("Delete Event Type"));
1253 TestDeleteEventTypeL(*client);
1254 theLog.Write(_L8("Test 5 OK\n"));
1256 TestUtils::DeleteDatabaseL();
1258 TheTest.Next(_L("Add Event"));
1259 TestAddEventL(*client);
1260 theLog.Write(_L8("Test 6 OK\n"));
1262 TheTest.Next(_L("Get Event"));
1263 TestGetEventL(*client);
1264 theLog.Write(_L8("Test 7 OK\n"));
1266 TheTest.Next(_L("Change Event"));
1267 TestChangeEventL(*client);
1268 theLog.Write(_L8("Test 8 OK\n"));
1270 TheTest.Next(_L("Delete Event"));
1271 TestDeleteEventL(*client);
1272 theLog.Write(_L8("Test 9 OK\n"));
1274 TheTest.Next(_L("Get Config"));
1275 TestGetConfigL(*client);
1276 theLog.Write(_L8("Test 10 OK\n"));
1278 TheTest.Next(_L("Change Config"));
1279 TestChangeConfigL(*client);
1280 theLog.Write(_L8("Test 11 OK\n"));
1282 TheTest.Next(_L("Get String"));
1283 TestGetStringL(*client);
1284 theLog.Write(_L8("Test 12 OK\n"));
1286 TheTest.Next(_L("Clear Event Log"));
1287 TestClearEventLogL(*client);
1288 theLog.Write(_L8("Test 13 OK\n"));
1290 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
1291 TheTest.Next(_L("Clear Event Log + SimId"));
1292 TestClearEventLogL(*client, ETrue);
1293 theLog.Write(_L8("Test 14 OK\n"));
1296 CleanupStack::PopAndDestroy(); // client