1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrapi.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,468 @@
1.4 +// Copyright (c) 2009-2010 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 TInt KInvalidNegFeatureId2 = -90901671;
1.29 +const TUid KInvalidFeatureUid1 = {KInvalidFeatureId1};
1.30 +
1.31 +///////////////////////////////////////////////////////////////////////////////////////
1.32 +
1.33 +static RTest TheTest(_L("t_fmgrapi"));
1.34 +TUid SupportedFeature = KConnectivity; //Defaulted to KConnectivity, but we will re-assign it in FeatureTestPreparation().
1.35 +TUid SupportedFeature2 = KSip; //Defaulted to KSip, but we will re-assign it in FeatureTestPreparation().
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-EFM-CT-4059
1.72 +@SYMTestCaseDesc
1.73 +@SYMTestPriority High
1.74 +@SYMTestActions
1.75 +@SYMTestExpectedResults Test must not fail
1.76 +@SYMDEF DEF144262
1.77 +*/
1.78 +void FeatureSupportedTestL()
1.79 + {
1.80 + FeatureManager::InitializeLibL();
1.81 + FeatureManager::InitializeLibL();
1.82 +
1.83 + //Feature, default present
1.84 + TBool rc = FeatureManager::FeatureSupported(KConnectivity.iUid);
1.85 + TEST(rc);
1.86 + //Feature, default not present
1.87 + rc = FeatureManager::FeatureSupported(KPrint.iUid);
1.88 + TEST(rc);
1.89 +
1.90 + //Ivalid feature UID
1.91 + rc = FeatureManager::FeatureSupported(KInvalidFeatureId1);
1.92 + TEST(!rc);
1.93 + //Ivalid feature UID - negative
1.94 + rc = FeatureManager::FeatureSupported(KInvalidNegFeatureId2);
1.95 + TEST(!rc);
1.96 +
1.97 + FeatureManager::UnInitializeLib();
1.98 + FeatureManager::UnInitializeLib();
1.99 + FeatureManager::UnInitializeLib();//it should be safe to call UnInitializeLib() even without matching InitializeLibL() call
1.100 + }
1.101 +
1.102 +/**
1.103 +@SYMTestCaseID PDS-EFM-CT-4060
1.104 +@SYMTestCaseDesc
1.105 +@SYMTestPriority High
1.106 +@SYMTestActions
1.107 +@SYMTestExpectedResults Test must not fail
1.108 +@SYMDEF DEF144262
1.109 +*/
1.110 +void FeatureControlTest1()
1.111 + {
1.112 + RFeatureControl ctrl;
1.113 + TInt err = ctrl.Open();
1.114 + TEST2(err, KErrNone);
1.115 + /////////////////////////////////////////////////////////////
1.116 + RFeatureUidArray farray;
1.117 + err = ctrl.ListSupportedFeatures(farray);
1.118 + TEST2(err, KErrNone);
1.119 + TheTest.Printf(_L("RFeatureControl::ListSupportedFeatures()\r\n"));
1.120 + for(TInt i=0;i<farray.Count();++i)
1.121 + {
1.122 + TheTest.Printf(_L(" Feature: %08X\r\n"), farray[i].iUid);
1.123 + }
1.124 + /////////////////////////////////////////////////////////////
1.125 + RFeatureArray farray2;
1.126 + for(TInt i=0;i<farray.Count();++i)
1.127 + {
1.128 + err = farray2.Append(farray[i]);
1.129 + TEST2(err, KErrNone);
1.130 + }
1.131 +
1.132 + err = ctrl.FeaturesSupported(farray2);
1.133 + TEST2(err, KErrNone);
1.134 +
1.135 + TheTest.Printf(_L("RFeatureControl::FeaturesSupported()\r\n"));
1.136 + for(TInt i=0;i<farray2.Count();++i)
1.137 + {
1.138 + TheTest.Printf(_L(" Feature: %08X, Flags: %08X, Data: %08X\r\n"), farray2[i].FeatureUid(), farray2[i].FeatureFlags().iFlags, farray2[i].FeatureData());
1.139 + }
1.140 +
1.141 + RFeatureArray farray3;
1.142 + err = ctrl.FeaturesSupported(farray3);
1.143 + TEST2(err, KErrArgument);
1.144 +
1.145 + /////////////////////////////////////////////////////////////
1.146 + farray2.Close();
1.147 + farray.Close();
1.148 + ctrl.Close();
1.149 + ctrl.Close();//It should be safe to call Close() again
1.150 + }
1.151 +
1.152 +/**
1.153 +@SYMTestCaseID PDS-EFM-CT-4061
1.154 +@SYMTestCaseDesc
1.155 +@SYMTestPriority High
1.156 +@SYMTestActions
1.157 +@SYMTestExpectedResults Test must not fail
1.158 +@SYMDEF DEF144262
1.159 +*/
1.160 +void FeatureControlTest2()
1.161 + {
1.162 + RFeatureControl ctrl;
1.163 + TInt err = ctrl.Open();
1.164 + TEST2(err, KErrNone);
1.165 + /////////////////////////////////////////////////////////////
1.166 + RFeatureUidArray farray;
1.167 + err = ctrl.ListSupportedFeatures(farray);
1.168 + TEST2(err, KErrNone);
1.169 + for(TInt i=0;i<farray.Count();++i)
1.170 + {
1.171 + err = ctrl.FeatureSupported(farray[i]);
1.172 + TEST2(err, KFeatureSupported);
1.173 +
1.174 + TFeatureEntry feat(farray[i]);
1.175 + err = ctrl.FeatureSupported(feat);
1.176 + TEST2(err, KFeatureSupported);
1.177 + }
1.178 +
1.179 + err = ctrl.FeatureSupported(TUid::Uid(KInvalidFeatureId1));
1.180 + TEST2(err, KErrNotFound);
1.181 +
1.182 + TFeatureEntry feat1(TUid::Uid(KInvalidFeatureId1));
1.183 + err = ctrl.FeatureSupported(feat1);
1.184 + TEST2(err, KErrNotFound);
1.185 +
1.186 + const TUint KFlags = 0x0134357;
1.187 + const TUint KData = 0xAB5234;
1.188 + TFeatureEntry feat2(TUid::Uid(KInvalidFeatureId1), KFlags, KData);
1.189 + err = ctrl.FeatureSupported(feat2);
1.190 + TEST2(err, KErrNotFound);
1.191 +
1.192 + /////////////////////////////////////////////////////////////
1.193 + farray.Close();
1.194 + ctrl.Close();
1.195 + }
1.196 +
1.197 +/**
1.198 +@SYMTestCaseID PDS-EFM-CT-4062
1.199 +@SYMTestCaseDesc
1.200 +@SYMTestPriority High
1.201 +@SYMTestActions
1.202 +@SYMTestExpectedResults Test must not fail
1.203 +@SYMDEF DEF144262
1.204 +*/
1.205 +void FeatureControlTest3()
1.206 + {
1.207 + RFeatureControl ctrl;
1.208 + TInt err = ctrl.Open();
1.209 + TEST2(err, KErrNone);
1.210 +
1.211 + //Retrieve a uid list of all supported features
1.212 + RFeatureUidArray farray;
1.213 + err = ctrl.ListSupportedFeatures(farray);
1.214 + TEST2(err, KErrNone);
1.215 + //Retrieve a TFeaureEntry list of all supported features
1.216 + RFeatureArray farray2;
1.217 + for(TInt i=0;i<farray.Count();++i)
1.218 + {
1.219 + err = farray2.Append(farray[i]);
1.220 + TEST2(err, KErrNone);
1.221 + }
1.222 + err = ctrl.FeaturesSupported(farray2);
1.223 + TEST2(err, KErrNone);
1.224 + //Play with EnableFeature()/DisableFeature() calls. If the EFeatureModifiable flag is not set then
1.225 + //the feature cannot be enabled or disabled.
1.226 + for(TInt i=0;i<farray2.Count();++i)
1.227 + {
1.228 + const TFeatureEntry& fentry = farray2[i];
1.229 + TBitFlags32 flags = fentry.FeatureFlags();
1.230 +
1.231 + err = ctrl.DisableFeature(fentry.FeatureUid());
1.232 + TEST2(err, flags.IsSet(EFeatureModifiable) ? KErrNone : KErrAccessDenied);
1.233 +
1.234 + err = ctrl.EnableFeature(fentry.FeatureUid());
1.235 + TEST2(err, flags.IsSet(EFeatureModifiable) ? KErrNone : KErrAccessDenied);
1.236 + }
1.237 + //It is impossible to set non-existing feature
1.238 + const TUid KNewFeatureUid = {0x7888ABCD};
1.239 + err = ctrl.SetFeature(KNewFeatureUid, ETrue, 0x0);
1.240 + TEST2(err, KErrNotFound);
1.241 + //It is impossible to set non-modifiable feature
1.242 + TBitFlags32 flags = farray2[0].FeatureFlags();
1.243 + err = ctrl.SetFeature(farray2[0].FeatureUid(), ETrue, 0x0);
1.244 + TEST2(err, flags.IsSet(EFeatureModifiable) ? KErrNone : KErrAccessDenied);
1.245 + //Add new feature
1.246 + flags.ClearAll();
1.247 + flags.Set(EFeatureSupported);
1.248 + flags.Set(EFeatureModifiable);
1.249 + TFeatureEntry fentry(KNewFeatureUid, flags, 0x0);
1.250 + err = ctrl.AddFeature(fentry);
1.251 + TEST2(err, KErrNone);
1.252 + //Retrieve the new feature and check flags
1.253 + err = ctrl.FeatureSupported(fentry);
1.254 + TEST2(err, KFeatureSupported);
1.255 + flags = fentry.FeatureFlags();
1.256 + TEST(flags.IsSet(EFeatureSupported));
1.257 + TEST(flags.IsSet(EFeatureModifiable));
1.258 + //Now, it should be possible to set the new feature - it is modifiable.
1.259 + err = ctrl.SetFeature(fentry.FeatureUid(), ETrue, 0x0);
1.260 + TEST2(err, KErrNone);
1.261 + err = ctrl.SetFeature(fentry.FeatureUid(), EFalse, 0x0);
1.262 + TEST2(err, KErrNone);
1.263 + //Enable/disable
1.264 + err = ctrl.EnableFeature(fentry.FeatureUid());
1.265 + TEST2(err, KErrNone);
1.266 + err = ctrl.DisableFeature(fentry.FeatureUid());
1.267 + TEST2(err, KErrNone);
1.268 + //Delete the added feature
1.269 + err = ctrl.DeleteFeature(fentry.FeatureUid());
1.270 + TEST2(err, KErrNone);
1.271 + err = ctrl.DeleteFeature(fentry.FeatureUid());
1.272 + TEST2(err, KErrNotFound);
1.273 +
1.274 + /////////////////////////////////////////////////////////////
1.275 + farray2.Close();
1.276 + farray.Close();
1.277 + ctrl.Close();
1.278 + }
1.279 +
1.280 +/**
1.281 +@SYMTestCaseID PDS-EFM-CT-4063
1.282 +@SYMTestCaseDesc
1.283 +@SYMTestPriority High
1.284 +@SYMTestActions
1.285 +@SYMTestExpectedResults Test must not fail
1.286 +@SYMDEF DEF144262
1.287 +*/
1.288 +void FeatureDiscoveryTest1L()
1.289 + {
1.290 + TBool rc = CFeatureDiscovery::IsFeatureSupportedL(KInvalidFeatureId1);
1.291 + TEST(!rc);
1.292 + rc = CFeatureDiscovery::IsFeatureSupportedL(SupportedFeature.iUid);
1.293 + TEST(rc);
1.294 +
1.295 + rc = CFeatureDiscovery::IsFeatureSupportedL(KInvalidFeatureUid1);
1.296 + TEST(!rc);
1.297 + rc = CFeatureDiscovery::IsFeatureSupportedL(SupportedFeature);
1.298 + TEST(rc);
1.299 +
1.300 + CFeatureDiscovery* fdiscovery = CFeatureDiscovery::NewLC();
1.301 +
1.302 + rc = fdiscovery->IsSupported(KInvalidFeatureId1);
1.303 + TEST(!rc);
1.304 + rc = fdiscovery->IsSupported(SupportedFeature.iUid);
1.305 + TEST(rc);
1.306 +
1.307 + rc = fdiscovery->IsSupported(KInvalidFeatureUid1);
1.308 + TEST(!rc);
1.309 + rc = fdiscovery->IsSupported(SupportedFeature);
1.310 + TEST(rc);
1.311 +
1.312 + CleanupStack::PopAndDestroy(fdiscovery);
1.313 + }
1.314 +
1.315 +void DoFeatureDiscoveryTest2L(TBool aStaticMethodsUsed)
1.316 + {
1.317 + CFeatureDiscovery* fdiscovery = NULL;
1.318 + if(!aStaticMethodsUsed)
1.319 + {
1.320 + fdiscovery = CFeatureDiscovery::NewL();
1.321 + }
1.322 + //////////////////////////////////////////////////////////
1.323 + //A test with a set: one valid and one invalid feature
1.324 + TFeatureSet fset;
1.325 + TInt err = fset.Append(SupportedFeature);
1.326 + TEST2(err, KErrNone);
1.327 + err = fset.Append(KInvalidFeatureUid1);
1.328 + TEST2(err, KErrNone);
1.329 + TBool rc = fset.IsFeatureSupported(SupportedFeature);
1.330 + TEST(!rc);
1.331 + rc = fset.IsFeatureSupported(KInvalidFeatureUid1);
1.332 + TEST(!rc);
1.333 + if(aStaticMethodsUsed)
1.334 + {
1.335 + TRAP(err, CFeatureDiscovery::FeaturesSupportedL(fset));
1.336 + }
1.337 + else
1.338 + {
1.339 + err = fdiscovery->FeaturesSupported(fset);
1.340 + }
1.341 + TEST2(err, KErrNone);
1.342 + rc = fset.IsFeatureSupported(SupportedFeature);
1.343 + TEST(rc);
1.344 + rc = fset.IsFeatureSupported(KInvalidFeatureUid1);
1.345 + TEST(!rc);
1.346 + rc = fset.AreAllFeaturesSupported();
1.347 + TEST(!rc);
1.348 + //////////////////////////////////////////////////////////
1.349 + //A test with an empty set
1.350 + TFeatureSet fset2;
1.351 + rc = fset2.IsFeatureSupported(SupportedFeature);
1.352 + TEST(!rc);
1.353 + rc = fset2.IsFeatureSupported(KInvalidFeatureUid1);
1.354 + TEST(!rc);
1.355 + if(aStaticMethodsUsed)
1.356 + {
1.357 + TRAP(err, CFeatureDiscovery::FeaturesSupportedL(fset2));
1.358 + }
1.359 + else
1.360 + {
1.361 + err = fdiscovery->FeaturesSupported(fset2);
1.362 + }
1.363 + TEST2(err, KErrArgument);
1.364 + rc = fset2.IsFeatureSupported(SupportedFeature);
1.365 + TEST(!rc);
1.366 + rc = fset2.IsFeatureSupported(KInvalidFeatureUid1);
1.367 + TEST(!rc);
1.368 + rc = fset2.AreAllFeaturesSupported();
1.369 + TEST(rc);//because fset2 is empty
1.370 + //////////////////////////////////////////////////////////
1.371 + //A test with a set: two valid features
1.372 + TFeatureSet fset3;
1.373 + err = fset3.Append(SupportedFeature);
1.374 + TEST2(err, KErrNone);
1.375 + err = fset3.Append(SupportedFeature2);
1.376 + TEST2(err, KErrNone);
1.377 + if(aStaticMethodsUsed)
1.378 + {
1.379 + TRAP(err, CFeatureDiscovery::FeaturesSupportedL(fset3));
1.380 + }
1.381 + else
1.382 + {
1.383 + err = fdiscovery->FeaturesSupported(fset3);
1.384 + }
1.385 + TEST2(err, KErrNone);
1.386 + rc = fset3.IsFeatureSupported(SupportedFeature);
1.387 + TEST(rc);
1.388 + rc = fset3.IsFeatureSupported(SupportedFeature2);
1.389 + TEST(rc);
1.390 + rc = fset3.AreAllFeaturesSupported();
1.391 + TEST(rc);
1.392 + //////////////////////////////////////////////////////////
1.393 + delete fdiscovery;
1.394 + }
1.395 +
1.396 +/**
1.397 +@SYMTestCaseID PDS-EFM-CT-4064
1.398 +@SYMTestCaseDesc
1.399 +@SYMTestPriority High
1.400 +@SYMTestActions
1.401 +@SYMTestExpectedResults Test must not fail
1.402 +@SYMDEF DEF144262
1.403 +*/
1.404 +void FeatureDiscoveryTest2L()
1.405 + {
1.406 + DoFeatureDiscoveryTest2L(ETrue);
1.407 + DoFeatureDiscoveryTest2L(EFalse);
1.408 + }
1.409 +
1.410 +void FeatureTestPreparation()
1.411 + {
1.412 + RFeatureControl ctrl;
1.413 + TInt err = ctrl.Open();
1.414 + TEST2(err, KErrNone);
1.415 + /////////////////////////////////////////////////////////////
1.416 + RFeatureUidArray farray;
1.417 + TheTest.Printf(_L("Getting supported feature for CFeatureDiscovery test\r\n"));
1.418 + err = ctrl.ListSupportedFeatures(farray);
1.419 + if (err == KErrNone && farray.Count() > 1)
1.420 + {
1.421 + SupportedFeature = farray[0]; //Take the first supported value
1.422 + SupportedFeature2 = farray[1]; //Take the first supported value
1.423 + }
1.424 + else
1.425 + {
1.426 + TheTest.Printf(_L("Warning: Failed to get supported feature for testing. CFeatureDiscovery tests are going to fail\r\n"));
1.427 + }
1.428 + farray.Close();
1.429 + ctrl.Close();
1.430 + }
1.431 +
1.432 +void DoTestsL()
1.433 + {
1.434 + FeatureTestPreparation(); //Preparation for the test.
1.435 + TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4059 FeatureManager::FeatureSupported() test"));
1.436 + FeatureSupportedTestL();
1.437 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4060 RFeatureControl tests-1"));
1.438 + FeatureControlTest1();
1.439 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4061 RFeatureControl tests-2"));
1.440 + FeatureControlTest2();
1.441 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4062 RFeatureControl tests-3"));
1.442 + FeatureControlTest3();
1.443 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4063 CFeatureDiscovery tests-1"));
1.444 + FeatureDiscoveryTest1L();
1.445 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4064 CFeatureDiscovery & TFeatureSet tests"));
1.446 + FeatureDiscoveryTest2L();
1.447 + }
1.448 +
1.449 +TInt E32Main()
1.450 + {
1.451 + TheTest.Title();
1.452 +
1.453 + CTrapCleanup* tc = CTrapCleanup::New();
1.454 + TheTest(tc != NULL);
1.455 +
1.456 + __UHEAP_MARK;
1.457 +
1.458 + TRAPD(err, DoTestsL());
1.459 + DestroyTestEnv();
1.460 + TEST2(err, KErrNone);
1.461 +
1.462 + __UHEAP_MARKEND;
1.463 +
1.464 + TheTest.End();
1.465 + TheTest.Close();
1.466 +
1.467 + delete tc;
1.468 +
1.469 + User::Heap().Check();
1.470 + return KErrNone;
1.471 + }