os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testsetprimaryfltstep.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 TestStartStep.cpp
22 #include "testsetprimaryfltstep.h"
23 #include "te_uloggerclientsuitedefs.h"
25 CTestSetPrimaryFltStep::~CTestSetPrimaryFltStep()
32 CTestSetPrimaryFltStep::CTestSetPrimaryFltStep()
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(KTestSetPrimaryFltStep);
43 TVerdict CTestSetPrimaryFltStep::doTestStepPreambleL()
45 * @return - TVerdict code
46 * Override of base class virtual
49 CTestUloggerClientApiStepBase::doTestStepPreambleL();
50 return TestStepResult();
53 TVerdict CTestSetPrimaryFltStep::doTestStepL()
55 * @return - TVerdict code
56 * Override of base class pure virtual
57 * Our implementation only gets called if the base class doTestStepPreambleL() did
58 * not leave. That being the case, the current test result value will be EPass.
61 CArrayFixFlat<TUint8> *setfilters = new (ELeave)CArrayFixFlat<TUint8>(10);
62 CArrayFixFlat<TUint8> *getfilters = new (ELeave)CArrayFixFlat<TUint8>(10);
64 if (TestStepResult()==EPass)
66 setfilters->AppendL(KPrimaryFlt);
68 /**************First set primary filter*************/
71 TInt iErrCode = iSession->SetPrimaryFiltersEnabled(*setfilters, ETrue);
73 if( iErrCode == KErrNone )
75 INFO_PRINTF2(_L("Primary filter has been set with single filter, %d, check log"), setfilters->At(0));
79 iSession->GetPrimaryFiltersEnabled(*setfilters);
81 if( setfilters->Count() > 0 )
83 if( setfilters->At(0) == KPrimaryFlt )
85 INFO_PRINTF1(_L("Get primary filter successful"));
86 SetTestStepResult(EPass);
90 INFO_PRINTF1(_L("Get primary filter failed"));
91 SetTestStepResult(EFail);;
96 INFO_PRINTF1(_L("GetFilter() Failed, can not varify the test output"));
97 SetTestStepResult(EFail);
102 if(TestStepResult() == EPass)
107 for(TInt i = 0; i < 256 ; i++ )
109 setfilters->AppendL((TUint8)(i));
112 TRAPD(err, iSession->SetPrimaryFiltersEnabled(*setfilters, ETrue));
113 if( KErrNone == err )
115 INFO_PRINTF1(_L("Primary filter has been set with multiple filters,from 0 to 255"));
116 SetTestStepResult(EPass);
120 INFO_PRINTF2(_L("Multiple primary filters have not been set succesfully, error code %d"), err);
121 SetTestStepResult(EFail);
124 //Now get the primary filter set above
125 iSession->GetPrimaryFiltersEnabled(*getfilters);
127 if( getfilters->Count() == setfilters->Count() )
129 INFO_PRINTF1(_L("setfilter and getfilter have the same count"));
130 for(TInt i = 0; i < getfilters->Count(); i++)
132 for(TInt j = 0; j < setfilters->Count(); j++)
134 if(getfilters->At(i) == setfilters->At(j))
135 SetTestStepResult(EPass);
137 SetTestStepResult(EFail);
143 INFO_PRINTF1(_L("setfilter and getfilter have different counts"));
144 INFO_PRINTF2(_L("setfilter has %d"), setfilters->Count());
145 INFO_PRINTF2(_L("getfilter has %d"), getfilters->Count());
146 SetTestStepResult(EFail);
165 return TestStepResult();
168 TVerdict CTestSetPrimaryFltStep::doTestStepPostambleL()
170 * @return - TVerdict code
171 * Override of base class virtual
174 INFO_PRINTF1(_L("TestSetPrimaryFltStep completed"));
175 CTestUloggerClientApiStepBase::doTestStepPostambleL();
176 return TestStepResult();