sl@0
|
1 |
// Copyright (c) 2004-2009 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 |
// This file contains test classes and their implementations
|
sl@0
|
15 |
// to test production class CBackupNotifier. Where necessary stubs
|
sl@0
|
16 |
// are implemented to help in writing test harness using RTest.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32test.h>
|
sl@0
|
21 |
#include <s32file.h>
|
sl@0
|
22 |
#include <bautils.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "BackupNotifier.h"
|
sl@0
|
25 |
#include "BackupNotifierObserver.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
// Used for suppressing warning in OOM tests
|
sl@0
|
28 |
#define __UNUSED_VAR(var) var = var
|
sl@0
|
29 |
|
sl@0
|
30 |
LOCAL_D CTrapCleanup* TheTrapCleanup =NULL;
|
sl@0
|
31 |
|
sl@0
|
32 |
LOCAL_D CActiveScheduler* TheActiveScheduler =NULL;
|
sl@0
|
33 |
|
sl@0
|
34 |
LOCAL_D RTest test(_L("t_backupnotifier.exe"));
|
sl@0
|
35 |
|
sl@0
|
36 |
//It is used by some test methods which are called two times:
|
sl@0
|
37 |
//from normal test and from OOM test.
|
sl@0
|
38 |
static void LeaveIfErrNoMemory(TInt aError)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
if(aError == KErrNoMemory)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
User::Leave(aError);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Stub classes are provided to act as replacement members for the class
|
sl@0
|
48 |
under test. This ensures the test class is constructed correctly and its
|
sl@0
|
49 |
behaviour is also correct within the context of the test. It allows the
|
sl@0
|
50 |
class to be tested in isolation. Other tests are available that test the
|
sl@0
|
51 |
interoperability of the class
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
class CBackupNotifierObserverStub : public CBase, public MBackupNotifierObserver
|
sl@0
|
54 |
{
|
sl@0
|
55 |
public:
|
sl@0
|
56 |
|
sl@0
|
57 |
CBackupNotifierObserverStub();
|
sl@0
|
58 |
~CBackupNotifierObserverStub();
|
sl@0
|
59 |
TInt Suspend();
|
sl@0
|
60 |
TInt Resume();
|
sl@0
|
61 |
|
sl@0
|
62 |
/** Flag to check for BackupNotifierObserver directory scanning status*/
|
sl@0
|
63 |
TBool iSuspended;
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
CBackupNotifierObserverStub::CBackupNotifierObserverStub()
|
sl@0
|
67 |
: CBase()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
iSuspended = EFalse;
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
CBackupNotifierObserverStub::~CBackupNotifierObserverStub()
|
sl@0
|
73 |
{
|
sl@0
|
74 |
// Do nothing here
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Overload of the MBackupNotifierObserver method.
|
sl@0
|
79 |
Called to stop the directory scanning as the backup session is started.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
TInt CBackupNotifierObserverStub::Suspend()
|
sl@0
|
82 |
{
|
sl@0
|
83 |
iSuspended = ETrue;
|
sl@0
|
84 |
return KErrNone;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
Overload of the MBackupNotifierObserver method.
|
sl@0
|
90 |
Called to resume the directory scanning as the backup session is over.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
TInt CBackupNotifierObserverStub::Resume()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
iSuspended = EFalse;
|
sl@0
|
95 |
return KErrNone;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
This friend class allows us to access private and protected members of production
|
sl@0
|
100 |
code class BackupNotifier.
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
class TBackupNotifier_StateAccessor
|
sl@0
|
103 |
{
|
sl@0
|
104 |
public:
|
sl@0
|
105 |
void HandleBackupOperationEventL(CBackupNotifier& , const TBackupOperationAttributes&);
|
sl@0
|
106 |
void RegisterForNotificationsL(CBackupNotifier& aNotifier);
|
sl@0
|
107 |
void DeregisterForNotifications(CBackupNotifier& aNotifier);
|
sl@0
|
108 |
TBool IsRegisteredForNotifications(CBackupNotifier& aNotifier);
|
sl@0
|
109 |
};
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
Handles the Backup operation event.
|
sl@0
|
113 |
|
sl@0
|
114 |
@param aNotifier The CBackupNotifier class object under test
|
sl@0
|
115 |
@param aAttributes Attribute specifying the Backup event(Start/Stop)
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
void TBackupNotifier_StateAccessor::HandleBackupOperationEventL(CBackupNotifier& aNotifier,
|
sl@0
|
118 |
const TBackupOperationAttributes& aAttributes)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
aNotifier.HandleBackupOperationEventL(aAttributes);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
Creates the Backup session if already not created and Registers BackupNotifier for
|
sl@0
|
125 |
notifications from the backup server.
|
sl@0
|
126 |
|
sl@0
|
127 |
@param aNotifier The CBackupNotifier class object under test
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
void TBackupNotifier_StateAccessor::RegisterForNotificationsL(CBackupNotifier& aNotifier)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
aNotifier.RegisterForNotificationsL();
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
Deregisters the BackupNotifier for notifications from the backup server and deletes
|
sl@0
|
136 |
the Backup session object.
|
sl@0
|
137 |
|
sl@0
|
138 |
@param aNotifier The CBackupNotifier class object under test
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
void TBackupNotifier_StateAccessor::DeregisterForNotifications(CBackupNotifier& aNotifier)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
if(aNotifier.iBackupSession)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
if(aNotifier.iIsRegistered)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
aNotifier.iBackupSession->DeRegisterBackupOperationObserver(aNotifier);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
delete aNotifier.iBackupSession;
|
sl@0
|
149 |
aNotifier.iBackupSession = NULL;
|
sl@0
|
150 |
}
|
sl@0
|
151 |
aNotifier.iIsRegistered = EFalse;
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
Checks whether the notifier object is registered for backup notifications.
|
sl@0
|
156 |
|
sl@0
|
157 |
@param aNotifier The CBackupNotifier class object under test
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
TBool TBackupNotifier_StateAccessor::IsRegisteredForNotifications(CBackupNotifier& aNotifier)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
return aNotifier.iIsRegistered;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
|
sl@0
|
165 |
/**
|
sl@0
|
166 |
Test class encloses necessary members that aid to test CBackupNotifier
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
class CBackUpNotifierTest: public CBase
|
sl@0
|
169 |
{
|
sl@0
|
170 |
public:
|
sl@0
|
171 |
static CBackUpNotifierTest* NewL();
|
sl@0
|
172 |
|
sl@0
|
173 |
~CBackUpNotifierTest();
|
sl@0
|
174 |
void HandleBackupOperationEventTestL();
|
sl@0
|
175 |
void RegisterForNotificationsTestL();
|
sl@0
|
176 |
|
sl@0
|
177 |
private:
|
sl@0
|
178 |
CBackUpNotifierTest();
|
sl@0
|
179 |
void ConstructL();
|
sl@0
|
180 |
|
sl@0
|
181 |
public:
|
sl@0
|
182 |
/** The instance of the class under test */
|
sl@0
|
183 |
CBackupNotifier* iBackupNotifier;
|
sl@0
|
184 |
|
sl@0
|
185 |
/** The instance of the stubbed observer of the class under test */
|
sl@0
|
186 |
CBackupNotifierObserverStub* iObserverStub;
|
sl@0
|
187 |
|
sl@0
|
188 |
/** Friend class pointer used for accessing private members */
|
sl@0
|
189 |
TBackupNotifier_StateAccessor* iStateAccessor;
|
sl@0
|
190 |
};
|
sl@0
|
191 |
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
Create a new CBackUpNotifierTest object
|
sl@0
|
194 |
@return A pointer to the newly created class.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
CBackUpNotifierTest* CBackUpNotifierTest::NewL()
|
sl@0
|
197 |
{
|
sl@0
|
198 |
CBackUpNotifierTest* self = new (ELeave) CBackUpNotifierTest();
|
sl@0
|
199 |
CleanupStack::PushL(self);
|
sl@0
|
200 |
self->ConstructL();
|
sl@0
|
201 |
CleanupStack::Pop();
|
sl@0
|
202 |
return self;
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
/**
|
sl@0
|
206 |
Standardized default constructor
|
sl@0
|
207 |
@post CBackUpNotifierTest is fully constructed
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
|
sl@0
|
210 |
CBackUpNotifierTest::CBackUpNotifierTest()
|
sl@0
|
211 |
{
|
sl@0
|
212 |
// Do nothing here
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
Standardized 2nd(Initialization) phase of two phase construction.
|
sl@0
|
217 |
Completes the safe construction of the CBackUpNotifierTest object
|
sl@0
|
218 |
@post CBackUpNotifierTest is fully constructed.
|
sl@0
|
219 |
@leave KErrNoMemory.
|
sl@0
|
220 |
*/
|
sl@0
|
221 |
void CBackUpNotifierTest::ConstructL()
|
sl@0
|
222 |
{
|
sl@0
|
223 |
iStateAccessor = new(ELeave) TBackupNotifier_StateAccessor();
|
sl@0
|
224 |
iObserverStub = new(ELeave) CBackupNotifierObserverStub();
|
sl@0
|
225 |
iBackupNotifier = CBackupNotifier::NewL(*iObserverStub);
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
/**
|
sl@0
|
229 |
Standard destructor
|
sl@0
|
230 |
*/
|
sl@0
|
231 |
CBackUpNotifierTest::~CBackUpNotifierTest()
|
sl@0
|
232 |
{
|
sl@0
|
233 |
delete iBackupNotifier;
|
sl@0
|
234 |
delete iObserverStub;
|
sl@0
|
235 |
delete iStateAccessor;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
/**
|
sl@0
|
239 |
The test executes by first starting the backup session and then by ending it.
|
sl@0
|
240 |
Backup operation event notifications are passed to the observer(i.e CRegistrar) for
|
sl@0
|
241 |
notifing CDiscoverer to start/ stop the discoveries process depending on the
|
sl@0
|
242 |
event(Backup start/end). The observer stub class is being used for the
|
sl@0
|
243 |
verification of the results.
|
sl@0
|
244 |
|
sl@0
|
245 |
@SYMTestCaseID SYSLIB-ECOM-CT-0753
|
sl@0
|
246 |
@SYMTestCaseDesc Tests for CBackupNotifier::HandleBackupOperationEventL function
|
sl@0
|
247 |
@SYMTestPriority High
|
sl@0
|
248 |
@SYMTestActions Setting the backup operation attributes before starting the backup operation.
|
sl@0
|
249 |
Suspend BackupNotifier observer.
|
sl@0
|
250 |
Reset backup operation attributes and stop the backup operation.
|
sl@0
|
251 |
Resume BackupNotifier observer.
|
sl@0
|
252 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
253 |
@SYMREQ REQ0000
|
sl@0
|
254 |
*/
|
sl@0
|
255 |
void CBackUpNotifierTest::HandleBackupOperationEventTestL()
|
sl@0
|
256 |
{
|
sl@0
|
257 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0753 "));
|
sl@0
|
258 |
TBackupOperationAttributes attribs;
|
sl@0
|
259 |
// Setting the backup operation attributes before making the event.
|
sl@0
|
260 |
attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
|
sl@0
|
261 |
attribs.iOperation=MBackupOperationObserver::EStart;
|
sl@0
|
262 |
|
sl@0
|
263 |
// Start the backup operation
|
sl@0
|
264 |
TRAPD(err, iStateAccessor->HandleBackupOperationEventL(*iBackupNotifier, attribs));
|
sl@0
|
265 |
::LeaveIfErrNoMemory(err);
|
sl@0
|
266 |
test(err == KErrNone);
|
sl@0
|
267 |
// BackupNotifier observer should get suspended. The directory scanning process(in stub class)
|
sl@0
|
268 |
// should get stopped as backup is started.
|
sl@0
|
269 |
test(iObserverStub->iSuspended);
|
sl@0
|
270 |
|
sl@0
|
271 |
// Resetting the backup operation attributes before making another event.
|
sl@0
|
272 |
attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
|
sl@0
|
273 |
attribs.iOperation=MBackupOperationObserver::EEnd;
|
sl@0
|
274 |
|
sl@0
|
275 |
// Stop the backup operation
|
sl@0
|
276 |
TRAP(err, iStateAccessor->HandleBackupOperationEventL(*iBackupNotifier, attribs));
|
sl@0
|
277 |
::LeaveIfErrNoMemory(err);
|
sl@0
|
278 |
test(err == KErrNone);
|
sl@0
|
279 |
// BackupNotifier observer should get resumed. The directory scanning process(in stub class)
|
sl@0
|
280 |
// should get resumed as backup is over.
|
sl@0
|
281 |
test(!iObserverStub->iSuspended);
|
sl@0
|
282 |
}
|
sl@0
|
283 |
|
sl@0
|
284 |
/**
|
sl@0
|
285 |
@SYMTestCaseID SYSLIB-ECOM-CT-0754
|
sl@0
|
286 |
@SYMTestCaseDesc Register for notification test
|
sl@0
|
287 |
@SYMTestPriority High
|
sl@0
|
288 |
@SYMTestActions Tests by first unregistring(if already registerd) the Backup notifier for notifications
|
sl@0
|
289 |
and then by registering for notifications from the backup server.
|
sl@0
|
290 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
291 |
@SYMREQ REQ0000
|
sl@0
|
292 |
*/
|
sl@0
|
293 |
void CBackUpNotifierTest::RegisterForNotificationsTestL()
|
sl@0
|
294 |
{
|
sl@0
|
295 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0754 "));
|
sl@0
|
296 |
TBool isRegistered = iStateAccessor->IsRegisteredForNotifications(*iBackupNotifier);
|
sl@0
|
297 |
|
sl@0
|
298 |
// Idealy it should got registered when the CBackupNotifier object is created.
|
sl@0
|
299 |
if(isRegistered)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
TRAPD(err, iStateAccessor->DeregisterForNotifications(*iBackupNotifier));
|
sl@0
|
302 |
::LeaveIfErrNoMemory(err);
|
sl@0
|
303 |
test(err == KErrNone);
|
sl@0
|
304 |
}
|
sl@0
|
305 |
|
sl@0
|
306 |
// Backup notifier should not be registerd for backup operation events.
|
sl@0
|
307 |
isRegistered = iStateAccessor->IsRegisteredForNotifications(*iBackupNotifier);
|
sl@0
|
308 |
test(!isRegistered);
|
sl@0
|
309 |
|
sl@0
|
310 |
// Register the Backup Notifier for the backup operation events.
|
sl@0
|
311 |
TRAPD(err, iStateAccessor->RegisterForNotificationsL(*iBackupNotifier));
|
sl@0
|
312 |
::LeaveIfErrNoMemory(err);
|
sl@0
|
313 |
test(err == KErrNone);
|
sl@0
|
314 |
|
sl@0
|
315 |
// Backup notifier should be registerd for backup operation events.
|
sl@0
|
316 |
isRegistered = iStateAccessor->IsRegisteredForNotifications(*iBackupNotifier);
|
sl@0
|
317 |
test(isRegistered);
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
/**
|
sl@0
|
321 |
@SYMTestCaseID SYSLIB-ECOM-CT-0755
|
sl@0
|
322 |
@SYMTestCaseDesc Create and delete test of CBackUpNotifier
|
sl@0
|
323 |
@SYMTestPriority High
|
sl@0
|
324 |
@SYMTestActions Check for handle leak after deletion of object.
|
sl@0
|
325 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
326 |
@SYMREQ REQ0000
|
sl@0
|
327 |
*/
|
sl@0
|
328 |
LOCAL_C void CreateDeleteTestL()
|
sl@0
|
329 |
{
|
sl@0
|
330 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0755 CreateDeleteTestL "));
|
sl@0
|
331 |
// Set up for heap leak checking
|
sl@0
|
332 |
__UHEAP_MARK;
|
sl@0
|
333 |
|
sl@0
|
334 |
// and leaking thread handles
|
sl@0
|
335 |
TInt startProcessHandleCount;
|
sl@0
|
336 |
TInt startThreadHandleCount;
|
sl@0
|
337 |
TInt endProcessHandleCount;
|
sl@0
|
338 |
TInt endThreadHandleCount;
|
sl@0
|
339 |
|
sl@0
|
340 |
// Test Starts...
|
sl@0
|
341 |
RThread thisThread;
|
sl@0
|
342 |
thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
343 |
|
sl@0
|
344 |
CBackUpNotifierTest* notifierTest = CBackUpNotifierTest::NewL();
|
sl@0
|
345 |
|
sl@0
|
346 |
test(notifierTest!=NULL);
|
sl@0
|
347 |
|
sl@0
|
348 |
delete notifierTest;
|
sl@0
|
349 |
|
sl@0
|
350 |
// Check for open handles
|
sl@0
|
351 |
thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
352 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
353 |
|
sl@0
|
354 |
__UHEAP_MARKEND;
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
/**
|
sl@0
|
358 |
@SYMTestCaseID SYSLIB-ECOM-CT-0756
|
sl@0
|
359 |
@SYMTestCaseDesc OOM Test for create and delete of CBackUpNotifier
|
sl@0
|
360 |
@SYMTestPriority High
|
sl@0
|
361 |
@SYMTestActions Check for handle leak after deletion of object.
|
sl@0
|
362 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
363 |
@SYMREQ REQ0000
|
sl@0
|
364 |
*/
|
sl@0
|
365 |
LOCAL_C void OOMCreateDeleteTest()
|
sl@0
|
366 |
{
|
sl@0
|
367 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0756 OOM CreateDeleteTest "));
|
sl@0
|
368 |
TInt err;
|
sl@0
|
369 |
TInt failAt = 1;
|
sl@0
|
370 |
__UNUSED_VAR(failAt);
|
sl@0
|
371 |
|
sl@0
|
372 |
CBackUpNotifierTest* theTest = NULL;
|
sl@0
|
373 |
|
sl@0
|
374 |
do
|
sl@0
|
375 |
{
|
sl@0
|
376 |
__UHEAP_MARK;
|
sl@0
|
377 |
// find out the number of open handles
|
sl@0
|
378 |
TInt startProcessHandleCount;
|
sl@0
|
379 |
TInt startThreadHandleCount;
|
sl@0
|
380 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
381 |
|
sl@0
|
382 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
383 |
|
sl@0
|
384 |
TRAP(err, theTest = CBackUpNotifierTest::NewL());
|
sl@0
|
385 |
|
sl@0
|
386 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
387 |
|
sl@0
|
388 |
delete theTest;
|
sl@0
|
389 |
theTest = NULL;
|
sl@0
|
390 |
|
sl@0
|
391 |
// check that no handles have leaked
|
sl@0
|
392 |
TInt endProcessHandleCount;
|
sl@0
|
393 |
TInt endThreadHandleCount;
|
sl@0
|
394 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
395 |
|
sl@0
|
396 |
test(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
397 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
398 |
|
sl@0
|
399 |
__UHEAP_MARKEND;
|
sl@0
|
400 |
}
|
sl@0
|
401 |
while(err == KErrNoMemory);
|
sl@0
|
402 |
|
sl@0
|
403 |
test.Printf(_L("- Succeeded at heap failure rate of %i\n"), failAt);
|
sl@0
|
404 |
test(err == KErrNone);
|
sl@0
|
405 |
}
|
sl@0
|
406 |
|
sl@0
|
407 |
// Type definition for pointer to member function.
|
sl@0
|
408 |
// Used in calling the CBackUpNotifierTest member function for testing.
|
sl@0
|
409 |
typedef void (CBackUpNotifierTest::*ClassFuncPtrL) (void);
|
sl@0
|
410 |
|
sl@0
|
411 |
/**
|
sl@0
|
412 |
@SYMTestCaseID SYSLIB-ECOM-CT-0757
|
sl@0
|
413 |
@SYMTestCaseDesc Function to call all test functions
|
sl@0
|
414 |
@SYMTestPriority High
|
sl@0
|
415 |
@SYMTestActions Calls up test functions of CBackupNotifier,check that no handles have leaked
|
sl@0
|
416 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
417 |
@SYMREQ REQ0000
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
/**
|
sl@0
|
420 |
Wrapper function to call all test functions
|
sl@0
|
421 |
@param testFunc pointer to test function
|
sl@0
|
422 |
@param aTestDesc test function name
|
sl@0
|
423 |
*/
|
sl@0
|
424 |
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
425 |
{
|
sl@0
|
426 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0757 "));
|
sl@0
|
427 |
test.Next(aTestDesc);
|
sl@0
|
428 |
|
sl@0
|
429 |
__UHEAP_MARK;
|
sl@0
|
430 |
// find out the number of open handles
|
sl@0
|
431 |
TInt startProcessHandleCount;
|
sl@0
|
432 |
TInt startThreadHandleCount;
|
sl@0
|
433 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
434 |
|
sl@0
|
435 |
CBackUpNotifierTest* theTest = CBackUpNotifierTest::NewL();
|
sl@0
|
436 |
CleanupStack::PushL(theTest);
|
sl@0
|
437 |
|
sl@0
|
438 |
(theTest->*testFuncL)();
|
sl@0
|
439 |
|
sl@0
|
440 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
441 |
|
sl@0
|
442 |
// check that no handles have leaked
|
sl@0
|
443 |
TInt endProcessHandleCount;
|
sl@0
|
444 |
TInt endThreadHandleCount;
|
sl@0
|
445 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
446 |
|
sl@0
|
447 |
test(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
448 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
449 |
|
sl@0
|
450 |
__UHEAP_MARKEND;
|
sl@0
|
451 |
}
|
sl@0
|
452 |
|
sl@0
|
453 |
/**
|
sl@0
|
454 |
@SYMTestCaseID SYSLIB-ECOM-CT-0758
|
sl@0
|
455 |
@SYMTestCaseDesc Function to call all OOM test functions
|
sl@0
|
456 |
@SYMTestPriority High
|
sl@0
|
457 |
@SYMTestActions Calls up all OOM test function related to CBackupNotifier
|
sl@0
|
458 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
459 |
@SYMREQ REQ0000
|
sl@0
|
460 |
*/
|
sl@0
|
461 |
/**
|
sl@0
|
462 |
Wrapper function to call all OOM test functions
|
sl@0
|
463 |
@param testFuncL pointer to OOM test function
|
sl@0
|
464 |
@param aTestDesc test function name
|
sl@0
|
465 |
*/
|
sl@0
|
466 |
LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
467 |
{
|
sl@0
|
468 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0758 "));
|
sl@0
|
469 |
test.Next(aTestDesc);
|
sl@0
|
470 |
|
sl@0
|
471 |
TInt err;
|
sl@0
|
472 |
TInt tryCount = 0;
|
sl@0
|
473 |
do
|
sl@0
|
474 |
{
|
sl@0
|
475 |
__UHEAP_MARK;
|
sl@0
|
476 |
// find out the number of open handles
|
sl@0
|
477 |
TInt startProcessHandleCount;
|
sl@0
|
478 |
TInt startThreadHandleCount;
|
sl@0
|
479 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
480 |
|
sl@0
|
481 |
CBackUpNotifierTest* theTest = CBackUpNotifierTest::NewL();
|
sl@0
|
482 |
CleanupStack::PushL(theTest);
|
sl@0
|
483 |
|
sl@0
|
484 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
485 |
|
sl@0
|
486 |
TRAP(err, (theTest->*testFuncL)());
|
sl@0
|
487 |
|
sl@0
|
488 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
489 |
|
sl@0
|
490 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
491 |
theTest = NULL;
|
sl@0
|
492 |
// check that no handles have leaked
|
sl@0
|
493 |
TInt endProcessHandleCount;
|
sl@0
|
494 |
TInt endThreadHandleCount;
|
sl@0
|
495 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
496 |
|
sl@0
|
497 |
test(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
498 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
499 |
|
sl@0
|
500 |
__UHEAP_MARKEND;
|
sl@0
|
501 |
} while(err == KErrNoMemory);
|
sl@0
|
502 |
|
sl@0
|
503 |
test(err == KErrNone);
|
sl@0
|
504 |
test.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
LOCAL_C void DoTestsL()
|
sl@0
|
508 |
{
|
sl@0
|
509 |
__UHEAP_MARK;
|
sl@0
|
510 |
|
sl@0
|
511 |
CreateDeleteTestL();
|
sl@0
|
512 |
DoBasicTestL(&CBackUpNotifierTest::HandleBackupOperationEventTestL, _L("HandleBackupOperationEventL Test"));
|
sl@0
|
513 |
DoBasicTestL(&CBackUpNotifierTest::RegisterForNotificationsTestL, _L("RegisterForNotificationsL Test"));
|
sl@0
|
514 |
|
sl@0
|
515 |
OOMCreateDeleteTest();
|
sl@0
|
516 |
DoOOMTestL(&CBackUpNotifierTest::HandleBackupOperationEventTestL, _L("HandleBackupOperationEventL Test"));
|
sl@0
|
517 |
DoOOMTestL(&CBackUpNotifierTest::RegisterForNotificationsTestL, _L("RegisterForNotificationsL Test"));
|
sl@0
|
518 |
|
sl@0
|
519 |
__UHEAP_MARKEND;
|
sl@0
|
520 |
}
|
sl@0
|
521 |
|
sl@0
|
522 |
//Initialise the Active Scheduler
|
sl@0
|
523 |
LOCAL_C void SetupL()
|
sl@0
|
524 |
{
|
sl@0
|
525 |
// Construct and install the active scheduler
|
sl@0
|
526 |
TheActiveScheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
527 |
CActiveScheduler::Install(TheActiveScheduler);
|
sl@0
|
528 |
}
|
sl@0
|
529 |
|
sl@0
|
530 |
|
sl@0
|
531 |
GLDEF_C TInt E32Main()
|
sl@0
|
532 |
{
|
sl@0
|
533 |
__UHEAP_MARK;
|
sl@0
|
534 |
|
sl@0
|
535 |
test.Printf(_L("\n"));
|
sl@0
|
536 |
test.Title();
|
sl@0
|
537 |
test.Start(_L("BackUp Notifier Tests"));
|
sl@0
|
538 |
|
sl@0
|
539 |
TheTrapCleanup = CTrapCleanup::New();
|
sl@0
|
540 |
|
sl@0
|
541 |
TRAPD(err, SetupL());
|
sl@0
|
542 |
test(err == KErrNone);
|
sl@0
|
543 |
|
sl@0
|
544 |
TRAP(err, DoTestsL());
|
sl@0
|
545 |
test(err == KErrNone);
|
sl@0
|
546 |
|
sl@0
|
547 |
delete TheTrapCleanup;
|
sl@0
|
548 |
delete TheActiveScheduler;
|
sl@0
|
549 |
test.End();
|
sl@0
|
550 |
test.Close();
|
sl@0
|
551 |
|
sl@0
|
552 |
__UHEAP_MARKEND;
|
sl@0
|
553 |
return(KErrNone);
|
sl@0
|
554 |
}
|