os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrswi.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 <f32file.h>
    18 #include <sacls.h>
    19 #include <e32property.h>
    20 #include <featmgr.h>
    21 #include <featureuids.h>
    22 #include <featurecontrol.h>
    23 #include <featdiscovery.h>
    24 #include "../src/inc/featmgrconfiguration.h"
    25 
    26 ///////////////////////////////////////////////////////////////////////////////////////
    27 
    28 static RTest TheTest(_L("t_fmgrswi"));
    29 
    30 const TUid KNewFeatureUid = {0x7888ABC2}; 
    31 
    32 ///////////////////////////////////////////////////////////////////////////////////////
    33 
    34 //Deletes all created test files.
    35 void DestroyTestEnv()
    36     {
    37     }
    38 
    39 ///////////////////////////////////////////////////////////////////////////////////////
    40 ///////////////////////////////////////////////////////////////////////////////////////
    41 //Test macros and functions
    42 void Check1(TInt aValue, TInt aLine)
    43     {
    44     if(!aValue)
    45         {
    46         DestroyTestEnv();
    47         RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    48         TheTest(EFalse, aLine);
    49         }
    50     }
    51 void Check2(TInt aValue, TInt aExpected, TInt aLine)
    52     {
    53     if(aValue != aExpected)
    54         {
    55         DestroyTestEnv();
    56         RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    57         TheTest(EFalse, aLine);
    58         }
    59     }
    60 #define TEST(arg) ::Check1((arg), __LINE__)
    61 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    62 
    63 ///////////////////////////////////////////////////////////////////////////////////////
    64 
    65 TInt KillProcess(const TDesC& aProcessName)
    66     {
    67     TFullName name;
    68     //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
    69     TBuf<64> pattern(aProcessName);
    70     TInt length = pattern.Length();
    71     pattern += _L("*");
    72     TFindProcess procFinder(pattern);
    73 
    74     while (procFinder.Next(name) == KErrNone)
    75         {
    76         if (name.Length() > length)
    77             {//If found name is a string containing aProcessName string.
    78             TChar c(name[length]);
    79             if (c.IsAlphaDigit() ||
    80                 c == TChar('_') ||
    81                 c == TChar('-'))
    82                 {
    83                 // If the found name is other valid application name
    84                 // starting with aProcessName string.
    85                 //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
    86                 continue;
    87                 }
    88             }
    89         RProcess proc;
    90         if (proc.Open(name) == KErrNone)
    91             {
    92             proc.Kill(0);
    93             //RDebug::Print(_L("\"%S\" process killed.\n"), &name);
    94             }
    95         proc.Close();
    96         }
    97     return KErrNone;
    98     }
    99 
   100 /**
   101 @SYMTestCaseID          PDS-EFM-CT-4111
   102 @SYMTestCaseDesc        The test demonstrates that there is a problem in the FeatMgr code that processes SWI events.
   103                         Test steps:
   104                         1) The test sets KSAUidSoftwareInstallKeyValue property in order to simulate that SWI has started.
   105                         2) The test calls RFeatureControl::SWIStart() to notify the server that SWI started.
   106                         3) The test adds a new feature. Since this happens during the SWI process the new feature
   107                            will be cached by the FeatMgr server.
   108                         4) The test simulates a file I/O error to happen on iteration #4. The failure should occur
   109                            at the moment when the server tries to persist the new feature that is in the cache.
   110                         5) The test notifies the server that SWI has completed: KSAUidSoftwareInstallKeyValue value set
   111                            and RFeatureControl::SWIEnd() called.
   112                            When the server receives the "end of SWI" notification, the server will try to persist
   113                            the cached new feature. But because of the simulated file I/O error the server will fail
   114                            to store the new feature to the features.dat file. But in accordance with the current
   115                            design of the server, no error will be reported back to the client.
   116                         6) The test kills the FeatMgr server. The server cache is gone.
   117                         7) The test restarts the server and attempts to request the new feature. The new feature
   118                            is missing.
   119 @SYMTestPriority        High
   120 @SYMTestActions         FeatMgr SWI test with simulated file I/O error during SWI.
   121 @SYMTestExpectedResults Test must not fail
   122 @SYMDEF                 DEF144262
   123 */
   124 void SWItest()
   125     {
   126     RFs fs;
   127     TInt err = fs.Connect();
   128     TEST2(err, KErrNone);
   129     //
   130     RFeatureControl ctrl;
   131     err = ctrl.Open();
   132     TEST2(err, KErrNone);
   133     //Simulate SWI start
   134     err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
   135     TEST2(err, KErrNone);
   136     //Notify FeatMgr server that SWI started
   137     err = ctrl.SWIStart();
   138     TEST2(err, KErrNone);
   139     //Add a new persistent feature (using the same SWI connection) 
   140     TBitFlags32 flags;
   141     flags.ClearAll();
   142     flags.Set(EFeatureSupported);
   143     flags.Set(EFeatureModifiable);
   144     flags.Set(EFeaturePersisted);
   145     TFeatureEntry fentry(KNewFeatureUid, flags, 9876);
   146     err = ctrl.AddFeature(fentry);
   147     TEST2(err, KErrNone);
   148     //Simulate file I/O error
   149     (void)fs.SetErrorCondition(KErrGeneral, 4);
   150     //Complete the SWI simulation
   151     err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall | ESASwisStatusSuccess);
   152     TEST2(err, KErrNone);
   153     //Notify FeatMgr server that SWI completed
   154     err = ctrl.SWIEnd();
   155     TEST2(err, KErrNone);
   156     //Cleanup
   157     ctrl.Close();
   158     (void)fs.SetErrorCondition(KErrNone);
   159     fs.Close();
   160     //Kill FeatMgr server
   161     err = KillProcess(KServerProcessName);
   162     TEST2(err, KErrNone);
   163     //Open new connection
   164     err = ctrl.Open();
   165     TEST2(err, KErrNone);
   166     //The feature should be there
   167     TFeatureEntry fentry2(KNewFeatureUid);
   168     err = ctrl.FeatureSupported(fentry2);
   169     TEST2(err, KFeatureSupported);
   170     TEST2(fentry2.FeatureData(), fentry.FeatureData());
   171     //Cleanup
   172     err = ctrl.DeleteFeature(KNewFeatureUid);
   173     TEST2(err, KErrNone);
   174     ctrl.Close();
   175     }
   176 
   177 void DoTestsL()
   178     {
   179     CActiveScheduler* scheduler = new CActiveScheduler;
   180     TEST(scheduler != NULL);
   181     CActiveScheduler::Install(scheduler);
   182     
   183     TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4111 SWI test"));
   184     SWItest();
   185     
   186     delete scheduler;
   187     }
   188 
   189 TInt E32Main()
   190     {
   191     TheTest.Title();
   192     
   193     CTrapCleanup* tc = CTrapCleanup::New();
   194     TheTest(tc != NULL);
   195     
   196     __UHEAP_MARK;
   197     
   198     TRAPD(err, DoTestsL());
   199     DestroyTestEnv();
   200     TEST2(err, KErrNone);
   201 
   202     __UHEAP_MARKEND;
   203     
   204     TheTest.End();
   205     TheTest.Close();
   206     
   207     delete tc;
   208 
   209     User::Heap().Check();
   210     return KErrNone;
   211     }