os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrswi.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_fmgrswi.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,211 @@
     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 <f32file.h>
    1.21 +#include <sacls.h>
    1.22 +#include <e32property.h>
    1.23 +#include <featmgr.h>
    1.24 +#include <featureuids.h>
    1.25 +#include <featurecontrol.h>
    1.26 +#include <featdiscovery.h>
    1.27 +#include "../src/inc/featmgrconfiguration.h"
    1.28 +
    1.29 +///////////////////////////////////////////////////////////////////////////////////////
    1.30 +
    1.31 +static RTest TheTest(_L("t_fmgrswi"));
    1.32 +
    1.33 +const TUid KNewFeatureUid = {0x7888ABC2}; 
    1.34 +
    1.35 +///////////////////////////////////////////////////////////////////////////////////////
    1.36 +
    1.37 +//Deletes all created test files.
    1.38 +void DestroyTestEnv()
    1.39 +    {
    1.40 +    }
    1.41 +
    1.42 +///////////////////////////////////////////////////////////////////////////////////////
    1.43 +///////////////////////////////////////////////////////////////////////////////////////
    1.44 +//Test macros and functions
    1.45 +void Check1(TInt aValue, TInt aLine)
    1.46 +    {
    1.47 +    if(!aValue)
    1.48 +        {
    1.49 +        DestroyTestEnv();
    1.50 +        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    1.51 +        TheTest(EFalse, aLine);
    1.52 +        }
    1.53 +    }
    1.54 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
    1.55 +    {
    1.56 +    if(aValue != aExpected)
    1.57 +        {
    1.58 +        DestroyTestEnv();
    1.59 +        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    1.60 +        TheTest(EFalse, aLine);
    1.61 +        }
    1.62 +    }
    1.63 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.64 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.65 +
    1.66 +///////////////////////////////////////////////////////////////////////////////////////
    1.67 +
    1.68 +TInt KillProcess(const TDesC& aProcessName)
    1.69 +    {
    1.70 +    TFullName name;
    1.71 +    //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
    1.72 +    TBuf<64> pattern(aProcessName);
    1.73 +    TInt length = pattern.Length();
    1.74 +    pattern += _L("*");
    1.75 +    TFindProcess procFinder(pattern);
    1.76 +
    1.77 +    while (procFinder.Next(name) == KErrNone)
    1.78 +        {
    1.79 +        if (name.Length() > length)
    1.80 +            {//If found name is a string containing aProcessName string.
    1.81 +            TChar c(name[length]);
    1.82 +            if (c.IsAlphaDigit() ||
    1.83 +                c == TChar('_') ||
    1.84 +                c == TChar('-'))
    1.85 +                {
    1.86 +                // If the found name is other valid application name
    1.87 +                // starting with aProcessName string.
    1.88 +                //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
    1.89 +                continue;
    1.90 +                }
    1.91 +            }
    1.92 +        RProcess proc;
    1.93 +        if (proc.Open(name) == KErrNone)
    1.94 +            {
    1.95 +            proc.Kill(0);
    1.96 +            //RDebug::Print(_L("\"%S\" process killed.\n"), &name);
    1.97 +            }
    1.98 +        proc.Close();
    1.99 +        }
   1.100 +    return KErrNone;
   1.101 +    }
   1.102 +
   1.103 +/**
   1.104 +@SYMTestCaseID          PDS-EFM-CT-4111
   1.105 +@SYMTestCaseDesc        The test demonstrates that there is a problem in the FeatMgr code that processes SWI events.
   1.106 +                        Test steps:
   1.107 +                        1) The test sets KSAUidSoftwareInstallKeyValue property in order to simulate that SWI has started.
   1.108 +                        2) The test calls RFeatureControl::SWIStart() to notify the server that SWI started.
   1.109 +                        3) The test adds a new feature. Since this happens during the SWI process the new feature
   1.110 +                           will be cached by the FeatMgr server.
   1.111 +                        4) The test simulates a file I/O error to happen on iteration #4. The failure should occur
   1.112 +                           at the moment when the server tries to persist the new feature that is in the cache.
   1.113 +                        5) The test notifies the server that SWI has completed: KSAUidSoftwareInstallKeyValue value set
   1.114 +                           and RFeatureControl::SWIEnd() called.
   1.115 +                           When the server receives the "end of SWI" notification, the server will try to persist
   1.116 +                           the cached new feature. But because of the simulated file I/O error the server will fail
   1.117 +                           to store the new feature to the features.dat file. But in accordance with the current
   1.118 +                           design of the server, no error will be reported back to the client.
   1.119 +                        6) The test kills the FeatMgr server. The server cache is gone.
   1.120 +                        7) The test restarts the server and attempts to request the new feature. The new feature
   1.121 +                           is missing.
   1.122 +@SYMTestPriority        High
   1.123 +@SYMTestActions         FeatMgr SWI test with simulated file I/O error during SWI.
   1.124 +@SYMTestExpectedResults Test must not fail
   1.125 +@SYMDEF                 DEF144262
   1.126 +*/
   1.127 +void SWItest()
   1.128 +    {
   1.129 +    RFs fs;
   1.130 +    TInt err = fs.Connect();
   1.131 +    TEST2(err, KErrNone);
   1.132 +    //
   1.133 +    RFeatureControl ctrl;
   1.134 +    err = ctrl.Open();
   1.135 +    TEST2(err, KErrNone);
   1.136 +    //Simulate SWI start
   1.137 +    err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
   1.138 +    TEST2(err, KErrNone);
   1.139 +    //Notify FeatMgr server that SWI started
   1.140 +    err = ctrl.SWIStart();
   1.141 +    TEST2(err, KErrNone);
   1.142 +    //Add a new persistent feature (using the same SWI connection) 
   1.143 +    TBitFlags32 flags;
   1.144 +    flags.ClearAll();
   1.145 +    flags.Set(EFeatureSupported);
   1.146 +    flags.Set(EFeatureModifiable);
   1.147 +    flags.Set(EFeaturePersisted);
   1.148 +    TFeatureEntry fentry(KNewFeatureUid, flags, 9876);
   1.149 +    err = ctrl.AddFeature(fentry);
   1.150 +    TEST2(err, KErrNone);
   1.151 +    //Simulate file I/O error
   1.152 +    (void)fs.SetErrorCondition(KErrGeneral, 4);
   1.153 +    //Complete the SWI simulation
   1.154 +    err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall | ESASwisStatusSuccess);
   1.155 +    TEST2(err, KErrNone);
   1.156 +    //Notify FeatMgr server that SWI completed
   1.157 +    err = ctrl.SWIEnd();
   1.158 +    TEST2(err, KErrNone);
   1.159 +    //Cleanup
   1.160 +    ctrl.Close();
   1.161 +    (void)fs.SetErrorCondition(KErrNone);
   1.162 +    fs.Close();
   1.163 +    //Kill FeatMgr server
   1.164 +    err = KillProcess(KServerProcessName);
   1.165 +    TEST2(err, KErrNone);
   1.166 +    //Open new connection
   1.167 +    err = ctrl.Open();
   1.168 +    TEST2(err, KErrNone);
   1.169 +    //The feature should be there
   1.170 +    TFeatureEntry fentry2(KNewFeatureUid);
   1.171 +    err = ctrl.FeatureSupported(fentry2);
   1.172 +    TEST2(err, KFeatureSupported);
   1.173 +    TEST2(fentry2.FeatureData(), fentry.FeatureData());
   1.174 +    //Cleanup
   1.175 +    err = ctrl.DeleteFeature(KNewFeatureUid);
   1.176 +    TEST2(err, KErrNone);
   1.177 +    ctrl.Close();
   1.178 +    }
   1.179 +
   1.180 +void DoTestsL()
   1.181 +    {
   1.182 +    CActiveScheduler* scheduler = new CActiveScheduler;
   1.183 +    TEST(scheduler != NULL);
   1.184 +    CActiveScheduler::Install(scheduler);
   1.185 +    
   1.186 +    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4111 SWI test"));
   1.187 +    SWItest();
   1.188 +    
   1.189 +    delete scheduler;
   1.190 +    }
   1.191 +
   1.192 +TInt E32Main()
   1.193 +    {
   1.194 +    TheTest.Title();
   1.195 +    
   1.196 +    CTrapCleanup* tc = CTrapCleanup::New();
   1.197 +    TheTest(tc != NULL);
   1.198 +    
   1.199 +    __UHEAP_MARK;
   1.200 +    
   1.201 +    TRAPD(err, DoTestsL());
   1.202 +    DestroyTestEnv();
   1.203 +    TEST2(err, KErrNone);
   1.204 +
   1.205 +    __UHEAP_MARKEND;
   1.206 +    
   1.207 +    TheTest.End();
   1.208 +    TheTest.Close();
   1.209 +    
   1.210 +    delete tc;
   1.211 +
   1.212 +    User::Heap().Check();
   1.213 +    return KErrNone;
   1.214 +    }