sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "logservsecurity.h" sl@0: #include "LogServResourceInterpreter.h" sl@0: #include sl@0: #include sl@0: #include "t_logsecuritypolicy.h" sl@0: #include "t_logutil.h" sl@0: sl@0: RTest TheTest(_L("t_logsecurity")); sl@0: static RFs TheFileSess; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: sl@0: //Check if supplied aPolicy parameter has aCapability capability. sl@0: static TBool HasCapability(const TCompiledSecurityPolicy& aPolicy, TCapability aCapability) sl@0: { sl@0: TInt maxCount = 0; sl@0: if(aPolicy.Type() == TSecurityPolicy::ETypeS3 || sl@0: aPolicy.Type() == TSecurityPolicy::ETypeV3 || sl@0: aPolicy.Type() == TSecurityPolicy::ETypeC3) sl@0: { sl@0: maxCount = 3; sl@0: } sl@0: else if(aPolicy.Type() == TSecurityPolicy::ETypeC7) sl@0: { sl@0: maxCount = 7; sl@0: } sl@0: else sl@0: { sl@0: TEST(0); sl@0: } sl@0: for(TInt i=0;i