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