Update contrib.
1 // Copyright (c) 2006-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.
15 #include "LOGREPDEFS.H"
16 #include "t_logutil2.h"
17 #include "t_logutil3.h"
18 #include "t_logcntmatchplugin.h"
20 RTest TheTest(_L("t_logcntmatch"));
24 TBool TheMatchingIsEnabled = EFalse;
25 //TheContactNameFmt variable must be initialized before tests.
26 //It gives an information what is the contact name format in the logs.
27 TLogContactNameFormat TheContactNameFmt = KLogContactNameFormat;
29 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
30 /////////////////////////////////////////////////////////////////////////////////////////////////////////////
32 //This function checks the logged name is the same as the event name.
33 //Contact name logging format is taken into account.
34 static void CheckContactName(CLogEvent& aEvent, const TDesC& aGivenName, const TDesC& aFamilyName)
37 if(TheContactNameFmt == ELogWesternFormat)
39 fullname.Format(_L("%S %S"), &aGivenName, &aFamilyName);
41 else //ELogChineseFormat
43 fullname.Format(_L("%S %S"), &aFamilyName, &aGivenName);
45 TEST(aEvent.RemoteParty() == fullname);
49 Check normal operation
51 @SYMTestCaseID SYSLIB-LOGENG-CT-1016
52 @SYMTestCaseDesc Tests for normal operations of CContactItem class
54 @SYMTestActions The test adds 3 events and checks that the retrieved contact details are correct.
55 @SYMTestExpectedResults Test must not fail
58 static void TestContactMatch1L(CLogClient& aClient)
60 CTestActive* active = new(ELeave)CTestActive();
61 CleanupStack::PushL(active);
63 CLogEvent* event = CLogEvent::NewL();
64 CleanupStack::PushL(event);
65 event->SetEventType(KLogCallEventTypeUid);
66 event->SetNumber(KNumber1);
68 // Add event. Expected contact to be found: {KFirstName1, KLastName1}.
70 aClient.AddEvent(*event, active->iStatus);
71 CActiveScheduler::Start();
72 TEST2(active->iStatus.Int(), KErrNone);
75 TLogContactItemId id1 = event->Contact();
76 TEST(id1 != KLogNullContactId);
77 ::CheckContactName(*event, KFirstName1, KLastName1);
78 TEST(event->Flags() & KLogEventContactSearched);
81 CleanupStack::PopAndDestroy(event);
82 event = CLogEvent::NewL();
83 CleanupStack::PushL(event);
84 event->SetEventType(KLogCallEventTypeUid);
85 event->SetNumber(KNumber2);
87 // Add event. Expected contact to be found: {KFirstName2, KLastName2}.
89 aClient.AddEvent(*event, active->iStatus);
90 CActiveScheduler::Start();
91 TEST2(active->iStatus.Int(), KErrNone);
94 TLogContactItemId id2 = event->Contact();
95 TEST(id2 != KLogNullContactId && id2 != id1);
96 ::CheckContactName(*event, KFirstName2, KLastName2);
97 TEST(event->Flags() & KLogEventContactSearched);
100 CleanupStack::PopAndDestroy(event);
101 event = CLogEvent::NewL();
102 CleanupStack::PushL(event);
103 event->SetEventType(KLogCallEventTypeUid);
104 event->SetNumber(KNumber3);
106 // Add event. Expected contact to be found: {KFirstName3, KLastName3}.
108 aClient.AddEvent(*event, active->iStatus);
109 CActiveScheduler::Start();
110 TEST2(active->iStatus.Int(), KErrNone);
113 TLogContactItemId id3 = event->Contact();
114 TEST(id3 != KLogNullContactId && id3 != id2);
115 ::CheckContactName(*event, KFirstName3, KLastName3);
116 TEST(event->Flags() & KLogEventContactSearched);
118 CleanupStack::PopAndDestroy(2); // event, active
124 @SYMTestCaseID SYSLIB-LOGENG-CT-1017
125 @SYMTestCaseDesc Tests for special cases on CContactItem class
126 @SYMTestPriority High
127 @SYMTestActions The test adds couple events and checks that the retrieved contact details are correct.
128 @SYMTestExpectedResults Test must not fail
131 static void TestContactMatch2L(CLogClient& aClient)
133 CTestActive* active = new(ELeave)CTestActive();
134 CleanupStack::PushL(active);
136 CLogEvent* event = CLogEvent::NewL();
137 CleanupStack::PushL(event);
138 event->SetEventType(KLogCallEventTypeUid);
140 const TLogContactItemId KIdInvalid = 77711;
141 event->SetNumber(KNumber3);
142 event->SetContact(KIdInvalid);
144 // Add event. There is a contacts record with phone number KNumber3, but the contact id is not KIdInvalid.
146 aClient.AddEvent(*event, active->iStatus);
147 CActiveScheduler::Start();
148 TEST2(active->iStatus.Int(), KErrNone);
150 // Check result - details should be unchanged
151 TLogContactItemId id1 = event->Contact();
152 TEST(id1 == KIdInvalid);
153 TEST(event->RemoteParty().Length() == 0);
154 TEST(!(event->Flags() & KLogEventContactSearched));
156 // Set remote party. The contact id is still KIdInvalid.
157 // The remote part of the contacts record with phone number KNumber3 is KFirstName3.
158 event->SetRemoteParty(KFirstName5);
162 aClient.AddEvent(*event, active->iStatus);
163 CActiveScheduler::Start();
164 TEST2(active->iStatus.Int(), KErrNone);
166 // Check result - details should be unchanged
167 id1 = event->Contact();
168 TEST(id1 == KIdInvalid);
169 TEST(event->RemoteParty() == KFirstName5);
170 TEST(!(event->Flags() & KLogEventContactSearched));
172 // Create new event. The contact id is not set.
173 // The phone number is set to be the same as the phone number of the contacts record.
174 // The remote party is set but is different in the contacts record.
175 CleanupStack::PopAndDestroy(event);
176 event = CLogEvent::NewL();
177 CleanupStack::PushL(event);
178 event->SetEventType(KLogCallEventTypeUid);
179 event->SetNumber(KNumber3);
180 event->SetRemoteParty(KFirstName5);
184 aClient.AddEvent(*event, active->iStatus);
185 CActiveScheduler::Start();
186 TEST2(active->iStatus.Int(), KErrNone);
188 // Check result - Remote party should be unchanged. But the contact id should be set and valid.
189 TLogContactItemId id2 = event->Contact();
190 TEST(id2 != KLogNullContactId && id2 != id1);
191 TEST(event->RemoteParty() == KFirstName5);
192 TEST(event->Flags() & KLogEventContactSearched);
195 CleanupStack::PopAndDestroy(event);
196 event = CLogEvent::NewL();
197 CleanupStack::PushL(event);
198 event->SetEventType(KLogCallEventTypeUid);
199 event->SetNumber(KNumber4);//There are 2 contacts records with phone number = KNumber4.
203 aClient.AddEvent(*event, active->iStatus);
204 CActiveScheduler::Start();
205 TEST2(active->iStatus.Int(), KErrNone);
207 // Check result - Details should not be set, because more than one contact found
208 TEST(event->Contact() == KLogNullContactId);
209 TEST(event->RemoteParty().Length() == 0);
210 TEST(event->Flags() & KLogEventContactSearched);
213 CleanupStack::PopAndDestroy(event);
214 event = CLogEvent::NewL();
215 CleanupStack::PushL(event);
216 event->SetEventType(KLogCallEventTypeUid);
218 TInt count = KNumber6().Length();
221 TPtrC num = KNumber6().Right(KNumber6().Length() - count);
222 event->SetNumber(num);
226 aClient.AddEvent(*event, active->iStatus);
227 CActiveScheduler::Start();
228 TEST2(active->iStatus.Int(), KErrNone);
230 TLogContactItemId id3 = event->Contact();
232 // Shouldn't perform a contacts match if number isn't big enough
233 if (num.Length() < 7)
235 // Check result - contact should not be set
236 TEST(id3 == KLogNullContactId);
237 TEST(event->RemoteParty().Length() == 0);
241 // Check result - Details should be set now
242 TEST(id3 != KLogNullContactId);
243 ::CheckContactName(*event, KFirstName6, KLastName6);
245 TEST(event->Flags() & KLogEventContactSearched);
248 CleanupStack::PopAndDestroy(2); // event, active
252 @SYMTestCaseID SYSLIB-LOGENG-CT-1392
253 @SYMTestCaseDesc Test for DEF068087 fix - "Chinese names don't display in Chinese name format."
254 @SYMTestPriority Medium
255 @SYMTestActions Checks that added {given_name,family_name} strings pair
256 is stored in the logs using the correct order (degtermined
257 by r_log_contact_name_format resource value).
258 @SYMTestExpectedResults Test must not fail
261 void DEF068087L(CLogClient& aClient)
263 CTestActive* active = new (ELeave) CTestActive();
264 CleanupStack::PushL(active);
266 //Add "phone call" event using one of the existing contacts
267 CLogEvent* event = CLogEvent::NewL();
268 CleanupStack::PushL(event);
269 event->SetEventType(KLogCallEventTypeUid);
270 event->SetNumber(KNumber7);
272 aClient.AddEvent(*event, active->iStatus);
273 CActiveScheduler::Start();
274 TEST2(active->iStatus.Int(), KErrNone);
275 TInt eventId = event->Id();
276 TEST(eventId != KLogNullId);
279 TEST(event->Contact() != KLogNullContactId);
280 ::CheckContactName(*event, KFirstName7, KLastName7);
281 TEST(event->Flags() & KLogEventContactSearched);
284 CleanupStack::PopAndDestroy(event);
285 CleanupStack::PopAndDestroy(active);
290 TestUtils::Initialize(_L("t_logcntmatch"));
292 TheTest.Start(_L("Prepare the test environment"));
294 TheMatchingIsEnabled = TestUtils::MatchingEnabledL();
296 if (!TheMatchingIsEnabled)
298 TheTest.Printf(_L("Contacts matching not enabled. Contacts matching tests NOT run\n"));
302 TInt contactMatchCount = 0;
303 LogGetContactmatchCountAndNameFormatL(contactMatchCount, TheContactNameFmt);
304 TheTest.Printf(_L("Contact match count = %d, TheContactNameFmt = %d\r\n"), contactMatchCount, (TInt)TheContactNameFmt);
306 TestUtils::DeleteDatabaseL();
308 CLogClient* client = CLogClient::NewL(theFs);
309 CleanupStack::PushL(client);
311 //All tests bellow are likely to fail if:
312 // 101f401d.txt file exists in CentralRepository private data cage and the contact mach count is set to 0 in that file.
313 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1392: DEF068087: Chinese names don't display in Chinese name format"));
314 ::DEF068087L(*client);
315 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1016: Contacts matching - test1"));
316 TestContactMatch1L(*client);
317 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1017: Contacts matching - test2"));
318 TestContactMatch2L(*client);
320 TestUtils::DeleteDatabaseL();
322 CleanupStack::PopAndDestroy(client);
329 TheTest.Start(_L("This test can be run only when built with SYSLIBS_TEST macro defined!"));
332 #endif //SYSLIBS_TEST