os/security/cryptoservices/certificateandkeymgmt/tcertstore/T_unifiedcertstorecertstorecount.cpp
First public contribution.
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_unifiedcertstorecertstorecount.h"
25 #include "t_certstoredefs.h"
26 #include "t_certstoreout.h"
28 CTestAction* CUnifiedCertStoreCertStoreCount::NewL(RFs& aFs,
29 CConsoleBase& aConsole,
31 const TTestActionSpec& aTestActionSpec)
33 CUnifiedCertStoreCertStoreCount* self =
34 new(ELeave) CUnifiedCertStoreCertStoreCount(aFs, aConsole, aOut);
35 CleanupStack::PushL(self);
36 self->ConstructL(aTestActionSpec);
37 CleanupStack::Pop(self);
41 CUnifiedCertStoreCertStoreCount::~CUnifiedCertStoreCertStoreCount()
45 CUnifiedCertStoreCertStoreCount::CUnifiedCertStoreCertStoreCount(RFs& aFs, CConsoleBase& aConsole,
47 : CUnifiedCertStoreCount(aFs, aConsole, aOut)
51 void CUnifiedCertStoreCertStoreCount::ConstructL(const TTestActionSpec& aTestActionSpec)
55 CUnifiedCertStoreCount::ConstructL(aTestActionSpec);
56 iStoreIndex = Input::ParseElement(aTestActionSpec.iActionBody, KStoreIndexStart, KStoreIndexEnd, pos, err);
57 iExpectCount = Input::ParseElement(aTestActionSpec.iActionResult, KNumberOfStoresStart, KNumberOfStoresEnd, pos, err);
60 void CUnifiedCertStoreCertStoreCount::DoPerformAction()
62 TLex8 lexi(iStoreIndex);
64 TInt index = lexi.Val(iIndex.iUid);
65 if (index != KErrNone)
67 User::Panic(_L("CUnifiedCertStoreCertStoreCount"), 1);
69 iCount = UnifiedCertStore(iIndex.iUid).CertStoreCount();
71 TLex8 lex(iExpectCount);
73 TInt iu = lex.Val(uid.iUid);
76 User::Panic(_L("CUnifiedCertStoreCertStoreCount"), 1);
78 if (iCount == uid.iUid)
88 void CUnifiedCertStoreCertStoreCount::DoWriteResult()
90 iConsole.Printf(_L("\tNumber of stores (read-only + writable) :"));
91 iOut.writeString(_L("\tNumber of stores (read-only + writable) : "));