sl@0
|
1 |
// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// test code for INC041118 - Numberfield in logdatabase/engine is too small
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <s32file.h>
|
sl@0
|
19 |
#include <e32math.h>
|
sl@0
|
20 |
#include <bautils.h>
|
sl@0
|
21 |
#include "t_logutil2.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
RTest TheTest(_L("t_logmaxnumlen"));
|
sl@0
|
24 |
|
sl@0
|
25 |
_LIT(KTestEventDesc1, "Event Type Description");
|
sl@0
|
26 |
_LIT(KTestRemoteParty1, "Remote Party");
|
sl@0
|
27 |
_LIT(KTestDirection1, "Direction");
|
sl@0
|
28 |
_LIT(KTestStatus1, "Status");
|
sl@0
|
29 |
_LIT(KTestSubject1, "Subject");
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
// These values are stored in "oldLogdb.dat"
|
sl@0
|
33 |
_LIT(KTestEvent0, "00000");
|
sl@0
|
34 |
_LIT(KTestEvent1, "11111");
|
sl@0
|
35 |
_LIT(KTestEvent2, "22222");
|
sl@0
|
36 |
|
sl@0
|
37 |
const TUid KTestEventUid = {0x10005393};
|
sl@0
|
38 |
const TLogDurationType KTestDurationType1 = 1;
|
sl@0
|
39 |
const TLogDuration KTestDuration1 = 0x1234;
|
sl@0
|
40 |
const TLogContactItemId KTestContact1 = 0x1234;
|
sl@0
|
41 |
const TLogLink KTestLink1 = 0x1234;
|
sl@0
|
42 |
_LIT8(KTestData1, "ABCDEFGH");
|
sl@0
|
43 |
const TLogFlags KTestFlags1 = 0x5;
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
// with this value the test will ONLY pass with the new database
|
sl@0
|
47 |
_LIT(KTestNumberMax,
|
sl@0
|
48 |
"0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789");
|
sl@0
|
49 |
|
sl@0
|
50 |
// This test needs a number > 32 to check that database has been converted
|
sl@0
|
51 |
_LIT(KTestNumber50, "01234567890123456789012345678901234567890123456789");
|
sl@0
|
52 |
_LIT(KTestNumberMin, "0");
|
sl@0
|
53 |
|
sl@0
|
54 |
// this coresponds to an event already stored in oldLogDb.dat
|
sl@0
|
55 |
const TInt KoldId = 3;
|
sl@0
|
56 |
_LIT(KTestOldDbNumber, "012345678901234567");
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
@SYMTestCaseID SYSLIB-LOGENG-CT-1336
|
sl@0
|
61 |
@SYMTestCaseDesc Tests for adding events to the log engine database
|
sl@0
|
62 |
@SYMTestPriority High
|
sl@0
|
63 |
@SYMTestActions Check for event ID assigned by log engine
|
sl@0
|
64 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
65 |
@SYMREQ REQ0000
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
TInt TestAddEventL(CLogClient& aClient, const TDesC &aNumber)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1336 "));
|
sl@0
|
70 |
TInt returnId = KLogNullId;
|
sl@0
|
71 |
|
sl@0
|
72 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
73 |
CleanupStack::PushL(active);
|
sl@0
|
74 |
|
sl@0
|
75 |
// create a new event
|
sl@0
|
76 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
77 |
CleanupStack::PushL(event);
|
sl@0
|
78 |
|
sl@0
|
79 |
// Reset
|
sl@0
|
80 |
TTime now;
|
sl@0
|
81 |
now.UniversalTime();
|
sl@0
|
82 |
|
sl@0
|
83 |
// load the event with test values
|
sl@0
|
84 |
event->SetEventType(KTestEventUid);
|
sl@0
|
85 |
event->SetRemoteParty(KTestRemoteParty1);
|
sl@0
|
86 |
event->SetDirection(KTestDirection1);
|
sl@0
|
87 |
event->SetDurationType(KTestDurationType1);
|
sl@0
|
88 |
event->SetDuration(KTestDuration1);
|
sl@0
|
89 |
event->SetStatus(KTestStatus1);
|
sl@0
|
90 |
event->SetSubject(KTestSubject1);
|
sl@0
|
91 |
event->SetNumber(aNumber);
|
sl@0
|
92 |
event->SetContact(KTestContact1);
|
sl@0
|
93 |
event->SetLink(KTestLink1);
|
sl@0
|
94 |
event->SetDataL(KTestData1);
|
sl@0
|
95 |
event->SetFlags(KTestFlags1);
|
sl@0
|
96 |
|
sl@0
|
97 |
// add the event to the logeng database
|
sl@0
|
98 |
active->StartL();
|
sl@0
|
99 |
aClient.AddEvent(*event, active->iStatus);
|
sl@0
|
100 |
|
sl@0
|
101 |
CActiveScheduler::Start();
|
sl@0
|
102 |
TEST(!active->IsActive());
|
sl@0
|
103 |
aClient.Cancel();
|
sl@0
|
104 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
105 |
|
sl@0
|
106 |
// check that an ID has been assigned
|
sl@0
|
107 |
returnId = event->Id();
|
sl@0
|
108 |
TEST(returnId != KLogNullId);
|
sl@0
|
109 |
|
sl@0
|
110 |
TEST(event->Time() >= now);
|
sl@0
|
111 |
TEST(event->Description() == KTestEventDesc1);
|
sl@0
|
112 |
|
sl@0
|
113 |
CleanupStack::PopAndDestroy(2); // event, active
|
sl@0
|
114 |
|
sl@0
|
115 |
// return the event id which has been assigned by the
|
sl@0
|
116 |
// log engine
|
sl@0
|
117 |
return returnId;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
@SYMTestCaseID SYSLIB-LOGENG-CT-1337
|
sl@0
|
122 |
@SYMTestCaseDesc Tests for getting the event from the log engine database
|
sl@0
|
123 |
@SYMTestPriority High
|
sl@0
|
124 |
@SYMTestActions Tests for CLogClient::GetEvent() function
|
sl@0
|
125 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
126 |
@SYMREQ REQ0000
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
void TestGetEventL(CLogClient& aClient, TInt aTheId, const TDesC& aNumber)
|
sl@0
|
129 |
|
sl@0
|
130 |
{
|
sl@0
|
131 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1337 "));
|
sl@0
|
132 |
CTestActive* active = new(ELeave)CTestActive();
|
sl@0
|
133 |
CleanupStack::PushL(active);
|
sl@0
|
134 |
|
sl@0
|
135 |
CLogEvent* event = CLogEvent::NewL();
|
sl@0
|
136 |
CleanupStack::PushL(event);
|
sl@0
|
137 |
|
sl@0
|
138 |
// set the id of the event to be fetched
|
sl@0
|
139 |
event->SetId(aTheId);
|
sl@0
|
140 |
|
sl@0
|
141 |
active->StartL();
|
sl@0
|
142 |
aClient.GetEvent(*event, active->iStatus);
|
sl@0
|
143 |
CActiveScheduler::Start();
|
sl@0
|
144 |
aClient.Cancel();
|
sl@0
|
145 |
TEST2(active->iStatus.Int(), KErrNone);
|
sl@0
|
146 |
|
sl@0
|
147 |
TEST(event->Id() == aTheId);
|
sl@0
|
148 |
TEST(event->Time() > TTime(0));
|
sl@0
|
149 |
TEST(event->Description() == KTestEventDesc1);
|
sl@0
|
150 |
TEST(event->EventType() == KTestEventUid);
|
sl@0
|
151 |
TEST(event->RemoteParty() == KTestRemoteParty1);
|
sl@0
|
152 |
TEST(event->Direction() == KTestDirection1);
|
sl@0
|
153 |
TEST(event->DurationType() == KTestDurationType1);
|
sl@0
|
154 |
TEST(event->Duration() == KTestDuration1);
|
sl@0
|
155 |
TEST(event->Status() == KTestStatus1);
|
sl@0
|
156 |
TEST(event->Subject() == KTestSubject1);
|
sl@0
|
157 |
TEST(event->Contact() == KTestContact1);
|
sl@0
|
158 |
TEST(event->Link() == KTestLink1);
|
sl@0
|
159 |
TEST(event->Data() == KTestData1);
|
sl@0
|
160 |
TEST(event->Flags() == KTestFlags1);
|
sl@0
|
161 |
|
sl@0
|
162 |
// this is the important test
|
sl@0
|
163 |
// check the number has not been truncated
|
sl@0
|
164 |
TEST(event->Number() == aNumber);
|
sl@0
|
165 |
|
sl@0
|
166 |
TPtrC eventStatus = event->Subject();
|
sl@0
|
167 |
TPtrC eventNumber = event->Number();
|
sl@0
|
168 |
TheTest.Printf(_L("Id:%d No:%S Sub:%S Con:0x%x \n"),
|
sl@0
|
169 |
event->Id(), &eventNumber, &eventStatus, event->Contact());
|
sl@0
|
170 |
|
sl@0
|
171 |
CleanupStack::PopAndDestroy(2); // event, active
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
Test code for INC041118 - Numberfield in logdatabase/engine is too small
|
sl@0
|
177 |
This is the main part of the test
|
sl@0
|
178 |
|
sl@0
|
179 |
@SYMTestCaseID SYSLIB-LOGENG-CT-1019
|
sl@0
|
180 |
@SYMTestCaseDesc Tests for number field in logdatabase/engine is too small
|
sl@0
|
181 |
@SYMTestPriority High
|
sl@0
|
182 |
@SYMTestActions Add an event to the log engine database.When the database is opened it should be
|
sl@0
|
183 |
converted to new format.Check by reading the event and checking the number length
|
sl@0
|
184 |
Check with maximum and minimum number field
|
sl@0
|
185 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
186 |
@SYMREQ REQ0000
|
sl@0
|
187 |
*/
|
sl@0
|
188 |
void TestStartupL()
|
sl@0
|
189 |
{
|
sl@0
|
190 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-LOGENG-CT-1019 "));
|
sl@0
|
191 |
TestUtils::CopyOldDbL();
|
sl@0
|
192 |
|
sl@0
|
193 |
// add an event to the log engine database.
|
sl@0
|
194 |
// When the database is opened it should be checked for the old numberfield length
|
sl@0
|
195 |
// and converted to the new format if required. (It will be required, as old db has been copied)
|
sl@0
|
196 |
CLogClient* client = CLogClient::NewL(theFs);
|
sl@0
|
197 |
CleanupStack::PushL(client);
|
sl@0
|
198 |
User::After(1000000);
|
sl@0
|
199 |
TheTest.Next(_L("check database conversion"));
|
sl@0
|
200 |
TInt eventId = TestAddEventL(*client, KTestNumber50 );
|
sl@0
|
201 |
|
sl@0
|
202 |
// check that the database has been converted to the new format
|
sl@0
|
203 |
// by reading back an event the checking that number is the
|
sl@0
|
204 |
// correct length
|
sl@0
|
205 |
TestGetEventL(*client, eventId, KTestNumber50);
|
sl@0
|
206 |
|
sl@0
|
207 |
// check using Max
|
sl@0
|
208 |
TheTest.Next(_L("check a maxium length number"));
|
sl@0
|
209 |
eventId = TestAddEventL(*client, KTestNumberMax );
|
sl@0
|
210 |
TestGetEventL(*client, eventId, KTestNumberMax);
|
sl@0
|
211 |
|
sl@0
|
212 |
// check using Min
|
sl@0
|
213 |
TheTest.Next(_L("check a mimium length number"));
|
sl@0
|
214 |
eventId = TestAddEventL(*client, KTestNumberMin );
|
sl@0
|
215 |
TestGetEventL(*client, eventId, KTestNumberMin);
|
sl@0
|
216 |
|
sl@0
|
217 |
// When OldLogdbu.dat was created, using TestBuildTestDbL() below,
|
sl@0
|
218 |
// 4 events were stored. Check that these can still be accessed.
|
sl@0
|
219 |
// Note: There was a problem here with old events being purged after 30 days
|
sl@0
|
220 |
// This was fixed by setting TLogConfig::iMaxEventAge = 0 in OldLogdb.dat
|
sl@0
|
221 |
TheTest.Next(_L("check all events in the old database"));
|
sl@0
|
222 |
TestGetEventL(*client, 0, KTestEvent0);
|
sl@0
|
223 |
TestGetEventL(*client, 1, KTestEvent1);
|
sl@0
|
224 |
TestGetEventL(*client, 2, KTestEvent2);
|
sl@0
|
225 |
TestGetEventL(*client, KoldId, KTestOldDbNumber);
|
sl@0
|
226 |
|
sl@0
|
227 |
CleanupStack::PopAndDestroy(); // client
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
// Test code for INC041118 - Numberfield in logdatabase/engine is too small
|
sl@0
|
231 |
void doTestsL()
|
sl@0
|
232 |
{
|
sl@0
|
233 |
TestUtils::Initialize(_L("t_logmaxnumlen"));
|
sl@0
|
234 |
#ifdef _DEBUG
|
sl@0
|
235 |
TheTest.Start(_L("T_MaxNumberLength Set/Check Phone Number Maximum Length"));
|
sl@0
|
236 |
|
sl@0
|
237 |
TestStartupL();
|
sl@0
|
238 |
theLog.Write(_L8("Test T_MAXNUMBERLENGTH OK\n"));
|
sl@0
|
239 |
#else
|
sl@0
|
240 |
TheTest.Start(_L("This test works only in debug mode, otherwise the LogEng server cannot be stopped. See TestUtils::CopyOldDbL()"));
|
sl@0
|
241 |
#endif//_DEBUG
|
sl@0
|
242 |
}
|