os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testsetsecondaryfltstep.cpp
Update contrib.
1 // Copyright (c) 2005-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 // Example CTestStep derived implementation
19 @file TestSetSecondaryFltStep.cpp
22 #include "testsetsecondaryfltstep.h"
23 #include "te_uloggerclientsuitedefs.h"
25 CTestSetSecondaryFltStep::~CTestSetSecondaryFltStep()
32 CTestSetSecondaryFltStep::CTestSetSecondaryFltStep()
37 // **MUST** call SetTestStepName in the constructor as the controlling
38 // framework uses the test step name immediately following construction to set
39 // up the step's unique logging ID.
40 SetTestStepName(KTestSetSecondaryFltStep);
43 TVerdict CTestSetSecondaryFltStep::doTestStepPreambleL()
45 * @return - TVerdict code
46 * Override of base class virtual
49 INFO_PRINTF1(_L("TestSetSecondaryFltStep started"));
50 CTestUloggerClientApiStepBase::doTestStepPreambleL();
51 return TestStepResult();
54 TVerdict CTestSetSecondaryFltStep::doTestStepL()
56 * @return - TVerdict code
57 * Override of base class pure virtual
58 * Our implementation only gets called if the base class doTestStepPreambleL() did
59 * not leave. That being the case, the current test result value will be EPass.
62 RArray<TUint32> *setfilters = new (ELeave)RArray<TUint32>(10);
63 RArray<TUint32> *getfilters = new (ELeave)RArray<TUint32>(10);
65 if (TestStepResult()==EPass)
67 setfilters->AppendL(KSecondaryFlt);
69 /**************First set primary filter*************/
72 TInt iErrCode = iSession->SetSecondaryFiltersEnabled(*setfilters, ETrue);
74 if( iErrCode == KErrNone )
76 INFO_PRINTF2(_L("Secondary filter has been set with single filter, %d, check log"), (*setfilters)[0]);
80 iSession->GetSecondaryFiltersEnabled(*setfilters);
82 if( setfilters->Count() > 0 )
84 if( (*setfilters)[0] == KSecondaryFlt )
86 INFO_PRINTF1(_L("Get secondary filter successful"));
87 SetTestStepResult(EPass);
91 INFO_PRINTF1(_L("Get secondary filter value does not match with set value"));
92 SetTestStepResult(EFail);;
97 INFO_PRINTF1(_L("GetFilter() Failed, can not varify the test output"));
98 SetTestStepResult(EFail);
103 if(TestStepResult() == EPass)
107 iSession->GetSecondaryFiltersEnabled(*getfilters);
108 iSession->SetSecondaryFiltersEnabled(*getfilters, EFalse);
112 for(TInt i = 0; i < 4096 ; i++ )
114 setfilters->AppendL((TUint32)(i));
117 TRAPD(err, iSession->SetSecondaryFiltersEnabled(*setfilters, ETrue));
118 if( KErrNone == err )
120 INFO_PRINTF1(_L("Secondary filter has been set with multiple filters,from 0 to 4095"));
121 SetTestStepResult(EPass);
125 INFO_PRINTF2(_L("Multiple secondary filters have not been set succesfully, error code %d"), err);
126 SetTestStepResult(EFail);
129 //Now get the primary filter set above
130 iSession->GetSecondaryFiltersEnabled(*getfilters);
132 if( getfilters->Count() == setfilters->Count() )
134 INFO_PRINTF1(_L("setfilter and getfilter have the same count"));
135 for(TInt i = 0; i < getfilters->Count(); i++)
137 for(TInt j = 0; j < setfilters->Count(); j++)
139 if( (*getfilters)[i] == (*setfilters)[j] )
140 SetTestStepResult(EPass);
142 SetTestStepResult(EFail);
148 INFO_PRINTF1(_L("setfilter and getfilter have different counts"));
149 INFO_PRINTF2(_L("setfilter has %d"), setfilters->Count());
150 INFO_PRINTF2(_L("getfilter has %d"), getfilters->Count());
151 SetTestStepResult(EFail);
170 return TestStepResult();
173 TVerdict CTestSetSecondaryFltStep::doTestStepPostambleL()
175 * @return - TVerdict code
176 * Override of base class virtual
179 INFO_PRINTF1(_L("TestSetSecondaryFltStep completed"));
180 CTestUloggerClientApiStepBase::doTestStepPostambleL();
181 return TestStepResult();