os/persistentdata/loggingservices/eventlogger/test/src/t_logorderbyid.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_logorderbyid.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,221 @@
     1.4 +// Copyright (c) 2004-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 +// test code for INC045441 - Log Engine does not return events in sequence order
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <s32file.h>
    1.22 +#include <e32math.h>
    1.23 +#include <logview.h>
    1.24 +#include "t_logutil2.h"
    1.25 +
    1.26 +RTest TheTest(_L("t_logorderbyid"));
    1.27 +
    1.28 +_LIT( KTestNumber1, "11111" );
    1.29 +_LIT( KTestNumber2, "22222" );
    1.30 +_LIT( KTestNumber3, "33333" );
    1.31 +
    1.32 +/**
    1.33 +Add an event to the log engine database.
    1.34 +The event ID assigned by logengine is store in gTheId 
    1.35 +
    1.36 +@param  aClient 
    1.37 +@param  aNumber The number that the event should contain
    1.38 +@return The index for the event added.
    1.39 +  
    1.40 +*/
    1.41 +LOCAL_C TInt AddEventL( CLogClient& aClient, CLogEvent& aEvent, CTestActive& aActive, TInt aIndex )
    1.42 +	{
    1.43 +	TInt returnId = KLogNullId;
    1.44 +
    1.45 +	// Reset
    1.46 +	TTime now;
    1.47 +	now.UniversalTime();
    1.48 +
    1.49 +	aEvent.SetContact( aIndex );
    1.50 +
    1.51 +	// load the event with test values
    1.52 +	switch (aIndex)
    1.53 +		{
    1.54 +	case 1:
    1.55 +		aEvent.SetNumber( KTestNumber1 );
    1.56 +		break;
    1.57 +	case 2:
    1.58 +		aEvent.SetNumber( KTestNumber2 );
    1.59 +		break;
    1.60 +	case 3:
    1.61 +		aEvent.SetNumber( KTestNumber3 );
    1.62 +		break;
    1.63 +		}
    1.64 +
    1.65 +	// add the event to the logeng database
    1.66 +	aActive.StartL();
    1.67 +	aClient.AddEvent( aEvent, aActive.iStatus );
    1.68 +	CActiveScheduler::Start();
    1.69 +	TEST2(aActive.iStatus.Int(), KErrNone);
    1.70 +
    1.71 +	// check that an ID has been assigned
    1.72 +	returnId = aEvent.Id();
    1.73 +	TEST( returnId != KLogNullId );
    1.74 +	TEST( aEvent.Time() >= now );
    1.75 +	
    1.76 +	// return the event id which has been assigned by the 
    1.77 +	// log engine
    1.78 +	return returnId;
    1.79 +	}
    1.80 +
    1.81 +
    1.82 +/**
    1.83 +Get the event from the log engine database.
    1.84 + 
    1.85 +@param aClient 
    1.86 +@param aTheId Unique id for the event to be fetch
    1.87 +@param aNumber The number that the event should contain
    1.88 +*/
    1.89 +LOCAL_C void TestGetEventL( CLogClient& aClient, TInt aTheId, TInt aIndex )
    1.90 +
    1.91 +	{
    1.92 +	CTestActive* active = new( ELeave )CTestActive();
    1.93 +	CleanupStack::PushL( active );
    1.94 +
    1.95 +	CLogEvent* event = CLogEvent::NewL();
    1.96 +	CleanupStack::PushL( event );
    1.97 +
    1.98 +	event->SetId( aTheId );
    1.99 +
   1.100 +	active->StartL();
   1.101 +	aClient.GetEvent( *event, active->iStatus );
   1.102 +	CActiveScheduler::Start();
   1.103 +	TEST2(active->iStatus.Int(), KErrNone);
   1.104 +
   1.105 +	// check we got the right one back
   1.106 +	TEST( event->Contact() == aIndex );
   1.107 +
   1.108 +	TPtrC eventNumber = event->Number();
   1.109 +
   1.110 +	TBuf<30> dateString;
   1.111 +	_LIT( KDateString5, "%-B%:0%J%:1%T%:2%S%:3%+B" );
   1.112 +	event->Time().FormatL( dateString, KDateString5 );
   1.113 +	TPtrC eventDate = dateString.Ptr();
   1.114 +	TheTest.Printf( _L( "Id:%d No:%S Time:%S \n" ), event->Id(), &eventNumber, &eventDate );
   1.115 +	
   1.116 +	CleanupStack::PopAndDestroy( 2 ); // event, active
   1.117 +	}
   1.118 +
   1.119 +/**
   1.120 +Test code for INC045441 - Log Engine does not return events in sequence order
   1.121 +
   1.122 +@SYMTestCaseID          SYSLIB-LOGENG-CT-1020
   1.123 +@SYMTestCaseDesc	    Tests for checking the sequence order on events returned by log engine
   1.124 +@SYMTestPriority 	    High
   1.125 +@SYMTestActions  	    Test for getting the event in order as they were added to the log
   1.126 +                        Check for memory and no error
   1.127 +@SYMTestExpectedResults Test must not fail
   1.128 +@SYMREQ                 REQ0000
   1.129 +*/	
   1.130 +LOCAL_C void TestRecentViewOrderingL( CLogClient& aClient )
   1.131 +//
   1.132 +//
   1.133 +//
   1.134 +	{
   1.135 +	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1020 "));
   1.136 +	CLogEvent* event = CLogEvent::NewL();
   1.137 +	CleanupStack::PushL(event);
   1.138 +
   1.139 +	CTestActive* active = new( ELeave )CTestActive();
   1.140 +	CleanupStack::PushL( active );
   1.141 +
   1.142 +	CLogViewRecent* view = CLogViewRecent::NewL( aClient );
   1.143 +	CleanupStack::PushL( view );
   1.144 +
   1.145 +	TBuf<KLogMaxDirectionLength> buf;
   1.146 +	aClient.GetString(buf, R_LOG_DIR_MISSED);
   1.147 +
   1.148 +	event->SetEventType( KLogCallEventTypeUid );
   1.149 +	event->SetDirection( buf );
   1.150 +
   1.151 +	TEST( !view->SetRecentListL( KLogRecentMissedCalls, active->iStatus ) );
   1.152 +	TEST( view->CountL() == 0 );
   1.153 +
   1.154 +	TTime time;
   1.155 +	TheTest.Next( _L( "add new event 1" ) );
   1.156 +	TInt eventId1 = AddEventL( aClient, *event, *active, 1 );
   1.157 +	TestGetEventL( aClient, eventId1, 1 );
   1.158 +
   1.159 +	TheTest.Next( _L( "time plus 10 mins - add new event 2" ) );
   1.160 +	time.HomeTime();
   1.161 +	TTimeIntervalMinutes timeTravelForward( 10 );
   1.162 +	time += timeTravelForward;
   1.163 +	User::SetHomeTime( time );
   1.164 +	TInt eventId2 = AddEventL( aClient, *event, *active, 2 );
   1.165 +	TestGetEventL( aClient, eventId2, 2 );
   1.166 +
   1.167 +	TheTest.Next( _L( "time minus 5 mins - add new event 3" ) );
   1.168 +	time.HomeTime();
   1.169 +	TTimeIntervalMinutes timeTravelBackward( 5 );
   1.170 +	time -= timeTravelBackward;
   1.171 +	User::SetHomeTime( time );
   1.172 +	TInt eventId3 = AddEventL( aClient, *event, *active, 3 );
   1.173 +	TestGetEventL( aClient, eventId3, 3 );
   1.174 +
   1.175 +	TEST( view->CountL() == 3 );
   1.176 +
   1.177 +	active->StartL();
   1.178 +	// Get most recent
   1.179 +	TEST( view->FirstL( active->iStatus ) );
   1.180 +	CActiveScheduler::Start();
   1.181 +	TEST2(active->iStatus.Int(), KErrNone);
   1.182 +
   1.183 +	TInt id3 = view->Event().Id();
   1.184 +	// Get the one before that
   1.185 +	active->StartL();
   1.186 +	TEST( view->NextL( active->iStatus ) );
   1.187 +	CActiveScheduler::Start();
   1.188 +	TEST2(active->iStatus.Int(), KErrNone);
   1.189 +	TInt id2 = view->Event().Id();
   1.190 +
   1.191 +	// Get the one before that
   1.192 +	active->StartL();
   1.193 +	TEST( view->NextL( active->iStatus ) );
   1.194 +	CActiveScheduler::Start();
   1.195 +	TEST2(active->iStatus.Int(), KErrNone);
   1.196 +	TInt id1 = view->Event().Id();
   1.197 +
   1.198 +	TEST( id1 == eventId1 );
   1.199 +	TEST( id2 == eventId2 );
   1.200 +	TEST( id3 == eventId3 );
   1.201 +
   1.202 +	CleanupStack::PopAndDestroy( 3 ); // view, active, event
   1.203 +	theLog.Write( _L8( "Test 1.1 OK\n" ) );
   1.204 +	}
   1.205 +
   1.206 +	
   1.207 +	
   1.208 +void doTestsL()
   1.209 +	{
   1.210 +	TestUtils::Initialize(_L("t_logorderbyid"));
   1.211 +	TestUtils::DeleteDatabaseL();
   1.212 +
   1.213 +	CLogClient* client = CLogClient::NewL( theFs );
   1.214 +	CleanupStack::PushL( client );
   1.215 +
   1.216 +	CLogChangeNotifier* notifier = CLogChangeNotifier::NewL();
   1.217 +	CleanupStack::PushL( notifier );
   1.218 +
   1.219 +	TheTest.Start( _L( "Recent view sorts by Id not ETime" ) );
   1.220 +	TestRecentViewOrderingL( *client );
   1.221 +	theLog.Write( _L8( "Test 1 OK\n" ) );
   1.222 +
   1.223 +	CleanupStack::PopAndDestroy( 2 ); // notifier, client;
   1.224 +	}