os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerUnitTest.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerUnitTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,363 @@
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 +// The unit test class implementations for the CDataLogger class.
1.18 +//
1.19 +//
1.20 +
1.21 +#include "DataLoggerUnitTest.h"
1.22 +
1.23 +// ______________________________________________________________________________
1.24 +//
1.25 +_LIT(KDataLoggerCreateAndDestroyUnitTest,"CDataLogger_CreateAndDestroy_UnitTest");
1.26 +
1.27 +CDataLogger_CreateAndDestroy_UnitTest* CDataLogger_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
1.28 + MUnitTestObserver& aObserver)
1.29 + {
1.30 + CDataLogger_CreateAndDestroy_UnitTest* self =
1.31 + new(ELeave) CDataLogger_CreateAndDestroy_UnitTest(aDataLogger,
1.32 + aObserver);
1.33 + CleanupStack::PushL(self);
1.34 + self->ConstructL();
1.35 + CleanupStack::Pop();
1.36 + return self;
1.37 + }
1.38 +
1.39 +inline TInt CDataLogger_CreateAndDestroy_UnitTest::RunError(TInt aError)
1.40 + {
1.41 + // The RunL left so chain to the base first and then cleanup
1.42 + TInt error = CUnitTest::RunError(aError); // Chain to base
1.43 + delete iUTContext;
1.44 + iUTContext = NULL;
1.45 + delete iStateAccessor;
1.46 + iStateAccessor = NULL;
1.47 + /* delete any validators used */
1.48 + delete iCtorValidator;
1.49 + iCtorValidator = NULL;
1.50 + delete iDtorValidator;
1.51 + iDtorValidator = NULL;
1.52 + return error;
1.53 + }
1.54 +
1.55 +inline CDataLogger_CreateAndDestroy_UnitTest::~CDataLogger_CreateAndDestroy_UnitTest()
1.56 + {
1.57 + // Simply delete our test class instance
1.58 + delete iUTContext;
1.59 + delete iStateAccessor;
1.60 + /* delete any validators used */
1.61 + delete iCtorValidator;
1.62 + delete iDtorValidator;
1.63 + }
1.64 +
1.65 +inline CDataLogger_CreateAndDestroy_UnitTest::CDataLogger_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.66 + MUnitTestObserver& aObserver)
1.67 +: CUnitTest(KDataLoggerCreateAndDestroyUnitTest, aDataLogger, aObserver)
1.68 + {
1.69 + //Do nothing
1.70 + }
1.71 +
1.72 +// Now the Individual transitions need to be added.
1.73 +inline void CDataLogger_CreateAndDestroy_UnitTest::ConstructL()
1.74 + {
1.75 + // Perform the base class initialization
1.76 + UnitTestConstructL();
1.77 +
1.78 + // Create the Unit test state accessor
1.79 + iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
1.80 + // Construct the Unit test context.
1.81 + iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
1.82 +
1.83 + // Add the Transitions in the order they are to run
1.84 + // C'tor first, D'tor last...
1.85 + iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
1.86 + iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
1.87 +
1.88 + AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
1.89 + AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
1.90 + }
1.91 +
1.92 +// ______________________________________________________________________________
1.93 +//
1.94 +_LIT(KDataLoggerDumpMemoryBlockUnitTest,"CDataLogger_DumpMemoryBlock_UnitTest");
1.95 +
1.96 +CDataLogger_DumpMemoryBlock_UnitTest* CDataLogger_DumpMemoryBlock_UnitTest::NewL(CDataLogger& aDataLogger,
1.97 + MUnitTestObserver& aObserver)
1.98 + {
1.99 + CDataLogger_DumpMemoryBlock_UnitTest* self =
1.100 + new(ELeave) CDataLogger_DumpMemoryBlock_UnitTest(aDataLogger,
1.101 + aObserver);
1.102 + CleanupStack::PushL(self);
1.103 + self->ConstructL();
1.104 + CleanupStack::Pop();
1.105 + return self;
1.106 + }
1.107 +
1.108 +inline TInt CDataLogger_DumpMemoryBlock_UnitTest::RunError(TInt aError)
1.109 + {
1.110 + // The RunL left so chain to the base first and then cleanup
1.111 + TInt error = CUnitTest::RunError(aError); // Chain to base
1.112 + delete iUTContext;
1.113 + iUTContext = NULL;
1.114 + delete iStateAccessor;
1.115 + iStateAccessor = NULL;
1.116 + /* delete any validators used */
1.117 + delete iCtorValidator;
1.118 + iCtorValidator = NULL;
1.119 + delete iDumpMemoryBlockValidator;
1.120 + iDumpMemoryBlockValidator = NULL;
1.121 + delete iDtorValidator;
1.122 + iDtorValidator = NULL;
1.123 + return error;
1.124 + }
1.125 +
1.126 +inline CDataLogger_DumpMemoryBlock_UnitTest::~CDataLogger_DumpMemoryBlock_UnitTest()
1.127 + {
1.128 + // Simply delete our test class instance
1.129 + delete iUTContext;
1.130 + delete iStateAccessor;
1.131 + /* delete any validators used */
1.132 + delete iCtorValidator;
1.133 + delete iDumpMemoryBlockValidator;
1.134 + delete iDtorValidator;
1.135 + }
1.136 +
1.137 +inline CDataLogger_DumpMemoryBlock_UnitTest::CDataLogger_DumpMemoryBlock_UnitTest(CDataLogger& aDataLogger,
1.138 + MUnitTestObserver& aObserver)
1.139 +: CUnitTest(KDataLoggerDumpMemoryBlockUnitTest, aDataLogger, aObserver)
1.140 + {
1.141 + //Do nothing
1.142 + }
1.143 +
1.144 +// Now the Individual transitions need to be added.
1.145 +inline void CDataLogger_DumpMemoryBlock_UnitTest::ConstructL()
1.146 + {
1.147 + // Perform the base class initialization
1.148 + UnitTestConstructL();
1.149 +
1.150 + // Create the Unit test state accessor
1.151 + iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
1.152 + // Construct the Unit test context.
1.153 + iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
1.154 +
1.155 + // Set the address of the block to be logged as the address of the literal
1.156 + _LIT8(KDumpedText, "Text dumped by the DumpMemoryBlock method");
1.157 + iUTContext->iAddress = KDumpedText().Ptr();
1.158 +
1.159 + // Set the number of bytes to be logged to as the length of the text to be dumped
1.160 + TInt byteLength = KDumpedText().Length();
1.161 + iUTContext->iLength = byteLength;
1.162 +
1.163 + // Add the Transitions in the order they are to run
1.164 + // C'tor first, D'tor last...
1.165 + iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
1.166 + iDumpMemoryBlockValidator = new(ELeave) TDataLogger_DumpMemoryBlock_TransitionValidator(*iUTContext);
1.167 + iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
1.168 +
1.169 + AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
1.170 + AddTransitionL(new(ELeave)CDataLogger_DumpMemoryBlock_Transition(*iUTContext,*iDumpMemoryBlockValidator));
1.171 + AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
1.172 + }
1.173 +
1.174 +// ______________________________________________________________________________
1.175 +//
1.176 +_LIT(KDataLoggerLogInformationUnitTest,"CDataLogger_LogInformation_UnitTest");
1.177 +
1.178 +CDataLogger_LogInformation_UnitTest* CDataLogger_LogInformation_UnitTest::NewL(CDataLogger& aDataLogger,
1.179 + MUnitTestObserver& aObserver)
1.180 + {
1.181 + CDataLogger_LogInformation_UnitTest* self =
1.182 + new(ELeave) CDataLogger_LogInformation_UnitTest(aDataLogger,
1.183 + aObserver);
1.184 + CleanupStack::PushL(self);
1.185 + self->ConstructL();
1.186 + CleanupStack::Pop();
1.187 + return self;
1.188 + }
1.189 +
1.190 +inline TInt CDataLogger_LogInformation_UnitTest::RunError(TInt aError)
1.191 + {
1.192 + // The RunL left so chain to the base first and then cleanup
1.193 + TInt error = CUnitTest::RunError(aError); // Chain to base
1.194 + delete iUTContext;
1.195 + iUTContext = NULL;
1.196 + delete iStateAccessor;
1.197 + iStateAccessor = NULL;
1.198 + /* delete any validators used */
1.199 + delete iCtorValidator;
1.200 + iCtorValidator = NULL;
1.201 + delete iLogInformationValidator;
1.202 + iLogInformationValidator = NULL;
1.203 + delete iLogInformationNarrowValidator;
1.204 + iLogInformationNarrowValidator =NULL;
1.205 + delete iLogInformationWithParametersValidator;
1.206 + iLogInformationWithParametersValidator = NULL;
1.207 + delete iLogInformationWithParametersNarrowValidator;
1.208 + iLogInformationWithParametersNarrowValidator = NULL;
1.209 + delete iDtorValidator;
1.210 + iDtorValidator = NULL;
1.211 +
1.212 + return error;
1.213 + }
1.214 +
1.215 +inline CDataLogger_LogInformation_UnitTest::~CDataLogger_LogInformation_UnitTest()
1.216 + {
1.217 + // Simply delete our test class instance
1.218 + delete iUTContext;
1.219 + delete iStateAccessor;
1.220 + /* delete any validators used */
1.221 + delete iCtorValidator;
1.222 + delete iLogInformationValidator;
1.223 + delete iLogInformationNarrowValidator;
1.224 + delete iLogInformationWithParametersValidator;
1.225 + delete iLogInformationWithParametersNarrowValidator;
1.226 + delete iDtorValidator;
1.227 + }
1.228 +
1.229 +inline CDataLogger_LogInformation_UnitTest::CDataLogger_LogInformation_UnitTest(CDataLogger& aDataLogger,
1.230 + MUnitTestObserver& aObserver)
1.231 +: CUnitTest(KDataLoggerLogInformationUnitTest, aDataLogger, aObserver)
1.232 + {
1.233 + //Do nothing
1.234 + }
1.235 +
1.236 +// Now the Individual transitions need to be added.
1.237 +inline void CDataLogger_LogInformation_UnitTest::ConstructL()
1.238 + {
1.239 + // Perform the base class initialization
1.240 + UnitTestConstructL();
1.241 +
1.242 + // Create the Unit test state accessor
1.243 + iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
1.244 + // Construct the Unit test context.
1.245 + iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
1.246 +
1.247 + // Wide descriptor to be used as passed in parameter in LogInformationWithParameters transition
1.248 + _LIT(KTextWide,"Parameter - wide descriptor version");
1.249 + HBufC* hptr1 = KTextWide().AllocL();
1.250 + iUTContext->iArg = hptr1;
1.251 +
1.252 + // Narrow descriptor to be used as passed in parameter in LogInformationWithParametersNarrow transition
1.253 + _LIT8(KTextNarrow,"Parameter - narrow descriptor version");
1.254 + HBufC8* hptr2 = KTextNarrow().AllocL();;
1.255 + iUTContext->iArgNarrow = hptr2;
1.256 +
1.257 + // Add the Transitions in the order they are to run
1.258 + // C'tor first, D'tor last...
1.259 + iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
1.260 + iLogInformationValidator = new(ELeave) TDataLogger_LogInformation_TransitionValidator(*iUTContext);
1.261 + iLogInformationNarrowValidator = new(ELeave) TDataLogger_LogInformationNarrow_TransitionValidator(*iUTContext);
1.262 + iLogInformationWithParametersValidator = new(ELeave) TDataLogger_LogInformationWithParameters_TransitionValidator(*iUTContext);
1.263 + iLogInformationWithParametersNarrowValidator = new(ELeave) TDataLogger_LogInformationWithParametersNarrow_TransitionValidator(*iUTContext);
1.264 + iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
1.265 +
1.266 + AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
1.267 + AddTransitionL(new(ELeave)CDataLogger_LogInformation_Transition(*iUTContext,*iLogInformationValidator));
1.268 + AddTransitionL(new(ELeave)CDataLogger_LogInformationNarrow_Transition(*iUTContext,*iLogInformationNarrowValidator));
1.269 + AddTransitionL(new(ELeave)CDataLogger_LogInformationWithParameters_Transition(*iUTContext,*iLogInformationWithParametersValidator));
1.270 + AddTransitionL(new(ELeave)CDataLogger_LogInformationWithParametersNarrow_Transition(*iUTContext,*iLogInformationWithParametersNarrowValidator));
1.271 + AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
1.272 + }
1.273 +
1.274 +// ______________________________________________________________________________
1.275 +//
1.276 +_LIT(KDataLoggerReportInformationUnitTest,"CDataLogger_ReportInformation_UnitTest");
1.277 +
1.278 +CDataLogger_ReportInformation_UnitTest* CDataLogger_ReportInformation_UnitTest::NewL(CDataLogger& aDataLogger,
1.279 + MUnitTestObserver& aObserver)
1.280 + {
1.281 + CDataLogger_ReportInformation_UnitTest* self =
1.282 + new(ELeave) CDataLogger_ReportInformation_UnitTest(aDataLogger,
1.283 + aObserver);
1.284 + CleanupStack::PushL(self);
1.285 + self->ConstructL();
1.286 + CleanupStack::Pop();
1.287 + return self;
1.288 + }
1.289 +
1.290 +inline TInt CDataLogger_ReportInformation_UnitTest::RunError(TInt aError)
1.291 + {
1.292 + // The RunL left so chain to the base first and then cleanup
1.293 + TInt error = CUnitTest::RunError(aError); // Chain to base
1.294 + delete iUTContext;
1.295 + iUTContext = NULL;
1.296 + delete iStateAccessor;
1.297 + iStateAccessor = NULL;
1.298 + /* delete any validators used */
1.299 + delete iCtorValidator;
1.300 + iCtorValidator = NULL;
1.301 + delete iReportInformationValidator;
1.302 + iReportInformationValidator = NULL;
1.303 + delete iReportInformationWithParametersValidator;
1.304 + iReportInformationWithParametersValidator = NULL;
1.305 + delete iDtorValidator;
1.306 + iDtorValidator = NULL;
1.307 +
1.308 + return error;
1.309 + }
1.310 +
1.311 +inline CDataLogger_ReportInformation_UnitTest::~CDataLogger_ReportInformation_UnitTest()
1.312 + {
1.313 + // Simply delete our test class instance
1.314 + delete iUTContext;
1.315 + delete iStateAccessor;
1.316 + /* delete any validators used */
1.317 + delete iCtorValidator;
1.318 + delete iReportInformationValidator;
1.319 + delete iReportInformationWithParametersValidator;
1.320 + delete iDtorValidator;
1.321 + }
1.322 +
1.323 +inline CDataLogger_ReportInformation_UnitTest::CDataLogger_ReportInformation_UnitTest(CDataLogger& aDataLogger,
1.324 + MUnitTestObserver& aObserver)
1.325 +: CUnitTest(KDataLoggerReportInformationUnitTest, aDataLogger, aObserver)
1.326 + {
1.327 + //Do nothing
1.328 + }
1.329 +
1.330 +// Now the Individual transitions need to be added.
1.331 +inline void CDataLogger_ReportInformation_UnitTest::ConstructL()
1.332 + {
1.333 + // Perform the base class initialization
1.334 + UnitTestConstructL();
1.335 +
1.336 + // Create the Unit test state accessor
1.337 + iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
1.338 + // Construct the Unit test context.
1.339 + iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
1.340 +
1.341 + // Text to be inserted into the report by the ReportInformation method
1.342 + _LIT(KReportComment, "This is a report comment");
1.343 + iUTContext->iReportComment = &KReportComment();
1.344 +
1.345 + // The text to be inserted into the report by the ReportInformationWithParameters method
1.346 + _LIT(KFormatReport, "This report text will be followed by a parameter: %S");
1.347 + iUTContext->iFormatReport = &KFormatReport();
1.348 +
1.349 + // The parameter to be appended to the end of the text above by the ReportInformationWithParameters method
1.350 + _LIT(KReportArg, "This is the report parameter");
1.351 + iUTContext->iReportArg = &KReportArg();
1.352 +
1.353 + // Add the Transitions in the order they are to run
1.354 + // C'tor first, D'tor last...
1.355 + iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
1.356 + iReportInformationValidator = new(ELeave) TDataLogger_ReportInformation_TransitionValidator(*iUTContext);
1.357 + iReportInformationWithParametersValidator = new(ELeave) TDataLogger_ReportInformationWithParameters_TransitionValidator(*iUTContext);
1.358 + iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
1.359 +
1.360 + AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
1.361 + AddTransitionL(new(ELeave)CDataLogger_ReportInformation_Transition(*iUTContext,*iReportInformationValidator));
1.362 + AddTransitionL(new(ELeave)CDataLogger_ReportInformationWithParameters_Transition(*iUTContext,*iReportInformationWithParametersValidator));
1.363 + AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
1.364 + }
1.365 +
1.366 +