os/security/cryptoservices/certificateandkeymgmt/tcertstore/T_unifiedcertstorereadonlycertstorecount.cpp
Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
23 #include "t_unifiedcertstorereadonlycertstorecount.h"
25 #include "t_certstoredefs.h"
26 #include "t_certstoreout.h"
28 CTestAction* CUnifiedCertStoreReadOnlyCertStoreCount::NewL(RFs& aFs,
29 CConsoleBase& aConsole,
31 const TTestActionSpec& aTestActionSpec)
33 CUnifiedCertStoreReadOnlyCertStoreCount* self =
34 new(ELeave) CUnifiedCertStoreReadOnlyCertStoreCount(aFs, aConsole, aOut);
35 CleanupStack::PushL(self);
36 self->ConstructL(aTestActionSpec);
37 CleanupStack::Pop(self);
41 CUnifiedCertStoreReadOnlyCertStoreCount::~CUnifiedCertStoreReadOnlyCertStoreCount()
45 CUnifiedCertStoreReadOnlyCertStoreCount::CUnifiedCertStoreReadOnlyCertStoreCount(RFs& aFs, CConsoleBase& aConsole,
47 : CUnifiedCertStoreCount(aFs, aConsole, aOut)
51 void CUnifiedCertStoreReadOnlyCertStoreCount::ConstructL(const TTestActionSpec& aTestActionSpec)
53 CUnifiedCertStoreCount::ConstructL(aTestActionSpec);
58 iStoreIndex = Input::ParseElement(aTestActionSpec.iActionBody, KStoreIndexStart, KStoreIndexEnd, pos, err);
59 iExpectCount = Input::ParseElement(aTestActionSpec.iActionResult, KNumberOfStoresStart, KNumberOfStoresEnd, pos, err);
62 void CUnifiedCertStoreReadOnlyCertStoreCount::DoPerformAction()
64 TLex8 lexi(iStoreIndex);
66 TInt index = lexi.Val(iIndex.iUid);
67 if (index != KErrNone)
69 User::Panic(_L("CUnifiedCertStoreCertStoreCount"), 1);
71 iCount = UnifiedCertStore(iIndex.iUid).ReadOnlyCertStoreCount();
73 TLex8 lex(iExpectCount);
75 TInt iu = lex.Val(uid.iUid);
78 User::Panic(_L("CUnifiedCertStoreCertStoreCount"), 1);
80 if (iCount == uid.iUid)
90 void CUnifiedCertStoreReadOnlyCertStoreCount::DoWriteResult()
92 iConsole.Printf(_L("\tNumber of read-only stores:"));
93 iOut.writeString(_L("\tNumber of read-only stores: "));