sl@0
|
1 |
// Copyright (c) 1997-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 |
// Implementations for the transition validation classes for ECom
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// ______________________________________________________________________________
|
sl@0
|
19 |
//
|
sl@0
|
20 |
inline TExampleInterface_Ctor_TransitionValidator::TExampleInterface_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
21 |
:TTransitionValidator(aUTContext)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
// Do nothing
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
inline TBool TExampleInterface_Ctor_TransitionValidator::ValidatePreConditions()
|
sl@0
|
27 |
{
|
sl@0
|
28 |
return ETrue;
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
inline TBool TExampleInterface_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
CExampleInterface_UnitTestContext& context =
|
sl@0
|
34 |
REINTERPRET_CAST(CExampleInterface_UnitTestContext&,iUTContext);
|
sl@0
|
35 |
TExampleInterface_StateAccessor& accessor =
|
sl@0
|
36 |
REINTERPRET_CAST(TExampleInterface_StateAccessor&, iUTContext.StateAccessor());
|
sl@0
|
37 |
|
sl@0
|
38 |
_LIT(KTUidMessage, "Created an implementation with uid = 0x%x");
|
sl@0
|
39 |
TUid implUid = accessor.GetDtorKey(context.iExampleInterface);
|
sl@0
|
40 |
context.DataLogger().LogInformationWithParameters(KTUidMessage, implUid.iUid);
|
sl@0
|
41 |
if(accessor.InvariantTest(context.iExampleInterface))
|
sl@0
|
42 |
return EFalse;
|
sl@0
|
43 |
return ETrue;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
// ______________________________________________________________________________
|
sl@0
|
47 |
//
|
sl@0
|
48 |
inline TExampleInterface_Dtor_TransitionValidator::TExampleInterface_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
49 |
:TTransitionValidator(aUTContext)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
// Do nothing
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
inline TBool TExampleInterface_Dtor_TransitionValidator::ValidatePreConditions()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CExampleInterface_UnitTestContext&,iUTContext).iExampleInterface))
|
sl@0
|
57 |
return EFalse;
|
sl@0
|
58 |
return ETrue;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
inline TBool TExampleInterface_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return ETrue;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
// ______________________________________________________________________________
|
sl@0
|
67 |
//
|
sl@0
|
68 |
inline TExampleInterface_ListImplementations_TransitionValidator::TExampleInterface_ListImplementations_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
69 |
:TTransitionValidator(aUTContext)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
// Do nothing
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
inline TBool TExampleInterface_ListImplementations_TransitionValidator::ValidatePreConditions()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
// static function so there are no preconditions
|
sl@0
|
77 |
return ETrue;
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
inline TBool TExampleInterface_ListImplementations_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
CExampleInterface_UnitTestContext& context = REINTERPRET_CAST(CExampleInterface_UnitTestContext&,
|
sl@0
|
83 |
iUTContext);
|
sl@0
|
84 |
const TInt count = context.iImplementations.Count();
|
sl@0
|
85 |
_LIT(KImplementationsReturned,"List Implementations transition returned %d implementations");
|
sl@0
|
86 |
context.DataLogger().LogInformationWithParameters(KImplementationsReturned,count);
|
sl@0
|
87 |
for(TInt i = 0; i < count; ++i)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
CImplementationInformation* info = (context.iImplementations)[i];
|
sl@0
|
90 |
context.DataLogger().LogInformation(info->DisplayName());
|
sl@0
|
91 |
context.DataLogger().LogInformation(info->DataType());
|
sl@0
|
92 |
_LIT(KVersionLogLine,"Version number = %d");
|
sl@0
|
93 |
context.DataLogger().LogInformationWithParameters(KVersionLogLine,info->Version());
|
sl@0
|
94 |
}
|
sl@0
|
95 |
return ETrue;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
// ______________________________________________________________________________
|
sl@0
|
99 |
//
|
sl@0
|
100 |
inline TExampleInterface_Default_TransitionValidator::TExampleInterface_Default_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
101 |
:TTransitionValidator(aUTContext)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
// Do nothing
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
inline TBool TExampleInterface_Default_TransitionValidator::ValidatePreConditions()
|
sl@0
|
107 |
{
|
sl@0
|
108 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CExampleInterface_UnitTestContext&,iUTContext).iExampleInterface))
|
sl@0
|
109 |
return EFalse;
|
sl@0
|
110 |
return ETrue;
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
inline TBool TExampleInterface_Default_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CExampleInterface_UnitTestContext&,iUTContext).iExampleInterface))
|
sl@0
|
116 |
return EFalse;
|
sl@0
|
117 |
return ETrue;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|