os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrapi.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2009-2010 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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32test.h>
    17 #include <featmgr.h>
    18 #include <featureuids.h>
    19 #include <featurecontrol.h>
    20 #include <featdiscovery.h>
    21 
    22 using namespace NFeature;
    23 
    24 const TInt KInvalidFeatureId1    = 90901671;
    25 const TInt KInvalidNegFeatureId2 = -90901671;
    26 const TUid KInvalidFeatureUid1  = {KInvalidFeatureId1};
    27 
    28 ///////////////////////////////////////////////////////////////////////////////////////
    29 
    30 static RTest TheTest(_L("t_fmgrapi"));
    31 TUid SupportedFeature   = KConnectivity;  //Defaulted to KConnectivity, but we will re-assign it in FeatureTestPreparation().
    32 TUid SupportedFeature2  = KSip;          //Defaulted to KSip, but we will re-assign it in FeatureTestPreparation().
    33 
    34 ///////////////////////////////////////////////////////////////////////////////////////
    35 
    36 //Deletes all created test files.
    37 void DestroyTestEnv()
    38     {
    39     }
    40 
    41 ///////////////////////////////////////////////////////////////////////////////////////
    42 ///////////////////////////////////////////////////////////////////////////////////////
    43 //Test macros and functions
    44 void Check1(TInt aValue, TInt aLine)
    45     {
    46     if(!aValue)
    47         {
    48         DestroyTestEnv();
    49         RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    50         TheTest(EFalse, aLine);
    51         }
    52     }
    53 void Check2(TInt aValue, TInt aExpected, TInt aLine)
    54     {
    55     if(aValue != aExpected)
    56         {
    57         DestroyTestEnv();
    58         RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    59         TheTest(EFalse, aLine);
    60         }
    61     }
    62 #define TEST(arg) ::Check1((arg), __LINE__)
    63 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    64 
    65 ///////////////////////////////////////////////////////////////////////////////////////
    66 
    67 /**
    68 @SYMTestCaseID          PDS-EFM-CT-4059
    69 @SYMTestCaseDesc        
    70 @SYMTestPriority        High
    71 @SYMTestActions         
    72 @SYMTestExpectedResults Test must not fail
    73 @SYMDEF                 DEF144262
    74 */
    75 void FeatureSupportedTestL()
    76     {
    77     FeatureManager::InitializeLibL();
    78     FeatureManager::InitializeLibL();
    79     
    80     //Feature, default present
    81     TBool rc = FeatureManager::FeatureSupported(KConnectivity.iUid);
    82     TEST(rc);
    83     //Feature, default not present
    84     rc = FeatureManager::FeatureSupported(KPrint.iUid);
    85     TEST(rc);
    86     
    87     //Ivalid feature UID
    88     rc = FeatureManager::FeatureSupported(KInvalidFeatureId1);
    89     TEST(!rc);
    90     //Ivalid feature UID - negative
    91     rc = FeatureManager::FeatureSupported(KInvalidNegFeatureId2);
    92     TEST(!rc);
    93 
    94     FeatureManager::UnInitializeLib();  
    95     FeatureManager::UnInitializeLib();  
    96     FeatureManager::UnInitializeLib();//it should be safe to call UnInitializeLib() even without matching InitializeLibL() call   
    97     }
    98 
    99 /**
   100 @SYMTestCaseID          PDS-EFM-CT-4060
   101 @SYMTestCaseDesc        
   102 @SYMTestPriority        High
   103 @SYMTestActions         
   104 @SYMTestExpectedResults Test must not fail
   105 @SYMDEF                 DEF144262
   106 */
   107 void FeatureControlTest1()
   108     {
   109     RFeatureControl ctrl;
   110     TInt err = ctrl.Open();
   111     TEST2(err, KErrNone);
   112     /////////////////////////////////////////////////////////////
   113     RFeatureUidArray farray;
   114     err = ctrl.ListSupportedFeatures(farray);
   115     TEST2(err, KErrNone);
   116     TheTest.Printf(_L("RFeatureControl::ListSupportedFeatures()\r\n"));
   117     for(TInt i=0;i<farray.Count();++i)
   118         {
   119         TheTest.Printf(_L("  Feature: %08X\r\n"), farray[i].iUid);
   120         }
   121     /////////////////////////////////////////////////////////////
   122     RFeatureArray farray2;
   123     for(TInt i=0;i<farray.Count();++i)
   124         {
   125         err = farray2.Append(farray[i]); 
   126         TEST2(err, KErrNone);
   127         }
   128     
   129     err = ctrl.FeaturesSupported(farray2);
   130     TEST2(err, KErrNone);
   131 
   132     TheTest.Printf(_L("RFeatureControl::FeaturesSupported()\r\n"));
   133     for(TInt i=0;i<farray2.Count();++i)
   134         {
   135         TheTest.Printf(_L("  Feature: %08X, Flags: %08X, Data: %08X\r\n"), farray2[i].FeatureUid(), farray2[i].FeatureFlags().iFlags, farray2[i].FeatureData());
   136         }
   137     
   138     RFeatureArray farray3;
   139     err = ctrl.FeaturesSupported(farray3);
   140     TEST2(err, KErrArgument);
   141     
   142     /////////////////////////////////////////////////////////////
   143     farray2.Close();
   144     farray.Close();
   145     ctrl.Close();
   146     ctrl.Close();//It should be safe to call Close() again
   147     }
   148 
   149 /** 
   150 @SYMTestCaseID          PDS-EFM-CT-4061
   151 @SYMTestCaseDesc        
   152 @SYMTestPriority        High
   153 @SYMTestActions         
   154 @SYMTestExpectedResults Test must not fail
   155 @SYMDEF                 DEF144262
   156 */
   157 void FeatureControlTest2()
   158     {
   159     RFeatureControl ctrl;
   160     TInt err = ctrl.Open();
   161     TEST2(err, KErrNone);
   162     /////////////////////////////////////////////////////////////
   163     RFeatureUidArray farray;
   164     err = ctrl.ListSupportedFeatures(farray);
   165     TEST2(err, KErrNone);
   166     for(TInt i=0;i<farray.Count();++i)
   167         {
   168         err = ctrl.FeatureSupported(farray[i]);
   169         TEST2(err, KFeatureSupported);
   170         
   171         TFeatureEntry feat(farray[i]);
   172         err = ctrl.FeatureSupported(feat);
   173         TEST2(err, KFeatureSupported);
   174         }
   175 
   176     err = ctrl.FeatureSupported(TUid::Uid(KInvalidFeatureId1));
   177     TEST2(err, KErrNotFound);
   178 
   179     TFeatureEntry feat1(TUid::Uid(KInvalidFeatureId1));
   180     err = ctrl.FeatureSupported(feat1);
   181     TEST2(err, KErrNotFound);
   182 
   183     const TUint KFlags = 0x0134357;
   184     const TUint KData = 0xAB5234;
   185     TFeatureEntry feat2(TUid::Uid(KInvalidFeatureId1), KFlags, KData);
   186     err = ctrl.FeatureSupported(feat2);
   187     TEST2(err, KErrNotFound);
   188     
   189     /////////////////////////////////////////////////////////////
   190     farray.Close();
   191     ctrl.Close();
   192     }
   193 
   194 /** 
   195 @SYMTestCaseID          PDS-EFM-CT-4062
   196 @SYMTestCaseDesc        
   197 @SYMTestPriority        High
   198 @SYMTestActions         
   199 @SYMTestExpectedResults Test must not fail
   200 @SYMDEF                 DEF144262
   201 */
   202 void FeatureControlTest3()
   203     {
   204     RFeatureControl ctrl;
   205     TInt err = ctrl.Open();
   206     TEST2(err, KErrNone);
   207     
   208     //Retrieve a uid list of all supported features
   209     RFeatureUidArray farray;
   210     err = ctrl.ListSupportedFeatures(farray);
   211     TEST2(err, KErrNone);
   212     //Retrieve a TFeaureEntry list of all supported features
   213     RFeatureArray farray2;
   214     for(TInt i=0;i<farray.Count();++i)
   215         {
   216         err = farray2.Append(farray[i]); 
   217         TEST2(err, KErrNone);
   218         }
   219     err = ctrl.FeaturesSupported(farray2);
   220     TEST2(err, KErrNone);
   221     //Play with EnableFeature()/DisableFeature() calls. If the EFeatureModifiable flag is not set then 
   222     //the feature cannot be enabled or disabled.
   223     for(TInt i=0;i<farray2.Count();++i)
   224         {
   225         const TFeatureEntry& fentry = farray2[i];
   226         TBitFlags32 flags = fentry.FeatureFlags();
   227         
   228         err = ctrl.DisableFeature(fentry.FeatureUid());
   229         TEST2(err, flags.IsSet(EFeatureModifiable) ? KErrNone : KErrAccessDenied);
   230         
   231         err = ctrl.EnableFeature(fentry.FeatureUid());
   232         TEST2(err, flags.IsSet(EFeatureModifiable) ? KErrNone : KErrAccessDenied);
   233         }
   234     //It is impossible to set non-existing feature
   235     const TUid KNewFeatureUid = {0x7888ABCD}; 
   236     err = ctrl.SetFeature(KNewFeatureUid, ETrue, 0x0);
   237     TEST2(err, KErrNotFound);
   238     //It is impossible to set non-modifiable feature
   239     TBitFlags32 flags = farray2[0].FeatureFlags();
   240     err = ctrl.SetFeature(farray2[0].FeatureUid(), ETrue, 0x0);
   241     TEST2(err, flags.IsSet(EFeatureModifiable) ? KErrNone : KErrAccessDenied);
   242     //Add new feature
   243     flags.ClearAll();
   244     flags.Set(EFeatureSupported);
   245     flags.Set(EFeatureModifiable);
   246     TFeatureEntry fentry(KNewFeatureUid, flags, 0x0);
   247     err = ctrl.AddFeature(fentry);
   248     TEST2(err, KErrNone);
   249     //Retrieve the new feature and check flags
   250     err = ctrl.FeatureSupported(fentry);
   251     TEST2(err, KFeatureSupported);
   252     flags = fentry.FeatureFlags();
   253     TEST(flags.IsSet(EFeatureSupported));
   254     TEST(flags.IsSet(EFeatureModifiable));
   255     //Now, it should be possible to set the new feature - it is modifiable.
   256     err = ctrl.SetFeature(fentry.FeatureUid(), ETrue, 0x0);
   257     TEST2(err, KErrNone);
   258     err = ctrl.SetFeature(fentry.FeatureUid(), EFalse, 0x0);
   259     TEST2(err, KErrNone);
   260     //Enable/disable
   261     err = ctrl.EnableFeature(fentry.FeatureUid());
   262     TEST2(err, KErrNone);
   263     err = ctrl.DisableFeature(fentry.FeatureUid());
   264     TEST2(err, KErrNone);
   265     //Delete the added feature
   266     err = ctrl.DeleteFeature(fentry.FeatureUid());
   267     TEST2(err, KErrNone);
   268     err = ctrl.DeleteFeature(fentry.FeatureUid());
   269     TEST2(err, KErrNotFound);
   270     
   271     /////////////////////////////////////////////////////////////
   272     farray2.Close();
   273     farray.Close();
   274     ctrl.Close();
   275     }
   276 
   277 /** 
   278 @SYMTestCaseID          PDS-EFM-CT-4063
   279 @SYMTestCaseDesc        
   280 @SYMTestPriority        High
   281 @SYMTestActions         
   282 @SYMTestExpectedResults Test must not fail
   283 @SYMDEF                 DEF144262
   284 */
   285 void FeatureDiscoveryTest1L()
   286     {
   287     TBool rc = CFeatureDiscovery::IsFeatureSupportedL(KInvalidFeatureId1);
   288     TEST(!rc);
   289     rc = CFeatureDiscovery::IsFeatureSupportedL(SupportedFeature.iUid);
   290     TEST(rc);
   291     
   292     rc = CFeatureDiscovery::IsFeatureSupportedL(KInvalidFeatureUid1);
   293     TEST(!rc);
   294     rc = CFeatureDiscovery::IsFeatureSupportedL(SupportedFeature);
   295     TEST(rc);
   296 
   297     CFeatureDiscovery* fdiscovery = CFeatureDiscovery::NewLC();
   298     
   299     rc = fdiscovery->IsSupported(KInvalidFeatureId1);
   300     TEST(!rc);
   301     rc = fdiscovery->IsSupported(SupportedFeature.iUid);
   302     TEST(rc);
   303 
   304     rc = fdiscovery->IsSupported(KInvalidFeatureUid1);
   305     TEST(!rc);
   306     rc = fdiscovery->IsSupported(SupportedFeature);
   307     TEST(rc);
   308     
   309     CleanupStack::PopAndDestroy(fdiscovery);
   310     }
   311 
   312 void DoFeatureDiscoveryTest2L(TBool aStaticMethodsUsed)
   313     {
   314     CFeatureDiscovery* fdiscovery = NULL;
   315     if(!aStaticMethodsUsed)
   316         {
   317         fdiscovery = CFeatureDiscovery::NewL();
   318         }
   319     //////////////////////////////////////////////////////////
   320     //A test with a set: one valid and one invalid feature 
   321     TFeatureSet fset;
   322     TInt err = fset.Append(SupportedFeature);
   323     TEST2(err, KErrNone);
   324     err = fset.Append(KInvalidFeatureUid1);
   325     TEST2(err, KErrNone);
   326     TBool rc = fset.IsFeatureSupported(SupportedFeature);
   327     TEST(!rc);
   328     rc = fset.IsFeatureSupported(KInvalidFeatureUid1);
   329     TEST(!rc);
   330     if(aStaticMethodsUsed)
   331         {
   332         TRAP(err, CFeatureDiscovery::FeaturesSupportedL(fset));
   333         }
   334     else
   335         {
   336         err = fdiscovery->FeaturesSupported(fset);
   337         }
   338     TEST2(err, KErrNone);
   339     rc = fset.IsFeatureSupported(SupportedFeature);
   340     TEST(rc);
   341     rc = fset.IsFeatureSupported(KInvalidFeatureUid1);
   342     TEST(!rc);
   343     rc = fset.AreAllFeaturesSupported();
   344     TEST(!rc);
   345     //////////////////////////////////////////////////////////
   346     //A test with an empty set 
   347     TFeatureSet fset2;
   348     rc = fset2.IsFeatureSupported(SupportedFeature);
   349     TEST(!rc);
   350     rc = fset2.IsFeatureSupported(KInvalidFeatureUid1);
   351     TEST(!rc);
   352     if(aStaticMethodsUsed)
   353         {
   354         TRAP(err, CFeatureDiscovery::FeaturesSupportedL(fset2));
   355         }
   356     else
   357         {
   358         err = fdiscovery->FeaturesSupported(fset2);
   359         }
   360     TEST2(err, KErrArgument);
   361     rc = fset2.IsFeatureSupported(SupportedFeature);
   362     TEST(!rc);
   363     rc = fset2.IsFeatureSupported(KInvalidFeatureUid1);
   364     TEST(!rc);
   365     rc = fset2.AreAllFeaturesSupported();
   366     TEST(rc);//because fset2 is empty
   367     //////////////////////////////////////////////////////////
   368     //A test with a set: two valid features 
   369     TFeatureSet fset3;
   370     err = fset3.Append(SupportedFeature);
   371     TEST2(err, KErrNone);
   372     err = fset3.Append(SupportedFeature2);
   373     TEST2(err, KErrNone);
   374     if(aStaticMethodsUsed)
   375         {
   376         TRAP(err, CFeatureDiscovery::FeaturesSupportedL(fset3));
   377         }
   378     else
   379         {
   380         err = fdiscovery->FeaturesSupported(fset3);
   381         }
   382     TEST2(err, KErrNone);
   383     rc = fset3.IsFeatureSupported(SupportedFeature);
   384     TEST(rc);
   385     rc = fset3.IsFeatureSupported(SupportedFeature2);
   386     TEST(rc);
   387     rc = fset3.AreAllFeaturesSupported();
   388     TEST(rc);
   389     //////////////////////////////////////////////////////////
   390     delete fdiscovery;
   391    }
   392 
   393 /** 
   394 @SYMTestCaseID          PDS-EFM-CT-4064
   395 @SYMTestCaseDesc        
   396 @SYMTestPriority        High
   397 @SYMTestActions         
   398 @SYMTestExpectedResults Test must not fail
   399 @SYMDEF                 DEF144262
   400 */
   401 void FeatureDiscoveryTest2L()
   402     {
   403     DoFeatureDiscoveryTest2L(ETrue);
   404     DoFeatureDiscoveryTest2L(EFalse);
   405     }
   406 
   407 void FeatureTestPreparation()
   408     {
   409     RFeatureControl ctrl;
   410     TInt err = ctrl.Open();
   411     TEST2(err, KErrNone);
   412     /////////////////////////////////////////////////////////////
   413     RFeatureUidArray farray;
   414     TheTest.Printf(_L("Getting supported feature for CFeatureDiscovery test\r\n"));
   415     err = ctrl.ListSupportedFeatures(farray);
   416     if (err == KErrNone && farray.Count() > 1)
   417         {
   418         SupportedFeature = farray[0]; //Take the first supported value
   419         SupportedFeature2 = farray[1]; //Take the first supported value
   420         }
   421     else
   422         {
   423         TheTest.Printf(_L("Warning: Failed to get supported feature for testing. CFeatureDiscovery tests are going to fail\r\n"));
   424         }
   425     farray.Close();
   426     ctrl.Close();
   427     }
   428 
   429 void DoTestsL()
   430     {
   431     FeatureTestPreparation(); //Preparation for the test.
   432     TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4059 FeatureManager::FeatureSupported() test"));
   433     FeatureSupportedTestL();
   434     TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4060 RFeatureControl tests-1"));
   435     FeatureControlTest1();
   436     TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4061 RFeatureControl tests-2"));
   437     FeatureControlTest2();
   438     TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4062 RFeatureControl tests-3"));
   439     FeatureControlTest3();
   440     TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4063 CFeatureDiscovery tests-1"));
   441     FeatureDiscoveryTest1L();
   442     TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4064 CFeatureDiscovery & TFeatureSet tests"));
   443     FeatureDiscoveryTest2L();
   444     }
   445 
   446 TInt E32Main()
   447     {
   448     TheTest.Title();
   449     
   450     CTrapCleanup* tc = CTrapCleanup::New();
   451     TheTest(tc != NULL);
   452     
   453     __UHEAP_MARK;
   454     
   455     TRAPD(err, DoTestsL());
   456     DestroyTestEnv();
   457     TEST2(err, KErrNone);
   458 
   459     __UHEAP_MARKEND;
   460     
   461     TheTest.End();
   462     TheTest.Close();
   463     
   464     delete tc;
   465 
   466     User::Heap().Check();
   467     return KErrNone;
   468     }