os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererUnitTest.h
First public contribution.
1 // Copyright (c) 1997-2009 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.
14 // Definition of the CDiscoverer Unit Test classes.
18 #ifndef __DISCOVERERUNITTEST_H__
19 #define __DISCOVERERUNITTEST_H__
22 #include <test_bed/testbeddefinitions.h>
23 #include "DiscovererStateAccessor.h"
24 #include "DiscovererTransitionValidation.h"
25 #include "DiscovererTransitions.h"
27 // ______________________________________________________________________________
32 Comments : Unit Test for CreateAndDestroy on CDiscoverer, the class under test.
34 class CDiscoverer_CreateAndDestroy_UnitTest : public CUnitTest
38 @fn NewL(CDataLogger& aDataLogger,
39 MUnitTestObserver& aObserver)
40 Intended Usage : Standard two-phase construction which leaves nothing on the
42 Error Condition : Leaves with the error code.
45 @param aDataLogger The output logging object.
46 @param aObserver The observer of this UnitTest.
47 @return CDiscoverer_CreateAndDestroy_UnitTest* The constructed object.
49 @post CDiscoverer_CreateAndDestroy_UnitTest is fully constructed, and initialised.
51 static CDiscoverer_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
52 MUnitTestObserver& aObserver);
55 @fn RunError(TInt aError)
56 Intended Usage : Intercept the panic caused by a RunL leave,
57 to restore the CDiscoverer_CreateAndDestroy_UnitTest
58 object to a sensible state.
59 (called by the Active Scheduler immediately before the Panic).
60 Error Condition : @see CUnitTest::RunError().
62 @return TInt KErrNone if cleanup successful, otherwise
63 @see CUnitTest::RunError()
64 @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed, and initialised.
65 @post The object has been restored to a sensible state.
67 inline TInt RunError(TInt aError);
70 @fn ~CDiscoverer_CreateAndDestroy_UnitTest()
71 Intended Usage : Standard Destructor.
72 Error Condition : None.
74 @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
75 @post CDiscoverer_CreateAndDestroy_UnitTest is fully destroyed.
77 ~CDiscoverer_CreateAndDestroy_UnitTest();
80 @fn PrepareUnitTestL()
81 Intended Usage : Called by test framework just before test is run to allow
82 any test preparation to take place.
83 Error Condition : Leaves with an error code.
86 @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
87 @post This unit test is ready to run.
89 void PrepareUnitTestL();
93 @fn CDiscoverer_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
94 MUnitTestObserver& aObserver)
95 Intended Usage : Default constructor.
96 Error Condition : None.
98 @param aDataLogger The output logging object.
99 @param aObserver The observer of this UnitTest.
100 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
102 @post CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
104 inline CDiscoverer_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
105 MUnitTestObserver& aObserver);
108 @fn void ConstructL()
109 Intended Usage : Second phase of safe two phase construction,
110 to complete the object initialisation.
111 Error Condition : Leaves with an error code.
112 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
115 @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
116 @post CDiscoverer_CreateAndDestroy_UnitTest is fully initialised.
121 The context of the Unit Test.
122 i.e The CDiscoverer class tested by this UnitTest's transitions.
124 CDiscoverer_UnitTestContext* iUTContext;
125 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
126 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
127 TDiscoverer_StateAccessor* iStateAccessor;
128 }; // CDiscoverer_CreateAndDestroy_UnitTest
130 // ______________________________________________________________________________
135 Comments : Unit Test for MountDrive on CDiscoverer, the class under test.
137 class CDiscoverer_MountDrive_UnitTest : public CUnitTest
141 @fn NewL(CDataLogger& aDataLogger,
142 MUnitTestObserver& aObserver)
143 Intended Usage : Standard two-phase construction which leaves nothing on the
145 Error Condition : Leaves with the error code.
148 @param aDataLogger The output logging object.
149 @param aObserver The observer of this UnitTest.
150 @return CDiscoverer_MountDrive_UnitTest* The constructed object.
152 @post CDiscoverer_MountDrive_UnitTest is fully constructed, and initialised.
154 static CDiscoverer_MountDrive_UnitTest* NewL(CDataLogger& aDataLogger,
155 MUnitTestObserver& aObserver);
158 @fn RunError(TInt aError)
159 Intended Usage : Intercept the panic caused by a RunL leave,
160 to restore the CDiscoverer_MountDrive_UnitTest
161 object to a sensible state.
162 (called by the Active Scheduler immediately before the Panic).
163 Error Condition : @see CUnitTest::RunError().
165 @return TInt KErrNone if cleanup successful, otherwise
166 @see CUnitTest::RunError()
167 @pre CDiscoverer_MountDrive_UnitTest is fully constructed, and initialised.
168 @post The object has been restored to a sensible state.
170 inline TInt RunError(TInt aError);
173 @fn ~CDiscoverer_MountDrive_UnitTest()
174 Intended Usage : Standard Destructor.
175 Error Condition : None.
177 @pre CDiscoverer_MountDrive_UnitTest is fully constructed.
178 @post CDiscoverer_MountDrive_UnitTest is fully destroyed.
180 ~CDiscoverer_MountDrive_UnitTest();
184 @fn CDiscoverer_MountDrive_UnitTest(CDataLogger& aDataLogger,
185 MUnitTestObserver& aObserver)
186 Intended Usage : Default constructor.
187 Error Condition : None.
189 @param aDataLogger The output logging object.
190 @param aObserver The observer of this UnitTest.
191 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
193 @post CDiscoverer_MountDrive_UnitTest is fully constructed.
195 inline CDiscoverer_MountDrive_UnitTest(CDataLogger& aDataLogger,
196 MUnitTestObserver& aObserver);
199 @fn void ConstructL()
200 Intended Usage : Second phase of safe two phase construction,
201 to complete the object initialisation.
202 Error Condition : Leaves with an error code.
203 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
206 @pre CDiscoverer_MountDrive_UnitTest is fully constructed.
207 @post CDiscoverer_MountDrive_UnitTest is fully initialised.
212 The context of the Unit Test.
213 i.e The CDiscoverer class tested by this UnitTest's transitions.
215 CDiscoverer_UnitTestContext* iUTContext;
216 TDiscoverer_StateAccessor* iStateAccessor;
217 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
218 TDiscoverer_MountDriveL_TransitionValidator* iMountValidator;
219 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
220 }; // CDiscoverer_MountDrive_UnitTest
222 // ______________________________________________________________________________
227 Comments : Unit Test for UnmountDrive on CDiscoverer, the class under test.
229 class CDiscoverer_UnmountDrive_UnitTest : public CUnitTest
233 @fn NewL(CDataLogger& aDataLogger,
234 MUnitTestObserver& aObserver)
235 Intended Usage : Standard two-phase construction which leaves nothing on the
237 Error Condition : Leaves with the error code.
240 @param aDataLogger The output logging object.
241 @param aObserver The observer of this UnitTest.
242 @return CDiscoverer_UnmountDrive_UnitTest* The constructed object.
244 @post CDiscoverer_UnmountDrive_UnitTest is fully constructed, and initialised.
246 static CDiscoverer_UnmountDrive_UnitTest* NewL(CDataLogger& aDataLogger,
247 MUnitTestObserver& aObserver);
250 @fn RunError(TInt aError)
251 Intended Usage : Intercept the panic caused by a RunL leave,
252 to restore the CDiscoverer_UnmountDrive_UnitTest
253 object to a sensible state.
254 (called by the Active Scheduler immediately before the Panic).
255 Error Condition : @see CUnitTest::RunError().
257 @return TInt KErrNone if cleanup successful, otherwise
258 @see CUnitTest::RunError()
259 @pre CDiscoverer_UnmountDrive_UnitTest is fully constructed, and initialised.
260 @post The object has been restored to a sensible state.
262 inline TInt RunError(TInt aError);
265 @fn ~CDiscoverer_UnmountDrive_UnitTest()
266 Intended Usage : Standard Destructor.
267 Error Condition : None.
269 @pre CDiscoverer_UnmountDrive_UnitTest is fully constructed.
270 @post CDiscoverer_UnmountDrive_UnitTest is fully destroyed.
272 ~CDiscoverer_UnmountDrive_UnitTest();
276 @fn CDiscoverer_UnmountDrive_UnitTest(CDataLogger& aDataLogger,
277 MUnitTestObserver& aObserver)
278 Intended Usage : Default constructor.
279 Error Condition : None.
281 @param aDataLogger The output logging object.
282 @param aObserver The observer of this UnitTest.
283 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
285 @post CDiscoverer_UnmountDrive_UnitTest is fully constructed.
287 inline CDiscoverer_UnmountDrive_UnitTest(CDataLogger& aDataLogger,
288 MUnitTestObserver& aObserver);
291 @fn void ConstructL()
292 Intended Usage : Second phase of safe two phase construction,
293 to complete the object initialisation.
294 Error Condition : Leaves with an error code.
295 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
298 @pre CDiscoverer_UnmountDrive_UnitTest is fully constructed.
299 @post CDiscoverer_UnmountDrive_UnitTest is fully initialised.
304 The context of the Unit Test.
305 i.e The CDiscoverer class tested by this UnitTest's transitions.
307 CDiscoverer_UnitTestContext* iUTContext;
308 TDiscoverer_StateAccessor* iStateAccessor;
309 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
310 TDiscoverer_UnmountDrive_TransitionValidator* iUnmountValidator;
311 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
312 }; // CDiscoverer_UnmountDrive_UnitTest
314 // ______________________________________________________________________________
319 Comments : Unit Test for IsValidEntryL on CDiscoverer, the class under test.
321 class CDiscoverer_IsValidEntryL_UnitTest : public CUnitTest
325 @fn NewL(CDataLogger& aDataLogger,
326 MUnitTestObserver& aObserver)
327 Intended Usage : Standard two-phase construction which leaves nothing on the
329 Error Condition : Leaves with the error code.
332 @param aDataLogger The output logging object.
333 @param aObserver The observer of this UnitTest.
334 @return CDiscoverer_IsValidEntryL_UnitTest* The constructed object.
336 @post CDiscoverer_IsValidEntryL_UnitTest is fully constructed, and initialised.
338 static CDiscoverer_IsValidEntryL_UnitTest* NewL(CDataLogger& aDataLogger,
339 MUnitTestObserver& aObserver);
342 @fn RunError(TInt aError)
343 Intended Usage : Intercept the panic caused by a RunL leave,
344 to restore the CDiscoverer_IsValidEntryL_UnitTest
345 object to a sensible state.
346 (called by the Active Scheduler immediately before the Panic).
347 Error Condition : @see CUnitTest::RunError().
349 @return TInt KErrNone if cleanup successful, otherwise
350 @see CUnitTest::RunError()
351 @pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed, and initialised.
352 @post The object has been restored to a sensible state.
354 inline TInt RunError(TInt aError);
357 @fn ~CDiscoverer_IsValidEntryL_UnitTest()
358 Intended Usage : Standard Destructor.
359 Error Condition : None.
361 @pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed.
362 @post CDiscoverer_IsValidEntryL_UnitTest is fully destroyed.
364 ~CDiscoverer_IsValidEntryL_UnitTest();
367 @fn PrepareUnitTestL()
368 Intended Usage : Called by test framework just before test is run to allow
369 any test preparation to take place.
372 @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
373 @post This unit test is ready to run.
375 void PrepareUnitTestL();
379 @fn CDiscoverer_IsValidEntryL_UnitTest(CDataLogger& aDataLogger,
380 MUnitTestObserver& aObserver)
381 Intended Usage : Default constructor.
382 Error Condition : None.
384 @param aDataLogger The output logging object.
385 @param aObserver The observer of this UnitTest.
386 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
388 @post CDiscoverer_IsValidEntryL_UnitTest is fully constructed.
390 inline CDiscoverer_IsValidEntryL_UnitTest(CDataLogger& aDataLogger,
391 MUnitTestObserver& aObserver);
394 @fn void ConstructL()
395 Intended Usage : Second phase of safe two phase construction,
396 to complete the object initialisation.
397 Error Condition : Leaves with an error code.
398 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
401 @pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed.
402 @post CDiscoverer_IsValidEntryL_UnitTest is fully initialised.
407 The context of the Unit Test.
408 i.e The CDiscoverer class tested by this UnitTest's transitions.
410 CDiscoverer_UnitTestContext* iUTContext;
411 TDiscoverer_StateAccessor* iStateAccessor;
412 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
413 TDiscoverer_IsValidEntry_TransitionValidator* iIsValidEntryValidator;
414 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
415 }; // CDiscoverer_IsValidEntryL_UnitTest
417 // ______________________________________________________________________________
422 Comments : Unit Test for ProcessEntryL on CDiscoverer, the class under test.
424 class CDiscoverer_ProcessEntryL_UnitTest : public CUnitTest
428 @fn NewL(CDataLogger& aDataLogger,
429 MUnitTestObserver& aObserver)
430 Intended Usage : Standard two-phase construction which leaves nothing on the
432 Error Condition : Leaves with the error code.
435 @param aDataLogger The output logging object.
436 @param aObserver The observer of this UnitTest.
437 @return CDiscoverer_ProcessEntryL_UnitTest* The constructed object.
439 @post CDiscoverer_ProcessEntryL_UnitTest is fully constructed, and initialised.
441 static CDiscoverer_ProcessEntryL_UnitTest* NewL(CDataLogger& aDataLogger,
442 MUnitTestObserver& aObserver);
445 @fn RunError(TInt aError)
446 Intended Usage : Intercept the panic caused by a RunL leave,
447 to restore the CDiscoverer_ProcessEntryL_UnitTest
448 object to a sensible state.
449 (called by the Active Scheduler immediately before the Panic).
450 Error Condition : @see CUnitTest::RunError().
452 @return TInt KErrNone if cleanup successful, otherwise
453 @see CUnitTest::RunError()
454 @pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed, and initialised.
455 @post The object has been restored to a sensible state.
457 inline TInt RunError(TInt aError);
460 @fn ~CDiscoverer_ProcessEntryL_UnitTest()
461 Intended Usage : Standard Destructor.
462 Error Condition : None.
464 @pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed.
465 @post CDiscoverer_ProcessEntryL_UnitTest is fully destroyed.
467 ~CDiscoverer_ProcessEntryL_UnitTest();
471 @fn CDiscoverer_ProcessEntryL_UnitTest(CDataLogger& aDataLogger,
472 MUnitTestObserver& aObserver)
473 Intended Usage : Default constructor.
474 Error Condition : None.
476 @param aDataLogger The output logging object.
477 @param aObserver The observer of this UnitTest.
478 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
480 @post CDiscoverer_ProcessEntryL_UnitTest is fully constructed.
482 inline CDiscoverer_ProcessEntryL_UnitTest(CDataLogger& aDataLogger,
483 MUnitTestObserver& aObserver);
486 @fn void ConstructL()
487 Intended Usage : Second phase of safe two phase construction,
488 to complete the object initialisation.
489 Error Condition : Leaves with an error code.
490 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
493 @pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed.
494 @post CDiscoverer_ProcessEntryL_UnitTest is fully initialised.
499 The context of the Unit Test.
500 i.e The CDiscoverer class tested by this UnitTest's transitions.
502 CDiscoverer_UnitTestContext* iUTContext;
503 TDiscoverer_StateAccessor* iStateAccessor;
504 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
505 TDiscoverer_ProcessEntryL_TransitionValidator* iProcessEntryValidator;
506 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
507 }; // CDiscoverer_ProcessEntryL_UnitTest
509 // ______________________________________________________________________________
514 Comments : Unit Test for CompleteNotificationProcessing on CDiscoverer, the class under test.
516 class CDiscoverer_CompleteNotificationProcessing_UnitTest : public CUnitTest
520 @fn NewL(CDataLogger& aDataLogger,
521 MUnitTestObserver& aObserver)
522 Intended Usage : Standard two-phase construction which leaves nothing on the
524 Error Condition : Leaves with the error code.
527 @param aDataLogger The output logging object.
528 @param aObserver The observer of this UnitTest.
529 @return CDiscoverer_CompleteNotificationProcessing_UnitTest* The constructed object.
531 @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed, and initialised.
533 static CDiscoverer_CompleteNotificationProcessing_UnitTest* NewL(CDataLogger& aDataLogger,
534 MUnitTestObserver& aObserver);
537 @fn RunError(TInt aError)
538 Intended Usage : Intercept the panic caused by a RunL leave,
539 to restore the CDiscoverer_CompleteNotificationProcessing_UnitTest
540 object to a sensible state.
541 (called by the Active Scheduler immediately before the Panic).
542 Error Condition : @see CUnitTest::RunError().
544 @return TInt KErrNone if cleanup successful, otherwise
545 @see CUnitTest::RunError()
546 @pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed, and initialised.
547 @post The object has been restored to a sensible state.
549 inline TInt RunError(TInt aError);
552 @fn ~CDiscoverer_CompleteNotificationProcessing_UnitTest()
553 Intended Usage : Standard Destructor.
554 Error Condition : None.
556 @pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed.
557 @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully destroyed.
559 ~CDiscoverer_CompleteNotificationProcessing_UnitTest();
563 @fn CDiscoverer_CompleteNotificationProcessing_UnitTest(CDataLogger& aDataLogger,
564 MUnitTestObserver& aObserver)
565 Intended Usage : Default constructor.
566 Error Condition : None.
568 @param aDataLogger The output logging object.
569 @param aObserver The observer of this UnitTest.
570 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
572 @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed.
574 inline CDiscoverer_CompleteNotificationProcessing_UnitTest(CDataLogger& aDataLogger,
575 MUnitTestObserver& aObserver);
578 @fn void ConstructL()
579 Intended Usage : Second phase of safe two phase construction,
580 to complete the object initialisation.
581 Error Condition : Leaves with an error code.
582 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
585 @pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed.
586 @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully initialised.
591 The context of the Unit Test.
592 i.e The CDiscoverer class tested by this UnitTest's transitions.
594 CDiscoverer_UnitTestContext* iUTContext;
595 TDiscoverer_StateAccessor* iStateAccessor;
596 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
597 TDiscoverer_CompleteNotificationProcessing_TransitionValidator* iCompleteNotificationProcessingValidator;
598 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
599 }; // CDiscoverer_CompleteNotificationProcessing_UnitTest
602 // ______________________________________________________________________________
607 Comments : Unit Test for Notification on CDiscoverer, the class under test.
609 class CDiscoverer_Notification_UnitTest : public CUnitTest
613 @fn NewL(CDataLogger& aDataLogger,
614 MUnitTestObserver& aObserver)
615 Intended Usage : Standard two-phase construction which leaves nothing on the
617 Error Condition : Leaves with the error code.
620 @param aDataLogger The output logging object.
621 @param aObserver The observer of this UnitTest.
622 @return CDiscoverer_Notification_UnitTest* The constructed object.
624 @post CDiscoverer_Notification_UnitTest is fully constructed, and initialised.
626 static CDiscoverer_Notification_UnitTest* NewL(CDataLogger& aDataLogger,
627 MUnitTestObserver& aObserver);
630 @fn RunError(TInt aError)
631 Intended Usage : Intercept the panic caused by a RunL leave,
632 to restore the CDiscoverer_Notification_UnitTest
633 object to a sensible state.
634 (called by the Active Scheduler immediately before the Panic).
635 Error Condition : @see CUnitTest::RunError().
637 @return TInt KErrNone if cleanup successful, otherwise
638 @see CUnitTest::RunError()
639 @pre CDiscoverer_Notification_UnitTest is fully constructed, and initialised.
640 @post The object has been restored to a sensible state.
642 inline TInt RunError(TInt aError);
645 @fn ~CDiscoverer_Notification_UnitTest()
646 Intended Usage : Standard Destructor.
647 Error Condition : None.
649 @pre CDiscoverer_Notification_UnitTest is fully constructed.
650 @post CDiscoverer_Notification_UnitTest is fully destroyed.
652 ~CDiscoverer_Notification_UnitTest();
656 @fn CDiscoverer_Notification_UnitTest(CDataLogger& aDataLogger,
657 MUnitTestObserver& aObserver)
658 Intended Usage : Default constructor.
659 Error Condition : None.
661 @param aDataLogger The output logging object.
662 @param aObserver The observer of this UnitTest.
663 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
665 @post CDiscoverer_Notification_UnitTest is fully constructed.
667 inline CDiscoverer_Notification_UnitTest(CDataLogger& aDataLogger,
668 MUnitTestObserver& aObserver);
671 @fn void ConstructL()
672 Intended Usage : Second phase of safe two phase construction,
673 to complete the object initialisation.
674 Error Condition : Leaves with an error code.
675 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
678 @pre CDiscoverer_Notification_UnitTest is fully constructed.
679 @post CDiscoverer_Notification_UnitTest is fully initialised.
684 The context of the Unit Test.
685 i.e The CDiscoverer class tested by this UnitTest's transitions.
687 CDiscoverer_UnitTestContext* iUTContext;
688 TDiscoverer_StateAccessor* iStateAccessor;
689 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
690 TDiscoverer_Notification_TransitionValidator* iNotificationValidator;
691 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
692 }; // CDiscoverer_Notification_UnitTest
696 // ______________________________________________________________________________
701 Comments : Unit Test for SuspendResume on CDiscoverer, the class under test.
704 class CDiscoverer_SuspendResume_UnitTest : public CUnitTest
708 @fn NewL(CDataLogger& aDataLogger,
709 MUnitTestObserver& aObserver)
710 Intended Usage : Standard two-phase construction which leaves nothing on the
712 Error Condition : Leaves with the error code.
715 @param aDataLogger The output logging object.
716 @param aObserver The observer of this UnitTest.
717 @return CDiscoverer_SuspendResume_UnitTest* The constructed object.
719 @post CDiscoverer_SuspendResume_UnitTest is fully constructed, and initialised.
721 static CDiscoverer_SuspendResume_UnitTest* NewL(CDataLogger& aDataLogger,
722 MUnitTestObserver& aObserver);
725 @fn RunError(TInt aError)
726 Intended Usage : Intercept the panic caused by a RunL leave,
727 to restore the CDiscoverer_SuspendResume_UnitTest
728 object to a sensible state.
729 (called by the Active Scheduler immediately before the Panic).
730 Error Condition : @see CUnitTest::RunError().
732 @return TInt KErrNone if cleanup successful, otherwise
733 @see CUnitTest::RunError()
734 @pre CDiscoverer_SuspendResume_UnitTest is fully constructed, and initialised.
735 @post The object has been restored to a sensible state.
737 inline TInt RunError(TInt aError);
740 @fn ~CDiscoverer_SuspendResume_UnitTest()
741 Intended Usage : Standard Destructor.
742 Error Condition : None.
744 @pre CDiscoverer_SuspendResume_UnitTest is fully constructed.
745 @post CDiscoverer_SuspendResume_UnitTest is fully destroyed.
747 ~CDiscoverer_SuspendResume_UnitTest();
751 @fn CDiscoverer_SuspendResume_UnitTest(CDataLogger& aDataLogger,
752 MUnitTestObserver& aObserver)
753 Intended Usage : Default constructor.
754 Error Condition : None.
756 @param aDataLogger The output logging object.
757 @param aObserver The observer of this UnitTest.
758 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
760 @post CDiscoverer_SuspendResume_UnitTest is fully constructed.
762 inline CDiscoverer_SuspendResume_UnitTest(CDataLogger& aDataLogger,
763 MUnitTestObserver& aObserver);
766 @fn void ConstructL()
767 Intended Usage : Second phase of safe two phase construction,
768 to complete the object initialisation.
769 Error Condition : Leaves with an error code.
770 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
773 @pre CDiscoverer_SuspendResume_UnitTest is fully constructed.
774 @post CDiscoverer_SuspendResume_UnitTest is fully initialised.
779 The context of the Unit Test.
780 i.e The CDiscoverer class tested by this UnitTest's transitions.
782 CDiscoverer_UnitTestContext* iUTContext;
783 TDiscoverer_StateAccessor* iStateAccessor;
784 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
785 TDiscoverer_Notification_TransitionValidator* iNotificationValidator;
786 TDiscoverer_Suspend_TransitionValidator* iSuspendValidator;
787 TDiscoverer_Resume_TransitionValidator* iResumeValidator;
788 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
789 }; // CDiscoverer_SuspendResume_UnitTest
791 // ______________________________________________________________________________
796 Comments : Unit Test for ScanDirectory on CDiscoverer, the class under test.
798 class CDiscoverer_ScanDirectory_UnitTest : public CUnitTest
802 @fn NewL(CDataLogger& aDataLogger,
803 MUnitTestObserver& aObserver)
804 Intended Usage : Standard two-phase construction which leaves nothing on the
806 Error Condition : Leaves with the error code.
809 @param aDataLogger The output logging object.
810 @param aObserver The observer of this UnitTest.
811 @return CDiscoverer_ScanDirectory_UnitTest* The constructed object.
813 @post CDiscoverer_ScanDirectory_UnitTest is fully constructed, and initialised.
815 static CDiscoverer_ScanDirectory_UnitTest* NewL(CDataLogger& aDataLogger,
816 MUnitTestObserver& aObserver);
819 @fn RunError(TInt aError)
820 Intended Usage : Intercept the panic caused by a RunL leave,
821 to restore the CDiscoverer_ScanDirectory_UnitTest
822 object to a sensible state.
823 (called by the Active Scheduler immediately before the Panic).
824 Error Condition : @see CUnitTest::RunError().
826 @return TInt KErrNone if cleanup successful, otherwise
827 @see CUnitTest::RunError()
828 @pre CDiscoverer_ScanDirectory_UnitTest is fully constructed, and initialised.
829 @post The object has been restored to a sensible state.
831 inline TInt RunError(TInt aError);
834 @fn ~CDiscoverer_ScanDirectory_UnitTest()
835 Intended Usage : Standard Destructor.
836 Error Condition : None.
838 @pre CDiscoverer_ScanDirectory_UnitTest is fully constructed.
839 @post CDiscoverer_ScanDirectory_UnitTest is fully destroyed.
841 ~CDiscoverer_ScanDirectory_UnitTest();
845 @fn CDiscoverer_ScanDirectory_UnitTest(CDataLogger& aDataLogger,
846 MUnitTestObserver& aObserver)
847 Intended Usage : Default constructor.
848 Error Condition : None.
850 @param aDataLogger The output logging object.
851 @param aObserver The observer of this UnitTest.
852 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
854 @post CDiscoverer_ScanDirectory_UnitTest is fully constructed.
856 inline CDiscoverer_ScanDirectory_UnitTest(CDataLogger& aDataLogger,
857 MUnitTestObserver& aObserver);
860 @fn void ConstructL()
861 Intended Usage : Second phase of safe two phase construction,
862 to complete the object initialisation.
863 Error Condition : Leaves with an error code.
864 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
867 @pre CDiscoverer_ScanDirectory_UnitTest is fully constructed.
868 @post CDiscoverer_ScanDirectory_UnitTest is fully initialised.
873 The context of the Unit Test.
874 i.e The CDiscoverer class tested by this UnitTest's transitions.
876 CDiscoverer_UnitTestContext* iUTContext;
877 TDiscoverer_StateAccessor* iStateAccessor;
878 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
879 TDiscoverer_ScanDirectory_TransitionValidator* iScanDirectoryValidator;
880 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
881 }; // CDiscoverer_ScanDirectory_UnitTest
884 // ______________________________________________________________________________
889 Comments : Unit Test for ScanDirectoryCancel on CDiscoverer, the class under test.
892 class CDiscoverer_ScanDirectoryCancel_UnitTest : public CUnitTest
896 @fn NewL(CDataLogger& aDataLogger,
897 MUnitTestObserver& aObserver)
898 Intended Usage : Standard two-phase construction which leaves nothing on the
900 Error Condition : Leaves with the error code.
903 @param aDataLogger The output logging object.
904 @param aObserver The observer of this UnitTest.
905 @return CDiscoverer_ScanDirectoryCancel_UnitTest* The constructed object.
907 @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed, and initialised.
909 static CDiscoverer_ScanDirectoryCancel_UnitTest* NewL(CDataLogger& aDataLogger,
910 MUnitTestObserver& aObserver);
913 @fn RunError(TInt aError)
914 Intended Usage : Intercept the panic caused by a RunL leave,
915 to restore the CDiscoverer_ScanDirectoryCancel_UnitTest
916 object to a sensible state.
917 (called by the Active Scheduler immediately before the Panic).
918 Error Condition : @see CUnitTest::RunError().
920 @return TInt KErrNone if cleanup successful, otherwise
921 @see CUnitTest::RunError()
922 @pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed, and initialised.
923 @post The object has been restored to a sensible state.
925 inline TInt RunError(TInt aError);
928 @fn ~CDiscoverer_ScanDirectoryCancel_UnitTest()
929 Intended Usage : Standard Destructor.
930 Error Condition : None.
932 @pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed.
933 @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully destroyed.
935 ~CDiscoverer_ScanDirectoryCancel_UnitTest();
939 @fn CDiscoverer_ScanDirectoryCancel_UnitTest(CDataLogger& aDataLogger,
940 MUnitTestObserver& aObserver)
941 Intended Usage : Default constructor.
942 Error Condition : None.
944 @param aDataLogger The output logging object.
945 @param aObserver The observer of this UnitTest.
946 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
948 @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed.
950 inline CDiscoverer_ScanDirectoryCancel_UnitTest(CDataLogger& aDataLogger,
951 MUnitTestObserver& aObserver);
954 @fn void ConstructL()
955 Intended Usage : Second phase of safe two phase construction,
956 to complete the object initialisation.
957 Error Condition : Leaves with an error code.
958 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
961 @pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed.
962 @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully initialised.
967 The context of the Unit Test.
968 i.e The CDiscoverer class tested by this UnitTest's transitions.
970 CDiscoverer_UnitTestContext* iUTContext;
971 TDiscoverer_StateAccessor* iStateAccessor;
972 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
973 TDiscoverer_ScanDirectoryCancel_TransitionValidator* iScanDirectoryCancelValidator;
974 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
975 }; // CDiscoverer_ScanDirectoryCancel_UnitTest
978 // ______________________________________________________________________________
983 Comments : Unit Test for ScanDirectoryIncrement on CDiscoverer, the class under test.
985 class CDiscoverer_ScanDirectoryIncrement_UnitTest : public CUnitTest
989 @fn NewL(CDataLogger& aDataLogger,
990 MUnitTestObserver& aObserver)
991 Intended Usage : Standard two-phase construction which leaves nothing on the
993 Error Condition : Leaves with the error code.
996 @param aDataLogger The output logging object.
997 @param aObserver The observer of this UnitTest.
998 @return CDiscoverer_ScanDirectoryIncrement_UnitTest* The constructed object.
1000 @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed, and initialised.
1002 static CDiscoverer_ScanDirectoryIncrement_UnitTest* NewL(CDataLogger& aDataLogger,
1003 MUnitTestObserver& aObserver);
1006 @fn RunError(TInt aError)
1007 Intended Usage : Intercept the panic caused by a RunL leave,
1008 to restore the CDiscoverer_ScanDirectoryIncrement_UnitTest
1009 object to a sensible state.
1010 (called by the Active Scheduler immediately before the Panic).
1011 Error Condition : @see CUnitTest::RunError().
1013 @return TInt KErrNone if cleanup successful, otherwise
1014 @see CUnitTest::RunError()
1015 @pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed, and initialised.
1016 @post The object has been restored to a sensible state.
1018 inline TInt RunError(TInt aError);
1021 @fn ~CDiscoverer_ScanDirectoryIncrement_UnitTest()
1022 Intended Usage : Standard Destructor.
1023 Error Condition : None.
1025 @pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed.
1026 @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully destroyed.
1028 ~CDiscoverer_ScanDirectoryIncrement_UnitTest();
1032 @fn CDiscoverer_ScanDirectoryIncrement_UnitTest(CDataLogger& aDataLogger,
1033 MUnitTestObserver& aObserver)
1034 Intended Usage : Default constructor.
1035 Error Condition : None.
1037 @param aDataLogger The output logging object.
1038 @param aObserver The observer of this UnitTest.
1039 @param aStateAccessor WhiteBox state access to the CDiscoverer class.
1041 @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed.
1043 inline CDiscoverer_ScanDirectoryIncrement_UnitTest(CDataLogger& aDataLogger,
1044 MUnitTestObserver& aObserver);
1047 @fn void ConstructL()
1048 Intended Usage : Second phase of safe two phase construction,
1049 to complete the object initialisation.
1050 Error Condition : Leaves with an error code.
1051 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1054 @pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed.
1055 @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully initialised.
1060 The context of the Unit Test.
1061 i.e The CDiscoverer class tested by this UnitTest's transitions.
1063 CDiscoverer_UnitTestContext* iUTContext;
1064 TDiscoverer_StateAccessor* iStateAccessor;
1065 TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
1066 TDiscoverer_ScanDirectoryIncrement_TransitionValidator* iScanDirectoryIncrementValidator;
1067 TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
1068 }; // CDiscoverer_ScanDirectoryIncrement_UnitTest
1070 #include "DiscovererUnitTest.inl"
1072 #endif // __DISCOVERERUNITTEST_H__