Update contrib.
1 // Copyright (c) 2009-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.
19 #include <featureuids.h>
20 #include <featurecontrol.h>
21 #include <featdiscovery.h>
22 #include <featurenotifier.h>
23 #include "../../../src/clientdll/featmgrresourcetester.h"
25 using namespace NFeature;
28 const TInt KInvalidFeatureId = 90901671;
29 const TUid KInvalidFeatureUid = {KInvalidFeatureId};
31 static TInt TheProcessHandleCount = 0;
32 static TInt TheThreadHandleCount = 0;
33 static TInt TheAllocatedCellsCount = 0;
36 static const TInt KBurstRate = 20;
39 enum TFeatMgrOomTestMode
41 EFeatMgrOomServerTestMode,
42 EFeatMgrOomClientTestMode,
45 ///////////////////////////////////////////////////////////////////////////////////////
47 static RTest TheTest(_L("t_fmgroom"));
51 ///////////////////////////////////////////////////////////////////////////////////////
52 ///////////////////////////////////////////////////////////////////////////////////////
53 //Test macros and functions
54 void Check1(TInt aValue, TInt aLine)
58 RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
59 TheTest(EFalse, aLine);
62 void Check2(TInt aValue, TInt aExpected, TInt aLine)
64 if(aValue != aExpected)
66 RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
67 TheTest(EFalse, aLine);
70 #define TEST(arg) ::Check1((arg), __LINE__)
71 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
73 ///////////////////////////////////////////////////////////////////////////////////////
75 static void MarkHandles()
77 RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
80 static void MarkAllocatedCells()
82 TheAllocatedCellsCount = User::CountAllocCells();
85 static void CheckAllocatedCells()
87 TInt allocatedCellsCount = User::CountAllocCells();
88 TEST2(allocatedCellsCount, TheAllocatedCellsCount);
91 static void CheckHandles()
93 TInt endProcessHandleCount;
94 TInt endThreadHandleCount;
96 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
98 TEST2(TheProcessHandleCount, endProcessHandleCount);
99 TEST2(TheThreadHandleCount, endThreadHandleCount);
102 static void OomPreStep(TInt aFailingAllocationNo, TFeatMgrOomTestMode aMode = EFeatMgrOomClientTestMode)
104 if(aMode == EFeatMgrOomClientTestMode)
107 MarkAllocatedCells();
109 __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
113 TFeatMgrResourceTester::Mark();
114 TFeatMgrResourceTester::SetHeapFailure(RHeap::EBurstFailNext, aFailingAllocationNo);
118 static void OomPostStep(TFeatMgrOomTestMode aMode = EFeatMgrOomClientTestMode)
120 if(aMode == EFeatMgrOomClientTestMode)
124 CheckAllocatedCells();
129 TFeatMgrResourceTester::SetHeapFailure(RHeap::ENone, 0);
130 TFeatMgrResourceTester::Check();
134 ///////////////////////////////////////////////////////////////////////////////////////
137 @SYMTestCaseID PDS-EFM-CT-4068
138 @SYMTestCaseDesc Include test case 4069 too
139 @SYMTestPriority High
141 @SYMTestExpectedResults Test must not fail
144 void ControlOpenOomTest(TBool aUseConnect)
146 TInt err = KErrNoMemory;
147 TInt failingAllocationNo = 0;
148 RFeatureControl ctrl;
149 TheTest.Printf(_L("Iteration:\r\n"));
150 while(err == KErrNoMemory)
152 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
153 OomPreStep(failingAllocationNo);
154 err = aUseConnect ? ctrl.Connect() : ctrl.Open();
158 if(err != KErrNoMemory)
160 TEST2(err, KErrNone);
162 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
166 @SYMTestCaseID PDS-EFM-CT-4070
167 @SYMTestCaseDesc Include test case 4071-4077 too
168 @SYMTestPriority High
170 @SYMTestExpectedResults Test must not fail
173 void ControlFeatureSupportedOomTest(TBool aUseUid, TBool aInvalidFeature, TFeatMgrOomTestMode aMode)
175 RFeatureControl ctrl;
176 TInt err = ctrl.Open();
177 TEST2(err, KErrNone);
179 const TUid KFeatureUid(aInvalidFeature ? KInvalidFeatureUid : KConnectivity);
180 TFeatureEntry fentry(KFeatureUid);
183 TInt failingAllocationNo = 0;
184 TheTest.Printf(_L("Iteration:\r\n"));
185 while(err == KErrNoMemory)
187 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
188 OomPreStep(failingAllocationNo, aMode);
189 err = aUseUid ? ctrl.FeatureSupported(KFeatureUid) : ctrl.FeatureSupported(fentry);
193 if(err != KErrNoMemory)
195 TEST2(err, aInvalidFeature ? KErrNotFound : KFeatureSupported);
197 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
201 @SYMTestCaseID PDS-EFM-CT-4078
202 @SYMTestCaseDesc Include test case 4079 too
203 @SYMTestPriority High
205 @SYMTestExpectedResults Test must not fail
208 void ControlListSupportedFeaturesOomTest(TFeatMgrOomTestMode aMode)
210 RFeatureControl ctrl;
211 TInt err = ctrl.Open();
212 TEST2(err, KErrNone);
215 TInt failingAllocationNo = 0;
216 TheTest.Printf(_L("Iteration:\r\n"));
217 while(err == KErrNoMemory)
219 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
220 OomPreStep(failingAllocationNo, aMode);
221 const TInt KGranularity = 1;
222 RFeatureUidArray farray(KGranularity);
223 err = ctrl.ListSupportedFeatures(farray);
224 if(err != KErrNoMemory)
226 TEST2(err, KErrNone);
227 TInt count = farray.Count();
228 TheTest.Printf(_L("===Features count: %d\r\n"), count);
235 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
239 @SYMTestCaseID PDS-EFM-CT-4080
240 @SYMTestCaseDesc Include test case 4081 too
241 @SYMTestPriority High
243 @SYMTestExpectedResults Test must not fail
246 void ControlFeaturesSupportedOomTest(TFeatMgrOomTestMode aMode)
248 RFeatureControl ctrl;
249 TInt err = ctrl.Open();
250 TEST2(err, KErrNone);
251 RFeatureUidArray farray;
252 err = ctrl.ListSupportedFeatures(farray);
253 TEST2(err, KErrNone);
256 TInt failingAllocationNo = 0;
257 TheTest.Printf(_L("Iteration:\r\n"));
258 while(err == KErrNoMemory)
260 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
261 OomPreStep(failingAllocationNo, aMode);
262 RFeatureArray farray2;
264 for(TInt i=0;i<farray.Count() && err==KErrNone;++i)
266 err = farray2.Append(farray[i]);
270 err = ctrl.FeaturesSupported(farray2);
272 if(err != KErrNoMemory)
274 TEST2(err, KErrNone);
275 TInt count = farray2.Count();
276 TheTest.Printf(_L("===Features count: %d\r\n"), count);
284 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
288 @SYMTestCaseID PDS-EFM-CT-4082
289 @SYMTestCaseDesc Include test case 4083 too
290 @SYMTestPriority High
292 @SYMTestExpectedResults Test must not fail
295 void ControlAddFeatureOomTest(TFeatMgrOomTestMode aMode)
297 RFeatureControl ctrl;
298 TInt err = ctrl.Open();
299 TEST2(err, KErrNone);
301 const TUid KNewFeatureUid = {0x7888ABCE};
303 flags.Set(EFeatureSupported);
304 flags.Set(EFeatureModifiable);
305 flags.Set(EFeaturePersisted);
306 TFeatureEntry fentry(KNewFeatureUid, flags, 0x0);
309 TInt failingAllocationNo = 0;
310 TheTest.Printf(_L("Iteration:\r\n"));
311 while(err == KErrNoMemory)
313 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
314 OomPreStep(failingAllocationNo, aMode);
315 err = ctrl.AddFeature(fentry);
317 if(err == KErrNoMemory)
319 err = ctrl.EnableFeature(fentry.FeatureUid());
320 TEST2(err, KErrNotFound);
323 TEST2(err, KErrNone);
324 err = ctrl.DeleteFeature(fentry.FeatureUid());
325 TEST2(err, KErrNone);
328 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
332 @SYMTestCaseID PDS-EFM-CT-4084
333 @SYMTestCaseDesc Include test case 4085 too
334 @SYMTestPriority High
336 @SYMTestExpectedResults Test must not fail
339 void ControlDeleteFeatureOomTest(TFeatMgrOomTestMode aMode)
341 RFeatureControl ctrl;
342 TInt err = ctrl.Open();
343 TEST2(err, KErrNone);
345 const TUid KNewFeatureUid = {0x7888ABCE};
347 flags.Set(EFeatureSupported);
348 flags.Set(EFeatureModifiable);
349 TFeatureEntry fentry(KNewFeatureUid, flags, 0x0);
350 err = ctrl.AddFeature(fentry);
351 TEST2(err, KErrNone);
354 TInt failingAllocationNo = 0;
355 TheTest.Printf(_L("Iteration:\r\n"));
356 while(err == KErrNoMemory)
358 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
359 OomPreStep(failingAllocationNo, aMode);
360 err = ctrl.DeleteFeature(fentry.FeatureUid());
362 if(err == KErrNoMemory)
364 err = ctrl.EnableFeature(fentry.FeatureUid());
365 TEST2(err, KErrNone);
368 TEST2(err, KErrNone);
371 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
374 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
375 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
377 class TTestFeatureObserver : public MFeatureObserver
380 virtual void HandleNotifyChange(TFeatureChangeType /*aType*/, TFeatureEntry /*aFeature*/)
383 virtual void HandleNotifyError(TInt /*aError*/)
389 @SYMTestCaseID PDS-EFM-CT-4086
390 @SYMTestCaseDesc Include test case 4087 too
391 @SYMTestPriority High
393 @SYMTestExpectedResults Test must not fail
396 void NotifierNewLOomTest(TFeatMgrOomTestMode aMode)
398 CActiveScheduler* scheduler = new CActiveScheduler;
399 TEST(scheduler != NULL);
400 CActiveScheduler::Install(scheduler);
402 RFeatureControl ctrl;
403 TInt err = ctrl.Open();
404 TEST2(err, KErrNone);
406 TTestFeatureObserver observer;
408 TInt failingAllocationNo = 0;
409 TheTest.Printf(_L("Iteration:\r\n"));
410 while(err == KErrNoMemory)
412 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
413 OomPreStep(failingAllocationNo, aMode);
414 CFeatureNotifier* notifier = NULL;
415 TRAP(err, notifier = CFeatureNotifier::NewL(observer));
419 TEST2(err, KErrNone);
422 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
426 @SYMTestCaseID PDS-EFM-CT-4088
427 @SYMTestCaseDesc Include test case 4089-4091 too
428 @SYMTestPriority High
430 @SYMTestExpectedResults Test must not fail
433 void NotifierNotifyRequestOomTest(TBool aInvalidFeature, TFeatMgrOomTestMode aMode)
435 CActiveScheduler* scheduler = new CActiveScheduler;
436 TEST(scheduler != NULL);
437 CActiveScheduler::Install(scheduler);
439 RFeatureControl ctrl;
440 TInt err = ctrl.Open();
441 TEST2(err, KErrNone);
443 TTestFeatureObserver observer;
444 CFeatureNotifier* notifier = NULL;
445 TRAP(err, notifier = CFeatureNotifier::NewL(observer));
446 TEST2(err, KErrNone);
448 const TUid KFeatureUid(aInvalidFeature ? KInvalidFeatureUid : KConnectivity);
451 TInt failingAllocationNo = 0;
452 TheTest.Printf(_L("Iteration:\r\n"));
453 while(err == KErrNoMemory)
455 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
456 OomPreStep(failingAllocationNo, aMode);
457 err = notifier->NotifyRequest(KFeatureUid);
458 (void)notifier->NotifyCancelAll();
461 TEST2(err, KErrNone);
465 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
469 @SYMTestCaseID PDS-EFM-CT-4092
470 @SYMTestCaseDesc Include test case 4093 too
471 @SYMTestPriority High
473 @SYMTestExpectedResults Test must not fail
476 void NotifierNotifyRequestsOomTest(TFeatMgrOomTestMode aMode)
478 CActiveScheduler* scheduler = new CActiveScheduler;
479 TEST(scheduler != NULL);
480 CActiveScheduler::Install(scheduler);
482 RFeatureControl ctrl;
483 TInt err = ctrl.Open();
484 TEST2(err, KErrNone);
486 TTestFeatureObserver observer;
487 CFeatureNotifier* notifier = NULL;
488 TRAP(err, notifier = CFeatureNotifier::NewL(observer));
489 TEST2(err, KErrNone);
491 RFeatureUidArray features;
492 err = features.Append(KConnectivity);
493 TEST2(err, KErrNone);
494 err = features.Append(KFax);
495 TEST2(err, KErrNone);
496 err = features.Append(KConnectivity);
497 TEST2(err, KErrNone);
498 err = features.Append(KLocationManagement);
499 TEST2(err, KErrNone);
502 TInt failingAllocationNo = 0;
503 TheTest.Printf(_L("Iteration:\r\n"));
504 while(err == KErrNoMemory)
506 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
507 OomPreStep(failingAllocationNo, aMode);
508 err = notifier->NotifyRequest(features);
509 (void)notifier->NotifyCancelAll();
512 TEST2(err, KErrNone);
517 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
524 TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4068 RFeatureControl::Connect() OOM test"));
525 ControlOpenOomTest(ETrue);
526 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4069 RFeatureControl::Open() OOM test"));
527 ControlOpenOomTest(EFalse);
529 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4070 RFeatureControl::FeatureSupported(UID) + valid feature, client side OOM test"));
530 ControlFeatureSupportedOomTest(ETrue, EFalse, EFeatMgrOomClientTestMode);
531 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4071 RFeatureControl::FeatureSupported(UID) + valid feature, server side OOM test"));
532 ControlFeatureSupportedOomTest(ETrue, EFalse, EFeatMgrOomServerTestMode);
534 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4072 RFeatureControl::FeatureSupported() + valid feature, client side OOM test"));
535 ControlFeatureSupportedOomTest(EFalse, EFalse, EFeatMgrOomClientTestMode);
536 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4073 RFeatureControl::FeatureSupported() + valid feature, server side OOM test"));
537 ControlFeatureSupportedOomTest(EFalse, EFalse, EFeatMgrOomServerTestMode);
539 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4074 RFeatureControl::FeatureSupported(UID) + invalid feature, client side OOM test"));
540 ControlFeatureSupportedOomTest(ETrue, ETrue, EFeatMgrOomClientTestMode);
541 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4075 RFeatureControl::FeatureSupported(UID) + invalid feature, server side OOM test"));
542 ControlFeatureSupportedOomTest(ETrue, ETrue, EFeatMgrOomServerTestMode);
544 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4076 RFeatureControl::FeatureSupported() + invalid feature, client side OOM OOM test"));
545 ControlFeatureSupportedOomTest(EFalse, ETrue, EFeatMgrOomClientTestMode);
546 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4077 RFeatureControl::FeatureSupported() + invalid feature, server side OOM OOM test"));
547 ControlFeatureSupportedOomTest(EFalse, ETrue, EFeatMgrOomServerTestMode);
549 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4078 RFeatureControl::ListSupportedFeatures(), client side OOM test"));
550 ControlListSupportedFeaturesOomTest(EFeatMgrOomClientTestMode);
551 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4079 RFeatureControl::ListSupportedFeatures(), server side OOM test"));
552 ControlListSupportedFeaturesOomTest(EFeatMgrOomServerTestMode);
554 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4080 RFeatureControl::FeaturesSupported(), client side OOM test"));
555 ControlFeaturesSupportedOomTest(EFeatMgrOomClientTestMode);
556 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4081 RFeatureControl::FeaturesSupported(),server side OOM test"));
557 ControlFeaturesSupportedOomTest(EFeatMgrOomServerTestMode);
559 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4082 RFeatureControl::AddFeature(), client side OOM test"));
560 ControlAddFeatureOomTest(EFeatMgrOomClientTestMode);
561 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4083 RFeatureControl::AddFeature(), server side OOM test"));
562 ControlAddFeatureOomTest(EFeatMgrOomServerTestMode);
564 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4084 RFeatureControl::DeleteFeature(), client side OOM test"));
565 ControlDeleteFeatureOomTest(EFeatMgrOomClientTestMode);
566 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4085 RFeatureControl::DeleteFeature(), server side OOM test"));
567 ControlDeleteFeatureOomTest(EFeatMgrOomServerTestMode);
569 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4086 CFeatureNotifier::NewL(), client side OOM test"));
570 NotifierNewLOomTest(EFeatMgrOomClientTestMode);
571 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4087 CFeatureNotifier::NewL(), server side OOM test"));
572 NotifierNewLOomTest(EFeatMgrOomServerTestMode);
574 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4088 CFeatureNotifier::NotifyRequest(), valid feature, client side OOM test"));
575 NotifierNotifyRequestOomTest(ETrue, EFeatMgrOomClientTestMode);
576 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4089 CFeatureNotifier::NotifyRequest(), valid feature, server side OOM test"));
577 NotifierNotifyRequestOomTest(ETrue, EFeatMgrOomServerTestMode);
579 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4090 CFeatureNotifier::NotifyRequest(), invalid feature, client side OOM test"));
580 NotifierNotifyRequestOomTest(EFalse, EFeatMgrOomClientTestMode);
581 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4091 CFeatureNotifier::NotifyRequest(), invalid feature, server side OOM test"));
582 NotifierNotifyRequestOomTest(EFalse, EFeatMgrOomServerTestMode);
584 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4092 CFeatureNotifier::NotifyRequest(<array>), valid feature, client side OOM test"));
585 NotifierNotifyRequestsOomTest(EFeatMgrOomClientTestMode);
586 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4093 CFeatureNotifier::NotifyRequest(<array>), valid feature, server side OOM test"));
587 NotifierNotifyRequestsOomTest(EFeatMgrOomServerTestMode);
594 CTrapCleanup* tc = CTrapCleanup::New();
599 TRAPD(err, DoTestsL());
600 TEST2(err, KErrNone);
609 User::Heap().Check();