Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include <featureuids.h>
19 #include <featurecontrol.h>
20 #include <featdiscovery.h>
22 using namespace NFeature;
24 const TInt KInvalidFeatureId1 = 90901671;
25 const TUid KInvalidFeatureUid1 = {KInvalidFeatureId1};
27 ///////////////////////////////////////////////////////////////////////////////////////
28 ////// Note: This test has no platsec capabilities. It should not be possible to /////
29 ////// call platsec protected FeatMgr methods. /////
30 ///////////////////////////////////////////////////////////////////////////////////////
32 static RTest TheTest(_L("t_fmgrsecurity1"));
34 ///////////////////////////////////////////////////////////////////////////////////////
36 //Deletes all created test files.
41 ///////////////////////////////////////////////////////////////////////////////////////
42 ///////////////////////////////////////////////////////////////////////////////////////
43 //Test macros and functions
44 void Check1(TInt aValue, TInt aLine)
49 RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
50 TheTest(EFalse, aLine);
53 void Check2(TInt aValue, TInt aExpected, TInt aLine)
55 if(aValue != aExpected)
58 RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
59 TheTest(EFalse, aLine);
62 #define TEST(arg) ::Check1((arg), __LINE__)
63 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
65 ///////////////////////////////////////////////////////////////////////////////////////
68 @SYMTestCaseID PDS-FEATMGR-CT-????
72 @SYMTestExpectedResults Test must not fail
75 void FeatureControlPlatSecTest()
78 TInt err = ctrl.Open();
81 err = ctrl.EnableFeature(KConnectivity);
82 TEST2(err, KErrPermissionDenied);
83 err = ctrl.EnableFeature(KInvalidFeatureUid1);
84 TEST2(err, KErrPermissionDenied);
86 err = ctrl.DisableFeature(KConnectivity);
87 TEST2(err, KErrPermissionDenied);
88 err = ctrl.DisableFeature(KInvalidFeatureUid1);
89 TEST2(err, KErrPermissionDenied);
91 err = ctrl.SetFeature(KConnectivity, ETrue, 0);
92 TEST2(err, KErrPermissionDenied);
93 err = ctrl.SetFeature(KInvalidFeatureUid1, ETrue, 0);
94 TEST2(err, KErrPermissionDenied);
95 err = ctrl.SetFeature(KConnectivity, 0);
96 TEST2(err, KErrPermissionDenied);
97 err = ctrl.SetFeature(KInvalidFeatureUid1, 0);
98 TEST2(err, KErrPermissionDenied);
100 TFeatureEntry fentry;
101 err = ctrl.AddFeature(fentry);
102 TEST2(err, KErrPermissionDenied);
103 err = ctrl.DeleteFeature(KConnectivity);
104 TEST2(err, KErrPermissionDenied);
105 err = ctrl.DeleteFeature(KInvalidFeatureUid1);
106 TEST2(err, KErrPermissionDenied);
108 err = ctrl.SWIStart();
109 TEST2(err, KErrPermissionDenied);
111 TEST2(err, KErrPermissionDenied);
118 TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4108 RFeatureControl platsec test"));
119 FeatureControlPlatSecTest();
126 CTrapCleanup* tc = CTrapCleanup::New();
131 TRAPD(err, DoTestsL());
133 TEST2(err, KErrNone);
142 User::Heap().Check();