sl@0: // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: #include "LOGREPDEFS.H" sl@0: #include "t_logutil2.h" sl@0: #include "t_logutil3.h" sl@0: #include "t_logcntmatchplugin.h" sl@0: sl@0: RTest TheTest(_L("t_logcntmatch")); sl@0: sl@0: #ifdef SYSLIBS_TEST sl@0: sl@0: TBool TheMatchingIsEnabled = EFalse; sl@0: //TheContactNameFmt variable must be initialized before tests. sl@0: //It gives an information what is the contact name format in the logs. sl@0: TLogContactNameFormat TheContactNameFmt = KLogContactNameFormat; sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: //This function checks the logged name is the same as the event name. sl@0: //Contact name logging format is taken into account. sl@0: static void CheckContactName(CLogEvent& aEvent, const TDesC& aGivenName, const TDesC& aFamilyName) sl@0: { sl@0: TBuf<128> fullname; sl@0: if(TheContactNameFmt == ELogWesternFormat) sl@0: { sl@0: fullname.Format(_L("%S %S"), &aGivenName, &aFamilyName); sl@0: } sl@0: else //ELogChineseFormat sl@0: { sl@0: fullname.Format(_L("%S %S"), &aFamilyName, &aGivenName); sl@0: } sl@0: TEST(aEvent.RemoteParty() == fullname); sl@0: } sl@0: sl@0: /** sl@0: Check normal operation sl@0: sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1016 sl@0: @SYMTestCaseDesc Tests for normal operations of CContactItem class sl@0: @SYMTestPriority High sl@0: @SYMTestActions The test adds 3 events and checks that the retrieved contact details are correct. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: static void TestContactMatch1L(CLogClient& aClient) sl@0: { sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: event->SetNumber(KNumber1); sl@0: sl@0: // Add event. Expected contact to be found: {KFirstName1, KLastName1}. sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result sl@0: TLogContactItemId id1 = event->Contact(); sl@0: TEST(id1 != KLogNullContactId); sl@0: ::CheckContactName(*event, KFirstName1, KLastName1); sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: sl@0: // Create new event sl@0: CleanupStack::PopAndDestroy(event); sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: event->SetNumber(KNumber2); sl@0: sl@0: // Add event. Expected contact to be found: {KFirstName2, KLastName2}. sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result sl@0: TLogContactItemId id2 = event->Contact(); sl@0: TEST(id2 != KLogNullContactId && id2 != id1); sl@0: ::CheckContactName(*event, KFirstName2, KLastName2); sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: sl@0: // Create new event sl@0: CleanupStack::PopAndDestroy(event); sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: event->SetNumber(KNumber3); sl@0: sl@0: // Add event. Expected contact to be found: {KFirstName3, KLastName3}. sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result sl@0: TLogContactItemId id3 = event->Contact(); sl@0: TEST(id3 != KLogNullContactId && id3 != id2); sl@0: ::CheckContactName(*event, KFirstName3, KLastName3); sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // event, active sl@0: } sl@0: sl@0: /** sl@0: Check special cases sl@0: sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1017 sl@0: @SYMTestCaseDesc Tests for special cases on CContactItem class sl@0: @SYMTestPriority High sl@0: @SYMTestActions The test adds couple events and checks that the retrieved contact details are correct. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: static void TestContactMatch2L(CLogClient& aClient) sl@0: { sl@0: CTestActive* active = new(ELeave)CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: const TLogContactItemId KIdInvalid = 77711; sl@0: event->SetNumber(KNumber3); sl@0: event->SetContact(KIdInvalid); sl@0: sl@0: // Add event. There is a contacts record with phone number KNumber3, but the contact id is not KIdInvalid. sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result - details should be unchanged sl@0: TLogContactItemId id1 = event->Contact(); sl@0: TEST(id1 == KIdInvalid); sl@0: TEST(event->RemoteParty().Length() == 0); sl@0: TEST(!(event->Flags() & KLogEventContactSearched)); sl@0: sl@0: // Set remote party. The contact id is still KIdInvalid. sl@0: // The remote part of the contacts record with phone number KNumber3 is KFirstName3. sl@0: event->SetRemoteParty(KFirstName5); sl@0: sl@0: // Add event sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result - details should be unchanged sl@0: id1 = event->Contact(); sl@0: TEST(id1 == KIdInvalid); sl@0: TEST(event->RemoteParty() == KFirstName5); sl@0: TEST(!(event->Flags() & KLogEventContactSearched)); sl@0: sl@0: // Create new event. The contact id is not set. sl@0: // The phone number is set to be the same as the phone number of the contacts record. sl@0: // The remote party is set but is different in the contacts record. sl@0: CleanupStack::PopAndDestroy(event); sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: event->SetNumber(KNumber3); sl@0: event->SetRemoteParty(KFirstName5); sl@0: sl@0: // Add event sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result - Remote party should be unchanged. But the contact id should be set and valid. sl@0: TLogContactItemId id2 = event->Contact(); sl@0: TEST(id2 != KLogNullContactId && id2 != id1); sl@0: TEST(event->RemoteParty() == KFirstName5); sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: sl@0: // Create new event sl@0: CleanupStack::PopAndDestroy(event); sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: event->SetNumber(KNumber4);//There are 2 contacts records with phone number = KNumber4. sl@0: sl@0: // Add event sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: // Check result - Details should not be set, because more than one contact found sl@0: TEST(event->Contact() == KLogNullContactId); sl@0: TEST(event->RemoteParty().Length() == 0); sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: sl@0: // Create new event sl@0: CleanupStack::PopAndDestroy(event); sl@0: event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: sl@0: TInt count = KNumber6().Length(); sl@0: while(count--) sl@0: { sl@0: TPtrC num = KNumber6().Right(KNumber6().Length() - count); sl@0: event->SetNumber(num); sl@0: sl@0: // Add event sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: sl@0: TLogContactItemId id3 = event->Contact(); sl@0: sl@0: // Shouldn't perform a contacts match if number isn't big enough sl@0: if (num.Length() < 7) sl@0: { sl@0: // Check result - contact should not be set sl@0: TEST(id3 == KLogNullContactId); sl@0: TEST(event->RemoteParty().Length() == 0); sl@0: } sl@0: else sl@0: { sl@0: // Check result - Details should be set now sl@0: TEST(id3 != KLogNullContactId); sl@0: ::CheckContactName(*event, KFirstName6, KLastName6); sl@0: } sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(2); // event, active sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-LOGENG-CT-1392 sl@0: @SYMTestCaseDesc Test for DEF068087 fix - "Chinese names don't display in Chinese name format." sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Checks that added {given_name,family_name} strings pair sl@0: is stored in the logs using the correct order (degtermined sl@0: by r_log_contact_name_format resource value). sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void DEF068087L(CLogClient& aClient) sl@0: { sl@0: CTestActive* active = new (ELeave) CTestActive(); sl@0: CleanupStack::PushL(active); sl@0: sl@0: //Add "phone call" event using one of the existing contacts sl@0: CLogEvent* event = CLogEvent::NewL(); sl@0: CleanupStack::PushL(event); sl@0: event->SetEventType(KLogCallEventTypeUid); sl@0: event->SetNumber(KNumber7); sl@0: active->StartL(); sl@0: aClient.AddEvent(*event, active->iStatus); sl@0: CActiveScheduler::Start(); sl@0: TEST2(active->iStatus.Int(), KErrNone); sl@0: TInt eventId = event->Id(); sl@0: TEST(eventId != KLogNullId); sl@0: sl@0: //Check result sl@0: TEST(event->Contact() != KLogNullContactId); sl@0: ::CheckContactName(*event, KFirstName7, KLastName7); sl@0: TEST(event->Flags() & KLogEventContactSearched); sl@0: sl@0: //Cleanup sl@0: CleanupStack::PopAndDestroy(event); sl@0: CleanupStack::PopAndDestroy(active); sl@0: } sl@0: sl@0: void doTestsL() sl@0: { sl@0: TestUtils::Initialize(_L("t_logcntmatch")); sl@0: sl@0: TheTest.Start(_L("Prepare the test environment")); sl@0: sl@0: TheMatchingIsEnabled = TestUtils::MatchingEnabledL(); sl@0: sl@0: if (!TheMatchingIsEnabled) sl@0: { sl@0: TheTest.Printf(_L("Contacts matching not enabled. Contacts matching tests NOT run\n")); sl@0: return; sl@0: } sl@0: sl@0: TInt contactMatchCount = 0; sl@0: LogGetContactmatchCountAndNameFormatL(contactMatchCount, TheContactNameFmt); sl@0: TheTest.Printf(_L("Contact match count = %d, TheContactNameFmt = %d\r\n"), contactMatchCount, (TInt)TheContactNameFmt); sl@0: sl@0: TestUtils::DeleteDatabaseL(); sl@0: sl@0: CLogClient* client = CLogClient::NewL(theFs); sl@0: CleanupStack::PushL(client); sl@0: sl@0: //All tests bellow are likely to fail if: sl@0: // 101f401d.txt file exists in CentralRepository private data cage and the contact mach count is set to 0 in that file. sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1392: DEF068087: Chinese names don't display in Chinese name format")); sl@0: ::DEF068087L(*client); sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1016: Contacts matching - test1")); sl@0: TestContactMatch1L(*client); sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1017: Contacts matching - test2")); sl@0: TestContactMatch2L(*client); sl@0: sl@0: TestUtils::DeleteDatabaseL(); sl@0: sl@0: CleanupStack::PopAndDestroy(client); sl@0: } sl@0: sl@0: #else //SYSLIBS_TEST sl@0: sl@0: void doTestsL() sl@0: { sl@0: TheTest.Start(_L("This test can be run only when built with SYSLIBS_TEST macro defined!")); sl@0: } sl@0: sl@0: #endif //SYSLIBS_TEST