os/security/cryptoservices/certificateandkeymgmt/tcertstore/T_unifiedcertstorewritablecertstorecount.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 /**
    20  @file
    21 */
    22 
    23 #include "t_unifiedcertstorewritablecertstorecount.h"
    24 #include "t_input.h"
    25 #include "t_certstoredefs.h"
    26 #include "t_certstoreout.h"
    27 
    28 CTestAction* CUnifiedCertStoreWritableCertStoreCount::NewL(RFs& aFs,
    29 														   CConsoleBase& aConsole,	
    30 														   Output& aOut, 
    31 														   const TTestActionSpec& aTestActionSpec)
    32 	{
    33 	CUnifiedCertStoreWritableCertStoreCount* self =
    34 		new(ELeave) CUnifiedCertStoreWritableCertStoreCount(aFs, aConsole, aOut);
    35 	CleanupStack::PushL(self);
    36 	self->ConstructL(aTestActionSpec);
    37 	CleanupStack::Pop(self);
    38 	return self;
    39 	}
    40 
    41 CUnifiedCertStoreWritableCertStoreCount::~CUnifiedCertStoreWritableCertStoreCount()
    42 	{
    43 	}
    44 
    45 CUnifiedCertStoreWritableCertStoreCount::CUnifiedCertStoreWritableCertStoreCount(RFs& aFs, CConsoleBase& aConsole,	
    46 																				 Output& aOut)
    47 : CUnifiedCertStoreCount(aFs, aConsole, aOut)
    48 	{
    49 	}
    50 
    51 void CUnifiedCertStoreWritableCertStoreCount::ConstructL(const TTestActionSpec& aTestActionSpec)
    52 	{
    53 	CUnifiedCertStoreCount::ConstructL(aTestActionSpec);
    54 
    55 	TInt err = KErrNone;
    56 	TInt pos = 0;
    57 	iStoreIndex = Input::ParseElement(aTestActionSpec.iActionBody, KStoreIndexStart, KStoreIndexEnd, pos, err);
    58 	iExpectCount = Input::ParseElement(aTestActionSpec.iActionResult, KNumberOfStoresStart, KNumberOfStoresEnd, pos, err);
    59 	}
    60 
    61 void CUnifiedCertStoreWritableCertStoreCount::DoPerformAction()
    62 	{
    63 	TLex8 lexi(iStoreIndex);
    64 	TUid iIndex;
    65 	TInt index = lexi.Val(iIndex.iUid);
    66 	if (index != KErrNone)
    67 		{
    68 		User::Panic(_L("CUnifiedCertStoreCertStoreCount"), 1);
    69 		}
    70 	iCount = UnifiedCertStore(iIndex.iUid).WritableCertStoreCount();
    71 
    72 	TLex8 lex(iExpectCount);
    73 	TUid uid;
    74 	TInt iu = lex.Val(uid.iUid);
    75 	if (iu != KErrNone)
    76 		{
    77 		User::Panic(_L("CUnifiedCertStoreCertStoreCount"), 1);
    78 		}
    79 	if (iCount == uid.iUid)
    80 		{
    81 		iResult = ETrue;
    82 		}
    83 	else
    84 		{
    85 		iResult = EFalse;
    86 		}
    87 	}
    88 
    89 void CUnifiedCertStoreWritableCertStoreCount::DoWriteResult()
    90 	{
    91 	iConsole.Printf(_L("\tNumber of writable stores:"));
    92 	iOut.writeString(_L("\tNumber of writable stores: "));
    93 	}