os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testremoveprimaryfltstep.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 TestRemovePrimaryFltStep.cpp
22 #include "testremoveprimaryfltstep.h"
23 #include "te_uloggerclientsuitedefs.h"
25 CTestRemovePrimaryFltStep::~CTestRemovePrimaryFltStep()
32 CTestRemovePrimaryFltStep::CTestRemovePrimaryFltStep()
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(KTestRemovePrimaryFltStep);
43 TVerdict CTestRemovePrimaryFltStep::doTestStepPreambleL()
45 * @return - TVerdict code
46 * Override of base class virtual
49 CTestUloggerClientApiStepBase::doTestStepPreambleL();
50 return TestStepResult();
54 TVerdict CTestRemovePrimaryFltStep::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 CArrayFixFlat<TUint8> *setfilters = new (ELeave)CArrayFixFlat<TUint8>(10);
63 CArrayFixFlat<TUint8> *getfilters = new (ELeave)CArrayFixFlat<TUint8>(10);
65 if (TestStepResult()==EPass)
67 const unsigned char KPrimaryFilter = 23;
68 setfilters->AppendL(KPrimaryFilter);
70 /**************First set primary filter*************/
73 TInt iErrCode = iSession->SetPrimaryFiltersEnabled(*setfilters, ETrue);
75 if( iErrCode == KErrNone )
77 iErrCode = iSession->SetPrimaryFiltersEnabled(*setfilters, EFalse);
78 if( iErrCode == KErrNone )
80 SetTestStepResult(EPass);
82 iSession->GetPrimaryFiltersEnabled(*setfilters);
84 if( setfilters->Count() <= 0 )
86 INFO_PRINTF2(_L("Primary filter has been removed , %d"), setfilters->At(0));
87 SetTestStepResult(EPass);
91 for(TInt i = 0; i < setfilters->Count(); i++)
93 if(setfilters->At(i) == KPrimaryFilter)
95 INFO_PRINTF1(_L("GetFilter() Failed, can not varify the test output"));
96 SetTestStepResult(EFail);
100 INFO_PRINTF2(_L("Primary filter has been removed , %d"), setfilters->At(0));
101 SetTestStepResult(EPass);
108 INFO_PRINTF2(_L("Primary filter remove failed , %d"), setfilters->At(0));
109 SetTestStepResult(EFail);
114 if(TestStepResult() == EPass)
119 for(TInt i = 0; i < 256 ; i++ )
121 setfilters->AppendL((TUint8)(i));
124 TRAPD(err, iSession->SetPrimaryFiltersEnabled(*setfilters, ETrue));
125 if( KErrNone == err )
128 // for(TInt i = 0; i < 256; i++)
130 if(iSession->SetPrimaryFiltersEnabled(*setfilters, EFalse) != KErrNone)
133 INFO_PRINTF1(_L("Remove primary filters failed"));
134 SetTestStepResult(EFail);
139 INFO_PRINTF1(_L("All primary filters Removed"));
140 SetTestStepResult(EPass);
160 return TestStepResult();
163 TVerdict CTestRemovePrimaryFltStep::doTestStepPostambleL()
165 * @return - TVerdict code
166 * Override of base class virtual
169 CTestUloggerClientApiStepBase::doTestStepPostambleL();
170 return TestStepResult();