os/persistentdata/loggingservices/eventlogger/test/src/t_logcntmatch.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_logcntmatch.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,332 @@
     1.4 +// Copyright (c) 2006-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 +//
    1.18 +#include "LOGREPDEFS.H"
    1.19 +#include "t_logutil2.h"
    1.20 +#include "t_logutil3.h"
    1.21 +#include "t_logcntmatchplugin.h"
    1.22 +
    1.23 +RTest TheTest(_L("t_logcntmatch"));
    1.24 +
    1.25 +#ifdef SYSLIBS_TEST
    1.26 +
    1.27 +TBool TheMatchingIsEnabled = EFalse;
    1.28 +//TheContactNameFmt variable must be initialized before tests. 
    1.29 +//It gives an information what is the contact name format in the logs.
    1.30 +TLogContactNameFormat TheContactNameFmt = KLogContactNameFormat;
    1.31 +
    1.32 +/////////////////////////////////////////////////////////////////////////////////////////////////////////////
    1.33 +/////////////////////////////////////////////////////////////////////////////////////////////////////////////
    1.34 +
    1.35 +//This function checks the logged name is the same as the event name.
    1.36 +//Contact name logging format is taken into account.
    1.37 +static void CheckContactName(CLogEvent& aEvent, const TDesC& aGivenName, const TDesC& aFamilyName)
    1.38 +	{
    1.39 +	TBuf<128> fullname;
    1.40 +	if(TheContactNameFmt == ELogWesternFormat)
    1.41 +		{
    1.42 +		fullname.Format(_L("%S %S"), &aGivenName, &aFamilyName);
    1.43 +		}
    1.44 +	else //ELogChineseFormat
    1.45 +		{
    1.46 +		fullname.Format(_L("%S %S"), &aFamilyName, &aGivenName);
    1.47 +		}
    1.48 +	TEST(aEvent.RemoteParty() == fullname);
    1.49 +	}
    1.50 +
    1.51 +/**
    1.52 +Check normal operation
    1.53 +
    1.54 +@SYMTestCaseID          SYSLIB-LOGENG-CT-1016
    1.55 +@SYMTestCaseDesc	    Tests for normal operations of CContactItem class
    1.56 +@SYMTestPriority 	    High
    1.57 +@SYMTestActions  	    The test adds 3 events and checks that the retrieved contact details are correct.
    1.58 +@SYMTestExpectedResults Test must not fail
    1.59 +@SYMREQ                 REQ0000
    1.60 +*/
    1.61 +static void TestContactMatch1L(CLogClient& aClient)
    1.62 +	{
    1.63 +	CTestActive* active = new(ELeave)CTestActive();
    1.64 +	CleanupStack::PushL(active);
    1.65 +
    1.66 +	CLogEvent* event = CLogEvent::NewL();
    1.67 +	CleanupStack::PushL(event);
    1.68 +	event->SetEventType(KLogCallEventTypeUid);
    1.69 +	event->SetNumber(KNumber1);
    1.70 +
    1.71 +	// Add event. Expected contact to be found: {KFirstName1, KLastName1}.
    1.72 +	active->StartL();
    1.73 +	aClient.AddEvent(*event, active->iStatus);
    1.74 +	CActiveScheduler::Start();
    1.75 +	TEST2(active->iStatus.Int(), KErrNone);
    1.76 +
    1.77 +	// Check result
    1.78 +	TLogContactItemId id1 = event->Contact(); 
    1.79 +	TEST(id1 != KLogNullContactId);
    1.80 +	::CheckContactName(*event, KFirstName1, KLastName1);
    1.81 +	TEST(event->Flags() & KLogEventContactSearched);
    1.82 +
    1.83 +	// Create new event
    1.84 +	CleanupStack::PopAndDestroy(event);
    1.85 +	event = CLogEvent::NewL();
    1.86 +	CleanupStack::PushL(event);
    1.87 +	event->SetEventType(KLogCallEventTypeUid);
    1.88 +	event->SetNumber(KNumber2);
    1.89 +
    1.90 +	// Add event. Expected contact to be found: {KFirstName2, KLastName2}.
    1.91 +	active->StartL();
    1.92 +	aClient.AddEvent(*event, active->iStatus);
    1.93 +	CActiveScheduler::Start();
    1.94 +	TEST2(active->iStatus.Int(), KErrNone);
    1.95 +
    1.96 +	// Check result
    1.97 +    TLogContactItemId id2 = event->Contact(); 
    1.98 +	TEST(id2 != KLogNullContactId && id2 != id1);
    1.99 +	::CheckContactName(*event, KFirstName2, KLastName2);
   1.100 +	TEST(event->Flags() & KLogEventContactSearched);
   1.101 +
   1.102 +	// Create new event
   1.103 +	CleanupStack::PopAndDestroy(event);
   1.104 +	event = CLogEvent::NewL();
   1.105 +	CleanupStack::PushL(event);
   1.106 +	event->SetEventType(KLogCallEventTypeUid);
   1.107 +	event->SetNumber(KNumber3);
   1.108 +
   1.109 +	// Add event. Expected contact to be found: {KFirstName3, KLastName3}.
   1.110 +	active->StartL();
   1.111 +	aClient.AddEvent(*event, active->iStatus);
   1.112 +	CActiveScheduler::Start();
   1.113 +	TEST2(active->iStatus.Int(), KErrNone);
   1.114 +
   1.115 +	// Check result
   1.116 +    TLogContactItemId id3 = event->Contact(); 
   1.117 +    TEST(id3 != KLogNullContactId && id3 != id2);
   1.118 +	::CheckContactName(*event, KFirstName3, KLastName3);
   1.119 +	TEST(event->Flags() & KLogEventContactSearched);
   1.120 +	
   1.121 +	CleanupStack::PopAndDestroy(2); // event, active
   1.122 +	}
   1.123 +
   1.124 +/**
   1.125 +Check special cases
   1.126 +
   1.127 +@SYMTestCaseID          SYSLIB-LOGENG-CT-1017
   1.128 +@SYMTestCaseDesc	    Tests for special cases on CContactItem class
   1.129 +@SYMTestPriority 	    High
   1.130 +@SYMTestActions  	    The test adds couple events and checks that the retrieved contact details are correct.
   1.131 +@SYMTestExpectedResults Test must not fail
   1.132 +@SYMREQ                 REQ0000
   1.133 +*/
   1.134 +static void TestContactMatch2L(CLogClient& aClient)
   1.135 +	{
   1.136 +	CTestActive* active = new(ELeave)CTestActive();
   1.137 +	CleanupStack::PushL(active);
   1.138 +
   1.139 +	CLogEvent* event = CLogEvent::NewL();
   1.140 +	CleanupStack::PushL(event);
   1.141 +	event->SetEventType(KLogCallEventTypeUid);
   1.142 +
   1.143 +	const TLogContactItemId KIdInvalid = 77711;
   1.144 +	event->SetNumber(KNumber3);
   1.145 +	event->SetContact(KIdInvalid);
   1.146 +
   1.147 +	// Add event. There is a contacts record with phone number KNumber3, but the contact id is not KIdInvalid. 
   1.148 +	active->StartL();
   1.149 +	aClient.AddEvent(*event, active->iStatus);
   1.150 +	CActiveScheduler::Start();
   1.151 +	TEST2(active->iStatus.Int(), KErrNone);
   1.152 +
   1.153 +	// Check result - details should be unchanged
   1.154 +    TLogContactItemId id1 = event->Contact(); 
   1.155 +	TEST(id1 == KIdInvalid);
   1.156 +	TEST(event->RemoteParty().Length() == 0);
   1.157 +	TEST(!(event->Flags() & KLogEventContactSearched));
   1.158 +
   1.159 +	// Set remote party. The contact id is still KIdInvalid.
   1.160 +	// The remote part of the contacts record with phone number KNumber3 is KFirstName3.
   1.161 +	event->SetRemoteParty(KFirstName5);
   1.162 +
   1.163 +	// Add event 
   1.164 +	active->StartL();
   1.165 +	aClient.AddEvent(*event, active->iStatus);
   1.166 +	CActiveScheduler::Start();
   1.167 +	TEST2(active->iStatus.Int(), KErrNone);
   1.168 +
   1.169 +	// Check result - details should be unchanged
   1.170 +    id1 = event->Contact(); 
   1.171 +	TEST(id1 == KIdInvalid);
   1.172 +	TEST(event->RemoteParty() == KFirstName5);
   1.173 +	TEST(!(event->Flags() & KLogEventContactSearched));
   1.174 +
   1.175 +	// Create new event. The contact id is not set.
   1.176 +    // The phone number is set to be the same as the phone number of the contacts record.
   1.177 +	// The remote party is set but is different in the contacts record.
   1.178 +	CleanupStack::PopAndDestroy(event);
   1.179 +	event = CLogEvent::NewL();
   1.180 +	CleanupStack::PushL(event);
   1.181 +	event->SetEventType(KLogCallEventTypeUid);
   1.182 +	event->SetNumber(KNumber3);
   1.183 +	event->SetRemoteParty(KFirstName5);
   1.184 +	
   1.185 +	// Add event
   1.186 +	active->StartL();
   1.187 +	aClient.AddEvent(*event, active->iStatus);
   1.188 +	CActiveScheduler::Start();
   1.189 +	TEST2(active->iStatus.Int(), KErrNone);
   1.190 +
   1.191 +	// Check result - Remote party should be unchanged. But the contact id should be set and valid.
   1.192 +    TLogContactItemId id2 = event->Contact(); 
   1.193 +	TEST(id2 != KLogNullContactId && id2 != id1);
   1.194 +	TEST(event->RemoteParty() == KFirstName5);
   1.195 +	TEST(event->Flags() & KLogEventContactSearched);
   1.196 +
   1.197 +	// Create new event
   1.198 +	CleanupStack::PopAndDestroy(event);
   1.199 +	event = CLogEvent::NewL();
   1.200 +	CleanupStack::PushL(event);
   1.201 +	event->SetEventType(KLogCallEventTypeUid);
   1.202 +	event->SetNumber(KNumber4);//There are 2 contacts records with phone number = KNumber4.
   1.203 +
   1.204 +	// Add event
   1.205 +	active->StartL();
   1.206 +	aClient.AddEvent(*event, active->iStatus);
   1.207 +	CActiveScheduler::Start();
   1.208 +	TEST2(active->iStatus.Int(), KErrNone);
   1.209 +
   1.210 +	// Check result - Details should not be set, because more than one contact found
   1.211 +	TEST(event->Contact() == KLogNullContactId);
   1.212 +	TEST(event->RemoteParty().Length() == 0);
   1.213 +	TEST(event->Flags() & KLogEventContactSearched);
   1.214 +
   1.215 +	// Create new event
   1.216 +	CleanupStack::PopAndDestroy(event);
   1.217 +	event = CLogEvent::NewL();
   1.218 +	CleanupStack::PushL(event);
   1.219 +	event->SetEventType(KLogCallEventTypeUid);
   1.220 +
   1.221 +	TInt count = KNumber6().Length();
   1.222 +	while(count--)
   1.223 +		{
   1.224 +		TPtrC num = KNumber6().Right(KNumber6().Length() - count);
   1.225 +		event->SetNumber(num);
   1.226 +
   1.227 +		// Add event
   1.228 +		active->StartL();
   1.229 +		aClient.AddEvent(*event, active->iStatus);
   1.230 +		CActiveScheduler::Start();
   1.231 +		TEST2(active->iStatus.Int(), KErrNone);
   1.232 +
   1.233 +	    TLogContactItemId id3 = event->Contact();
   1.234 +		
   1.235 +		// Shouldn't perform a contacts match if number isn't big enough
   1.236 +		if (num.Length() < 7)
   1.237 +			{
   1.238 +			// Check result - contact should not be set
   1.239 +			TEST(id3 == KLogNullContactId);
   1.240 +			TEST(event->RemoteParty().Length() == 0);
   1.241 +			}
   1.242 +		else
   1.243 +			{
   1.244 +			// Check result - Details should be set now
   1.245 +            TEST(id3 != KLogNullContactId);
   1.246 +			::CheckContactName(*event, KFirstName6, KLastName6);
   1.247 +			}
   1.248 +		TEST(event->Flags() & KLogEventContactSearched);
   1.249 +		}
   1.250 +		
   1.251 +	CleanupStack::PopAndDestroy(2); // event, active
   1.252 +	}
   1.253 +	
   1.254 +/**
   1.255 +@SYMTestCaseID          SYSLIB-LOGENG-CT-1392
   1.256 +@SYMTestCaseDesc	    Test for DEF068087 fix - "Chinese names don't display in Chinese name format."
   1.257 +@SYMTestPriority 	    Medium
   1.258 +@SYMTestActions  	    Checks that added {given_name,family_name} strings pair
   1.259 +                        is stored in the logs using the correct order (degtermined 
   1.260 +                        by r_log_contact_name_format resource value).
   1.261 +@SYMTestExpectedResults Test must not fail
   1.262 +@SYMREQ                 REQ0000
   1.263 +*/
   1.264 +void DEF068087L(CLogClient& aClient)
   1.265 +	{
   1.266 +	CTestActive* active = new (ELeave) CTestActive();
   1.267 +	CleanupStack::PushL(active);
   1.268 +	
   1.269 +	//Add "phone call" event using one of the existing contacts
   1.270 +	CLogEvent* event = CLogEvent::NewL();
   1.271 +	CleanupStack::PushL(event);
   1.272 +	event->SetEventType(KLogCallEventTypeUid);
   1.273 +	event->SetNumber(KNumber7);
   1.274 +	active->StartL();
   1.275 +	aClient.AddEvent(*event, active->iStatus);
   1.276 +	CActiveScheduler::Start();
   1.277 +	TEST2(active->iStatus.Int(), KErrNone);
   1.278 +	TInt eventId = event->Id();
   1.279 +	TEST(eventId != KLogNullId);
   1.280 +
   1.281 +	//Check result
   1.282 +	TEST(event->Contact() != KLogNullContactId);
   1.283 +	::CheckContactName(*event, KFirstName7, KLastName7);
   1.284 +	TEST(event->Flags() & KLogEventContactSearched);
   1.285 +	
   1.286 +	//Cleanup
   1.287 +	CleanupStack::PopAndDestroy(event);
   1.288 +	CleanupStack::PopAndDestroy(active);
   1.289 +	}
   1.290 +
   1.291 +void doTestsL()
   1.292 +	{
   1.293 +	TestUtils::Initialize(_L("t_logcntmatch"));
   1.294 +
   1.295 +	TheTest.Start(_L("Prepare the test environment"));
   1.296 +
   1.297 +	TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
   1.298 +
   1.299 +	if (!TheMatchingIsEnabled)
   1.300 +		{
   1.301 +		TheTest.Printf(_L("Contacts matching not enabled. Contacts matching tests NOT run\n"));
   1.302 +		return;
   1.303 +		}
   1.304 +
   1.305 +	TInt contactMatchCount = 0;
   1.306 +	LogGetContactmatchCountAndNameFormatL(contactMatchCount, TheContactNameFmt);
   1.307 +	TheTest.Printf(_L("Contact match count = %d, TheContactNameFmt = %d\r\n"), contactMatchCount, (TInt)TheContactNameFmt);
   1.308 +
   1.309 +	TestUtils::DeleteDatabaseL();
   1.310 +
   1.311 +	CLogClient* client = CLogClient::NewL(theFs);
   1.312 +	CleanupStack::PushL(client);
   1.313 +	
   1.314 +	//All tests bellow are likely to fail if:
   1.315 +	// 101f401d.txt file exists in CentralRepository private data cage and the contact mach count is set to 0 in that file.
   1.316 +    TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1392: DEF068087: Chinese names don't display in Chinese name format"));
   1.317 +	::DEF068087L(*client);
   1.318 +    TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1016: Contacts matching - test1"));
   1.319 +	TestContactMatch1L(*client);
   1.320 +    TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1017: Contacts matching - test2"));
   1.321 +	TestContactMatch2L(*client);
   1.322 +
   1.323 +	TestUtils::DeleteDatabaseL();
   1.324 +
   1.325 +	CleanupStack::PopAndDestroy(client);
   1.326 +	}
   1.327 +
   1.328 +#else //SYSLIBS_TEST
   1.329 +
   1.330 +void doTestsL()
   1.331 +	{
   1.332 +	TheTest.Start(_L("This test can be run only when built with SYSLIBS_TEST macro defined!"));
   1.333 +	}
   1.334 +
   1.335 +#endif //SYSLIBS_TEST