Update contrib.
1 // Copyright (c) 2004-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.
14 // test code for INC045441 - Log Engine does not return events in sequence order
21 #include "t_logutil2.h"
23 RTest TheTest(_L("t_logorderbyid"));
25 _LIT( KTestNumber1, "11111" );
26 _LIT( KTestNumber2, "22222" );
27 _LIT( KTestNumber3, "33333" );
30 Add an event to the log engine database.
31 The event ID assigned by logengine is store in gTheId
34 @param aNumber The number that the event should contain
35 @return The index for the event added.
38 LOCAL_C TInt AddEventL( CLogClient& aClient, CLogEvent& aEvent, CTestActive& aActive, TInt aIndex )
40 TInt returnId = KLogNullId;
46 aEvent.SetContact( aIndex );
48 // load the event with test values
52 aEvent.SetNumber( KTestNumber1 );
55 aEvent.SetNumber( KTestNumber2 );
58 aEvent.SetNumber( KTestNumber3 );
62 // add the event to the logeng database
64 aClient.AddEvent( aEvent, aActive.iStatus );
65 CActiveScheduler::Start();
66 TEST2(aActive.iStatus.Int(), KErrNone);
68 // check that an ID has been assigned
69 returnId = aEvent.Id();
70 TEST( returnId != KLogNullId );
71 TEST( aEvent.Time() >= now );
73 // return the event id which has been assigned by the
80 Get the event from the log engine database.
83 @param aTheId Unique id for the event to be fetch
84 @param aNumber The number that the event should contain
86 LOCAL_C void TestGetEventL( CLogClient& aClient, TInt aTheId, TInt aIndex )
89 CTestActive* active = new( ELeave )CTestActive();
90 CleanupStack::PushL( active );
92 CLogEvent* event = CLogEvent::NewL();
93 CleanupStack::PushL( event );
95 event->SetId( aTheId );
98 aClient.GetEvent( *event, active->iStatus );
99 CActiveScheduler::Start();
100 TEST2(active->iStatus.Int(), KErrNone);
102 // check we got the right one back
103 TEST( event->Contact() == aIndex );
105 TPtrC eventNumber = event->Number();
108 _LIT( KDateString5, "%-B%:0%J%:1%T%:2%S%:3%+B" );
109 event->Time().FormatL( dateString, KDateString5 );
110 TPtrC eventDate = dateString.Ptr();
111 TheTest.Printf( _L( "Id:%d No:%S Time:%S \n" ), event->Id(), &eventNumber, &eventDate );
113 CleanupStack::PopAndDestroy( 2 ); // event, active
117 Test code for INC045441 - Log Engine does not return events in sequence order
119 @SYMTestCaseID SYSLIB-LOGENG-CT-1020
120 @SYMTestCaseDesc Tests for checking the sequence order on events returned by log engine
121 @SYMTestPriority High
122 @SYMTestActions Test for getting the event in order as they were added to the log
123 Check for memory and no error
124 @SYMTestExpectedResults Test must not fail
127 LOCAL_C void TestRecentViewOrderingL( CLogClient& aClient )
132 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1020 "));
133 CLogEvent* event = CLogEvent::NewL();
134 CleanupStack::PushL(event);
136 CTestActive* active = new( ELeave )CTestActive();
137 CleanupStack::PushL( active );
139 CLogViewRecent* view = CLogViewRecent::NewL( aClient );
140 CleanupStack::PushL( view );
142 TBuf<KLogMaxDirectionLength> buf;
143 aClient.GetString(buf, R_LOG_DIR_MISSED);
145 event->SetEventType( KLogCallEventTypeUid );
146 event->SetDirection( buf );
148 TEST( !view->SetRecentListL( KLogRecentMissedCalls, active->iStatus ) );
149 TEST( view->CountL() == 0 );
152 TheTest.Next( _L( "add new event 1" ) );
153 TInt eventId1 = AddEventL( aClient, *event, *active, 1 );
154 TestGetEventL( aClient, eventId1, 1 );
156 TheTest.Next( _L( "time plus 10 mins - add new event 2" ) );
158 TTimeIntervalMinutes timeTravelForward( 10 );
159 time += timeTravelForward;
160 User::SetHomeTime( time );
161 TInt eventId2 = AddEventL( aClient, *event, *active, 2 );
162 TestGetEventL( aClient, eventId2, 2 );
164 TheTest.Next( _L( "time minus 5 mins - add new event 3" ) );
166 TTimeIntervalMinutes timeTravelBackward( 5 );
167 time -= timeTravelBackward;
168 User::SetHomeTime( time );
169 TInt eventId3 = AddEventL( aClient, *event, *active, 3 );
170 TestGetEventL( aClient, eventId3, 3 );
172 TEST( view->CountL() == 3 );
176 TEST( view->FirstL( active->iStatus ) );
177 CActiveScheduler::Start();
178 TEST2(active->iStatus.Int(), KErrNone);
180 TInt id3 = view->Event().Id();
181 // Get the one before that
183 TEST( view->NextL( active->iStatus ) );
184 CActiveScheduler::Start();
185 TEST2(active->iStatus.Int(), KErrNone);
186 TInt id2 = view->Event().Id();
188 // Get the one before that
190 TEST( view->NextL( active->iStatus ) );
191 CActiveScheduler::Start();
192 TEST2(active->iStatus.Int(), KErrNone);
193 TInt id1 = view->Event().Id();
195 TEST( id1 == eventId1 );
196 TEST( id2 == eventId2 );
197 TEST( id3 == eventId3 );
199 CleanupStack::PopAndDestroy( 3 ); // view, active, event
200 theLog.Write( _L8( "Test 1.1 OK\n" ) );
207 TestUtils::Initialize(_L("t_logorderbyid"));
208 TestUtils::DeleteDatabaseL();
210 CLogClient* client = CLogClient::NewL( theFs );
211 CleanupStack::PushL( client );
213 CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
214 CleanupStack::PushL( notifier );
216 TheTest.Start( _L( "Recent view sorts by Id not ETime" ) );
217 TestRecentViewOrderingL( *client );
218 theLog.Write( _L8( "Test 1 OK\n" ) );
220 CleanupStack::PopAndDestroy( 2 ); // notifier, client;