os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrsecurity1.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrsecurity1.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,144 @@
     1.4 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32test.h>
    1.20 +#include <featmgr.h>
    1.21 +#include <featureuids.h>
    1.22 +#include <featurecontrol.h>
    1.23 +#include <featdiscovery.h>
    1.24 +
    1.25 +using namespace NFeature;
    1.26 +
    1.27 +const TInt KInvalidFeatureId1    = 90901671;
    1.28 +const TUid KInvalidFeatureUid1  = {KInvalidFeatureId1};
    1.29 +
    1.30 +///////////////////////////////////////////////////////////////////////////////////////
    1.31 +//////  Note: This test has no platsec capabilities. It should not be possible to /////
    1.32 +//////        call platsec protected FeatMgr methods.                             /////
    1.33 +///////////////////////////////////////////////////////////////////////////////////////
    1.34 +
    1.35 +static RTest TheTest(_L("t_fmgrsecurity1"));
    1.36 +
    1.37 +///////////////////////////////////////////////////////////////////////////////////////
    1.38 +
    1.39 +//Deletes all created test files.
    1.40 +void DestroyTestEnv()
    1.41 +    {
    1.42 +    }
    1.43 +
    1.44 +///////////////////////////////////////////////////////////////////////////////////////
    1.45 +///////////////////////////////////////////////////////////////////////////////////////
    1.46 +//Test macros and functions
    1.47 +void Check1(TInt aValue, TInt aLine)
    1.48 +    {
    1.49 +    if(!aValue)
    1.50 +        {
    1.51 +        DestroyTestEnv();
    1.52 +        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    1.53 +        TheTest(EFalse, aLine);
    1.54 +        }
    1.55 +    }
    1.56 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
    1.57 +    {
    1.58 +    if(aValue != aExpected)
    1.59 +        {
    1.60 +        DestroyTestEnv();
    1.61 +        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    1.62 +        TheTest(EFalse, aLine);
    1.63 +        }
    1.64 +    }
    1.65 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.66 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.67 +
    1.68 +///////////////////////////////////////////////////////////////////////////////////////
    1.69 +
    1.70 +/**
    1.71 +@SYMTestCaseID          PDS-FEATMGR-CT-????
    1.72 +@SYMTestCaseDesc        
    1.73 +@SYMTestPriority        High
    1.74 +@SYMTestActions         
    1.75 +@SYMTestExpectedResults Test must not fail
    1.76 +@SYMDEF                 ????
    1.77 +*/
    1.78 +void FeatureControlPlatSecTest()
    1.79 +    {
    1.80 +    RFeatureControl ctrl;
    1.81 +    TInt err = ctrl.Open();
    1.82 +    TEST2(err, KErrNone);
    1.83 +
    1.84 +    err = ctrl.EnableFeature(KConnectivity);
    1.85 +    TEST2(err, KErrPermissionDenied);
    1.86 +    err = ctrl.EnableFeature(KInvalidFeatureUid1);
    1.87 +    TEST2(err, KErrPermissionDenied);
    1.88 +    
    1.89 +    err = ctrl.DisableFeature(KConnectivity);
    1.90 +    TEST2(err, KErrPermissionDenied);
    1.91 +    err = ctrl.DisableFeature(KInvalidFeatureUid1);
    1.92 +    TEST2(err, KErrPermissionDenied);
    1.93 +
    1.94 +    err = ctrl.SetFeature(KConnectivity, ETrue, 0);
    1.95 +    TEST2(err, KErrPermissionDenied);
    1.96 +    err = ctrl.SetFeature(KInvalidFeatureUid1, ETrue, 0);
    1.97 +    TEST2(err, KErrPermissionDenied);
    1.98 +    err = ctrl.SetFeature(KConnectivity, 0);
    1.99 +    TEST2(err, KErrPermissionDenied);
   1.100 +    err = ctrl.SetFeature(KInvalidFeatureUid1, 0);
   1.101 +    TEST2(err, KErrPermissionDenied);
   1.102 +
   1.103 +    TFeatureEntry fentry;
   1.104 +    err = ctrl.AddFeature(fentry);
   1.105 +    TEST2(err, KErrPermissionDenied);
   1.106 +    err = ctrl.DeleteFeature(KConnectivity);
   1.107 +    TEST2(err, KErrPermissionDenied);
   1.108 +    err = ctrl.DeleteFeature(KInvalidFeatureUid1);
   1.109 +    TEST2(err, KErrPermissionDenied);
   1.110 +    
   1.111 +    err = ctrl.SWIStart();
   1.112 +    TEST2(err, KErrPermissionDenied);
   1.113 +    err = ctrl.SWIEnd();
   1.114 +    TEST2(err, KErrPermissionDenied);
   1.115 +    
   1.116 +    ctrl.Close();
   1.117 +    }
   1.118 +
   1.119 +void DoTestsL()
   1.120 +    {
   1.121 +    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4108 RFeatureControl platsec test"));
   1.122 +    FeatureControlPlatSecTest();
   1.123 +    }
   1.124 +
   1.125 +TInt E32Main()
   1.126 +    {
   1.127 +    TheTest.Title();
   1.128 +    
   1.129 +    CTrapCleanup* tc = CTrapCleanup::New();
   1.130 +    TheTest(tc != NULL);
   1.131 +    
   1.132 +    __UHEAP_MARK;
   1.133 +    
   1.134 +    TRAPD(err, DoTestsL());
   1.135 +    DestroyTestEnv();
   1.136 +    TEST2(err, KErrNone);
   1.137 +
   1.138 +    __UHEAP_MARKEND;
   1.139 +    
   1.140 +    TheTest.End();
   1.141 +    TheTest.Close();
   1.142 +    
   1.143 +    delete tc;
   1.144 +
   1.145 +    User::Heap().Check();
   1.146 +    return KErrNone;
   1.147 +    }