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.
18 #include "t_logutil2.h"
20 RTest TheTest(_L("t_logwrap"));
22 _LIT(KTestRemoteParty, "Remote Party");
23 _LIT(KTestDirection, "Direction");
24 const TLogDurationType KTestDurationType = 1;
25 const TLogDuration KTestDuration = 0x1234;
26 _LIT(KTestStatus, "Status");
27 _LIT(KTestSubject, "Subject");
28 _LIT(KTestNumber, "Number");
29 const TLogContactItemId KTestContact = 0x1234;
30 const TLogLink KTestLink = 0x1234;
31 _LIT8(KTestData, "ABCDEFGH");
34 @SYMTestCaseID SYSLIB-LOGENG-CT-1011
35 @SYMTestCaseDesc Tests for the functionality of CLogEvent class
37 @SYMTestActions Tests for adding,changing,deleting and getting event type functions on the logevent
38 Check for memory,KErrNone and KErrNotSupported error flags
39 @SYMTestExpectedResults Test must not fail
42 LOCAL_C void TestBasicL(CLogBase& aClient, TBool aClientAvailable)
44 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1011 "));
45 CTestActive* active = new(ELeave)CTestActive();
46 CleanupStack::PushL(active);
48 CLogEvent* event = CLogEvent::NewL();
49 CleanupStack::PushL(event);
54 event->SetEventType(KLogCallEventTypeUid);
57 aClient.AddEvent(*event, active->iStatus);
58 CActiveScheduler::Start();
61 TEST2(active->iStatus.Int(), KErrNone);
65 TEST2(active->iStatus.Int(), KErrNotSupported);
70 TEST(event->EventType() == KLogCallEventTypeUid);
71 TEST(event->Description().Length() > 0);
72 TEST(event->Time() >= now);
76 TLogId id = event->Id();
78 event->SetRemoteParty(KTestRemoteParty);
79 event->SetDirection(KTestDirection);
80 event->SetDurationType(KTestDurationType);
81 event->SetDuration(KTestDuration);
82 event->SetStatus(KTestStatus);
83 event->SetSubject(KTestSubject);
84 event->SetNumber(KTestNumber);
85 event->SetContact(KTestContact);
86 event->SetLink(KTestLink);
87 event->SetDataL(KTestData);
90 aClient.ChangeEvent(*event, active->iStatus);
91 CActiveScheduler::Start();
94 TEST2(active->iStatus.Int(), KErrNone);
98 TEST2(active->iStatus.Int(), KErrNotSupported);
101 if (aClientAvailable)
103 TEST(event->Id() == id);
104 TEST(event->EventType() == KLogCallEventTypeUid);
105 TEST(event->Description().Length() > 0);
106 TEST(event->Time() == now);
107 TEST(event->RemoteParty() == KTestRemoteParty);
108 TEST(event->Direction() == KTestDirection);
109 TEST(event->DurationType() == KTestDurationType);
110 TEST(event->Duration() == KTestDuration);
111 TEST(event->Status() == KTestStatus);
112 TEST(event->Subject() == KTestSubject);
113 TEST(event->Number() == KTestNumber);
114 TEST(event->Contact() == KTestContact);
115 TEST(event->Link() == KTestLink);
116 TEST(event->Data() == KTestData);
119 CleanupStack::PopAndDestroy(); // event;
121 event = CLogEvent::NewL();
122 CleanupStack::PushL(event);
127 aClient.GetEvent(*event, active->iStatus);
128 CActiveScheduler::Start();
131 TEST2(active->iStatus.Int(), KErrNone);
135 TEST2(active->iStatus.Int(), KErrNotSupported);
138 if (aClientAvailable)
140 TEST(event->Id() == id);
141 TEST(event->EventType() == KLogCallEventTypeUid);
142 TEST(event->Description().Length() > 0);
143 TEST(event->Time() == now);
144 TEST(event->RemoteParty() == KTestRemoteParty);
145 TEST(event->Direction() == KTestDirection);
146 TEST(event->DurationType() == KTestDurationType);
147 TEST(event->Duration() == KTestDuration);
148 TEST(event->Status() == KTestStatus);
149 TEST(event->Subject() == KTestSubject);
150 TEST(event->Number() == KTestNumber);
151 TEST(event->Contact() == KTestContact);
152 TEST(event->Link() == KTestLink);
153 TEST(event->Data() == KTestData);
157 aClient.DeleteEvent(id, active->iStatus);
158 CActiveScheduler::Start();
161 TEST2(active->iStatus.Int(), KErrNone);
165 TEST2(active->iStatus.Int(), KErrNotSupported);
169 aClient.GetEvent(*event, active->iStatus);
170 CActiveScheduler::Start();
173 TEST2(active->iStatus.Int(), KErrNotFound);
177 TEST2(active->iStatus.Int(), KErrNotSupported);
180 CleanupStack::PopAndDestroy(2); // event, active
184 @SYMTestCaseID SYSLIB-LOGENG-CT-1012
185 @SYMTestCaseDesc Test for CLogWrapper::Log(),CLogWrapper::ClientAvailable() functions
186 @SYMTestPriority High
187 @SYMTestActions Execute basics event test on a log wrapper
188 @SYMTestExpectedResults Test must not fail
191 LOCAL_C void TestWrapperL()
193 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1012 "));
194 CTestActive* active = new(ELeave)CTestActive();
195 CleanupStack::PushL(active);
197 CLogWrapper* wrapper = CLogWrapper::NewL(theFs);
198 CleanupStack::PushL(wrapper);
200 CLogBase& logBase = wrapper->Log();
201 TestBasicL(logBase, wrapper->ClientAvailable());
203 TBuf<KLogMaxSharedStringLength> buf;
204 if (wrapper->ClientAvailable())
206 CLogBase& logBase2 = wrapper->Log();
207 TEST2(logBase2.GetString(buf, R_LOG_DIR_IN), KErrNone);
208 TEST(buf.Length() > 0);
212 CLogBase& logBase3 = wrapper->Log();
213 TEST2(logBase3.GetString(buf, R_LOG_DIR_IN), KErrNotSupported);
214 TEST(buf.Length() == 0);
217 CleanupStack::PopAndDestroy(2); // wrapper, active
221 @SYMTestCaseID SYSLIB-LOGENG-CT-1013
222 @SYMTestCaseDesc Tests for out of memory errors on CLogWrapper::NewL() function call
223 @SYMTestPriority High
224 @SYMTestActions Check for no memory error condition
225 @SYMTestExpectedResults Test must not fail
228 LOCAL_C void TestHeapFailL()
230 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1013 "));
231 CLogWrapper* wrapper = NULL;
237 TBool finished = EFalse;
242 __UHEAP_FAILNEXT(failCount++);
244 TRAP(error, wrapper = CLogWrapper::NewL(theFs));
248 if (error == KErrNone)
251 CLogBase& logBase = wrapper->Log();
252 TestBasicL(logBase, wrapper->ClientAvailable());
256 TEST2(error, KErrNoMemory);
261 @SYMTestCaseID SYSLIB-LOGENG-CT-1014
262 @SYMTestCaseDesc Tests for CLogWrapper::NewL() function
263 @SYMTestPriority High
264 @SYMTestActions Create log wrapper on heap,if no error execute the basic event tests.
265 Check for general errors.
266 @SYMTestExpectedResults Test must not fail
269 LOCAL_C void TestFileFailL()
271 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1014 "));
272 CLogWrapper* wrapper = NULL;
275 TBool finished = EFalse;
280 TheTest.Printf(_L("%d \r"), failCount);
281 __FILE_FAILNEXT(KErrNoMemory, failCount++);
283 TRAP(error, wrapper = CLogWrapper::NewL(theFs));
287 if (error == KErrNone)
290 CLogBase& logBase = wrapper->Log();
291 TestBasicL(logBase, wrapper->ClientAvailable());
296 TEST2(error, KErrNoMemory);
299 TheTest.Printf(_L("\r\nThe test has succeeded at iteration %d\n"), failCount);
303 @SYMTestCaseID SYSLIB-LOGENG-CT-1015
304 @SYMTestCaseDesc Tests for INC047632
305 @SYMTestPriority High
306 @SYMTestActions This test uses a stored copy of a corrupt database which is copied to z:\system\data.
307 When this database ia accessed open returns an error KErrEof.
308 @SYMTestExpectedResults Test must not fail
311 LOCAL_C void Test4INC047632L()
313 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1015 "));
315 TestUtils::CopyCorruptDbL();
318 CLogWrapper* wrapper = NULL;
320 TInt error = KErrNone;
321 TRAP(error, wrapper = CLogWrapper::NewL(theFs));
323 if (error == KErrNone)
325 CLogBase& logBase = wrapper->Log();
326 TestBasicL(logBase, wrapper->ClientAvailable());
330 RDebug::Print(_L("Test4INC047632L() can be executed only in debug mode. In release mode the LogEng server cannot be stopped.\n"));
334 @SYMTestCaseID SYSLIB-LOGENG-CT-4001
335 @SYMTestCaseDesc Tests for INC114909
336 @SYMTestPriority High
337 @SYMTestActions This test uses a stored copy of a corrupt damaged database which is
338 copied to z:\system\data.
339 When an attempt is made to open the database the fault should be
340 recognised and the database deleted.
341 @SYMTestExpectedResults Test must not fail
344 LOCAL_C void Test5INC114909L()
346 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-4001 "));
348 // Copy over the damaged database to be used.
349 TestUtils::CopyCorruptDamagedDbL();
352 CLogWrapper* wrapper = NULL;
353 TInt error = KErrNone;
354 TRAP(error, wrapper = CLogWrapper::NewL(theFs));
357 // Without the code for this defect the error here will be KErrCorrupt.
358 // and the log server will continually try to restart and be brought down
360 // With the fix the error with the database is detected on opening the database
361 // and the database file is deleted and re-created.
363 TEST(error == KErrNone);
365 // Perform an extra check that the log server has not been brought down
366 // as is the case without the defect fix.
367 RLogTestSession theLogServ;
368 error = theLogServ.Connect();
369 TEST(error == KErrNone);
371 RDebug::Print(_L("Test4INC047632L() can be executed only in debug mode. In release mode the LogEng server cannot be stopped.\n"));
377 TestUtils::Initialize(_L("t_logwrap"));
379 TheTest.Start(_L("Wrapper"));
381 theLog.Write(_L8("Test 1 OK\n"));
383 TheTest.Next(_L("Heap Failure"));
385 theLog.Write(_L8("Test 2 OK\n"));
387 TheTest.Next(_L("File Failure"));
389 theLog.Write(_L8("Test 3 OK\n"));
391 TheTest.Next(_L("Test4 for INC047632 - corrupt Logdbu.dat returns KErrEoF"));
393 theLog.Write(_L8("Test 4 for INC047632 OK\n"));
395 TheTest.Next(_L("Test5 for INC114909 - test damaged Logdbu.dat is dealt with correctly "));
397 theLog.Write(_L8("Test 5 for INC114909 OK\n"));