os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitionValidation.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitionValidation.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,329 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Implementation of the CDiscoverer transition validation classes.
1.18 +//
1.19 +//
1.20 +
1.21 +// ______________________________________________________________________________
1.22 +//
1.23 +inline TDiscoverer_Ctor_TransitionValidator::TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
1.24 +:TTransitionValidator(aUTContext)
1.25 + {
1.26 + // Do nothing
1.27 + }
1.28 +
1.29 +inline TBool TDiscoverer_Ctor_TransitionValidator::ValidatePreConditions()
1.30 + {
1.31 + // Always true
1.32 + return ETrue;
1.33 + }
1.34 +
1.35 +inline TBool TDiscoverer_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.36 + {
1.37 + if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.38 + return EFalse;
1.39 + return ETrue;
1.40 + }
1.41 +
1.42 +// ______________________________________________________________________________
1.43 +//
1.44 +inline TDiscoverer_Dtor_TransitionValidator::TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
1.45 +:TTransitionValidator(aUTContext)
1.46 + {
1.47 + // Do nothing
1.48 + }
1.49 +
1.50 +inline TBool TDiscoverer_Dtor_TransitionValidator::ValidatePreConditions()
1.51 + {
1.52 + if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.53 + return EFalse;
1.54 + return ETrue;
1.55 + }
1.56 +
1.57 +inline TBool TDiscoverer_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.58 + {
1.59 + return ETrue;
1.60 + }
1.61 +
1.62 +// ______________________________________________________________________________
1.63 +//
1.64 +inline TDiscoverer_MountDriveL_TransitionValidator::TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext)
1.65 +:TTransitionValidator(aUTContext)
1.66 + {
1.67 + // Do nothing
1.68 + }
1.69 +
1.70 +inline TBool TDiscoverer_MountDriveL_TransitionValidator::ValidatePreConditions()
1.71 + {
1.72 + // For mount drive all that is required is that the invariant test is done.
1.73 + if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.74 + return EFalse;
1.75 + return ETrue;
1.76 + }
1.77 +
1.78 +inline TBool TDiscoverer_MountDriveL_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.79 + {
1.80 + // For mount drive.
1.81 + // mount has been signalled to the observer
1.82 + // all that is required is that the invariant test is done.
1.83 + if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.84 + return EFalse;
1.85 + return ETrue;
1.86 + }
1.87 +
1.88 +// ______________________________________________________________________________
1.89 +//
1.90 +inline TDiscoverer_UnmountDrive_TransitionValidator::TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext)
1.91 +:TTransitionValidator(aUTContext)
1.92 + {
1.93 + // Do nothing
1.94 + }
1.95 +
1.96 +inline TBool TDiscoverer_UnmountDrive_TransitionValidator::ValidatePreConditions()
1.97 + {
1.98 + // For unmount drive all that is required is that the invariant test is done.
1.99 + if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.100 + return EFalse;
1.101 + return ETrue;
1.102 + }
1.103 +
1.104 +inline TBool TDiscoverer_UnmountDrive_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.105 + {
1.106 + // For unmount drive
1.107 + // unmount has been signalled to the observer
1.108 + // all that is required is that the invariant test is done.
1.109 + if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.110 + return EFalse;
1.111 + return ETrue;
1.112 + }
1.113 +
1.114 +// ______________________________________________________________________________
1.115 +//
1.116 +inline TDiscoverer_IsValidEntry_TransitionValidator::TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext)
1.117 +:TTransitionValidator(aUTContext)
1.118 + {
1.119 + // Do nothing
1.120 + }
1.121 +
1.122 +inline TBool TDiscoverer_IsValidEntry_TransitionValidator::ValidatePreConditions()
1.123 + {
1.124 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.125 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.126 + return EFalse;
1.127 + return ETrue;
1.128 + }
1.129 +
1.130 +inline TBool TDiscoverer_IsValidEntry_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.131 + {
1.132 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.133 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.134 + return EFalse;
1.135 + return ETrue;
1.136 + }
1.137 +
1.138 +// ______________________________________________________________________________
1.139 +//
1.140 +inline TDiscoverer_ProcessEntryL_TransitionValidator::TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext)
1.141 +:TTransitionValidator(aUTContext)
1.142 + {
1.143 + // Do nothing
1.144 + }
1.145 +
1.146 +inline TBool TDiscoverer_ProcessEntryL_TransitionValidator::ValidatePreConditions()
1.147 + {
1.148 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.149 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.150 + return EFalse;
1.151 + return ETrue;
1.152 + }
1.153 +
1.154 +inline TBool TDiscoverer_ProcessEntryL_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.155 + {
1.156 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.157 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.158 + return EFalse;
1.159 + return ETrue;
1.160 + }
1.161 +
1.162 +// ______________________________________________________________________________
1.163 +//
1.164 +inline TDiscoverer_CompleteNotificationProcessing_TransitionValidator::TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext)
1.165 +:TTransitionValidator(aUTContext)
1.166 + {
1.167 + // Do nothing
1.168 + }
1.169 +
1.170 +inline TBool TDiscoverer_CompleteNotificationProcessing_TransitionValidator::ValidatePreConditions()
1.171 + {
1.172 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.173 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.174 + return EFalse;
1.175 + return ETrue;
1.176 + }
1.177 +
1.178 +inline TBool TDiscoverer_CompleteNotificationProcessing_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.179 + {
1.180 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.181 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.182 + return EFalse;
1.183 + return ETrue;
1.184 + }
1.185 +
1.186 +// ______________________________________________________________________________
1.187 +//
1.188 +inline TDiscoverer_Notification_TransitionValidator::TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext)
1.189 +:TTransitionValidator(aUTContext)
1.190 + {
1.191 + // Do nothing
1.192 + }
1.193 +
1.194 +inline TBool TDiscoverer_Notification_TransitionValidator::ValidatePreConditions()
1.195 + {
1.196 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.197 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.198 + return EFalse;
1.199 + return ETrue;
1.200 + }
1.201 +
1.202 +inline TBool TDiscoverer_Notification_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.203 + {
1.204 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.205 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.206 + return EFalse;
1.207 + return ETrue;
1.208 + }
1.209 +
1.210 +// ______________________________________________________________________________
1.211 +//
1.212 +inline TDiscoverer_Suspend_TransitionValidator::TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext)
1.213 +:TTransitionValidator(aUTContext)
1.214 + {
1.215 + // Do nothing
1.216 + }
1.217 +
1.218 +inline TBool TDiscoverer_Suspend_TransitionValidator::ValidatePreConditions()
1.219 + {
1.220 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.221 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.222 + return EFalse;
1.223 + return ETrue;
1.224 + }
1.225 +
1.226 +inline TBool TDiscoverer_Suspend_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.227 + {
1.228 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.229 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.230 + return EFalse;
1.231 + return ETrue;
1.232 + }
1.233 +
1.234 +// ______________________________________________________________________________
1.235 +//
1.236 +inline TDiscoverer_Resume_TransitionValidator::TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext)
1.237 +:TTransitionValidator(aUTContext)
1.238 + {
1.239 + // Do nothing
1.240 + }
1.241 +
1.242 +inline TBool TDiscoverer_Resume_TransitionValidator::ValidatePreConditions()
1.243 + {
1.244 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.245 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.246 + return EFalse;
1.247 + return ETrue;
1.248 + }
1.249 +
1.250 +inline TBool TDiscoverer_Resume_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.251 + {
1.252 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.253 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.254 + return EFalse;
1.255 + return ETrue;
1.256 + }
1.257 +
1.258 +// ______________________________________________________________________________
1.259 +//
1.260 +inline TDiscoverer_ScanDirectory_TransitionValidator::TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext)
1.261 +:TTransitionValidator(aUTContext)
1.262 + {
1.263 + // Do nothing
1.264 + }
1.265 +
1.266 +inline TBool TDiscoverer_ScanDirectory_TransitionValidator::ValidatePreConditions()
1.267 + {
1.268 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.269 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.270 + return EFalse;
1.271 + return ETrue;
1.272 + }
1.273 +
1.274 +inline TBool TDiscoverer_ScanDirectory_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.275 + {
1.276 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.277 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.278 + return EFalse;
1.279 + return ETrue;
1.280 + }
1.281 +
1.282 +
1.283 +// ______________________________________________________________________________
1.284 +//
1.285 +inline TDiscoverer_ScanDirectoryCancel_TransitionValidator::TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext)
1.286 +:TTransitionValidator(aUTContext)
1.287 + {
1.288 + // Do nothing
1.289 + }
1.290 +
1.291 +inline TBool TDiscoverer_ScanDirectoryCancel_TransitionValidator::ValidatePreConditions()
1.292 + {
1.293 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.294 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.295 + return EFalse;
1.296 + return ETrue;
1.297 + }
1.298 +
1.299 +inline TBool TDiscoverer_ScanDirectoryCancel_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.300 + {
1.301 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.302 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.303 + return EFalse;
1.304 + return ETrue;
1.305 + }
1.306 +
1.307 +
1.308 +// ______________________________________________________________________________
1.309 +//
1.310 +inline TDiscoverer_ScanDirectoryIncrement_TransitionValidator::TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext)
1.311 +:TTransitionValidator(aUTContext)
1.312 + {
1.313 + // Do nothing
1.314 + }
1.315 +
1.316 +inline TBool TDiscoverer_ScanDirectoryIncrement_TransitionValidator::ValidatePreConditions()
1.317 + {
1.318 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.319 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.320 + return EFalse;
1.321 + return ETrue;
1.322 + }
1.323 +
1.324 +inline TBool TDiscoverer_ScanDirectoryIncrement_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
1.325 + {
1.326 + TDiscoverer_StateAccessor& accessor = REINTERPRET_CAST(TDiscoverer_StateAccessor&,iUTContext.StateAccessor());
1.327 + if(accessor.InvariantTest(REINTERPRET_CAST(CDiscoverer_UnitTestContext&,iUTContext).iDiscoverer))
1.328 + return EFalse;
1.329 + return ETrue;
1.330 + }
1.331 +
1.332 +