os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrnotify.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 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 <featmgr.h>
sl@0
    18
#include <featureuids.h>
sl@0
    19
#include <featurecontrol.h>
sl@0
    20
#include <featurenotifier.h>
sl@0
    21
sl@0
    22
using namespace NFeature;
sl@0
    23
sl@0
    24
const TUid KNewFeatureUid = {0x7888ABCA}; 
sl@0
    25
const TUid KNewFeatureUid2 = {0x7888ABCB}; 
sl@0
    26
sl@0
    27
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    28
sl@0
    29
static RTest TheTest(_L("t_fmgrnotify"));
sl@0
    30
sl@0
    31
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    32
sl@0
    33
//Deletes all created test files.
sl@0
    34
void DestroyTestEnv()
sl@0
    35
    {
sl@0
    36
    }
sl@0
    37
sl@0
    38
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    39
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    40
//Test macros and functions
sl@0
    41
void Check1(TInt aValue, TInt aLine)
sl@0
    42
    {
sl@0
    43
    if(!aValue)
sl@0
    44
        {
sl@0
    45
        DestroyTestEnv();
sl@0
    46
        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
sl@0
    47
        TheTest(EFalse, aLine);
sl@0
    48
        }
sl@0
    49
    }
sl@0
    50
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    51
    {
sl@0
    52
    if(aValue != aExpected)
sl@0
    53
        {
sl@0
    54
        DestroyTestEnv();
sl@0
    55
        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
sl@0
    56
        TheTest(EFalse, aLine);
sl@0
    57
        }
sl@0
    58
    }
sl@0
    59
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    60
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    61
sl@0
    62
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    63
sl@0
    64
_LIT(KFeatureNoChange,          "FeatureNoChange");
sl@0
    65
_LIT(KFeatureStatusUpdated,     "FeatureStatusUpdated");
sl@0
    66
_LIT(KFeatureDataUpdated,       "FeatureDataUpdated");
sl@0
    67
_LIT(KFeatureStatusDataUpdated, "FeatureStatusDataUpdated");
sl@0
    68
_LIT(KFeatureRediscover,        "FeatureRediscover");
sl@0
    69
_LIT(KFeatureCreated,           "FeatureCreated");
sl@0
    70
_LIT(KFeatureDeleted,           "FeatureDeleted");
sl@0
    71
sl@0
    72
const TPtrC KNotificationText[] = {KFeatureNoChange(), KFeatureStatusUpdated(), KFeatureDataUpdated(), 
sl@0
    73
                                   KFeatureStatusDataUpdated(), KFeatureRediscover(), KFeatureCreated(), 
sl@0
    74
                                   KFeatureDeleted()};
sl@0
    75
sl@0
    76
class TTestFeatureObserver : public MFeatureObserver
sl@0
    77
    {
sl@0
    78
public:
sl@0
    79
    TTestFeatureObserver() :
sl@0
    80
        iType(static_cast <TFeatureChangeType> (-1)),
sl@0
    81
        iFeatureUid(KNullUid)    
sl@0
    82
        {
sl@0
    83
        }
sl@0
    84
    void SetExpected(TFeatureChangeType aType, TUid aFeatureUid)
sl@0
    85
        {
sl@0
    86
        iType = aType;
sl@0
    87
        iFeatureUid = aFeatureUid;    
sl@0
    88
        }
sl@0
    89
    void Reset()
sl@0
    90
        {
sl@0
    91
        iType = static_cast <TFeatureChangeType> (-1);
sl@0
    92
        iFeatureUid = KNullUid;    
sl@0
    93
        }
sl@0
    94
    virtual void HandleNotifyChange(TFeatureChangeType aType, TFeatureEntry aFeature)
sl@0
    95
        {
sl@0
    96
        TheTest.Printf(_L("=== HandleNotifyChange() called with aType=\"%S\" and aFeature.FeatureUid()=0x%X\r\n"), &KNotificationText[aType], aFeature.FeatureUid());
sl@0
    97
        CActiveScheduler::Stop();
sl@0
    98
        TEST2(aType, iType);
sl@0
    99
        TEST(aFeature.FeatureUid() == iFeatureUid);
sl@0
   100
        }
sl@0
   101
    virtual void HandleNotifyError(TInt aError)
sl@0
   102
        {
sl@0
   103
        TheTest.Printf(_L("=== HandleNotifyError() called with error=%d\r\n"), aError);
sl@0
   104
        CActiveScheduler::Stop();
sl@0
   105
        TEST2(aError, KErrNone);
sl@0
   106
        }
sl@0
   107
private:
sl@0
   108
        TFeatureChangeType  iType;
sl@0
   109
        TUid                iFeatureUid;    
sl@0
   110
    };
sl@0
   111
sl@0
   112
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   113
sl@0
   114
void AddFeature(RFeatureControl& aCtrl, TUid aFeatureUid)
sl@0
   115
    {
sl@0
   116
    TBitFlags32 flags;
sl@0
   117
    flags.ClearAll();
sl@0
   118
    flags.Set(EFeatureSupported);
sl@0
   119
    flags.Set(EFeatureModifiable);
sl@0
   120
    TFeatureEntry fentry(aFeatureUid, flags, 0x0);
sl@0
   121
    TInt err = aCtrl.AddFeature(fentry);
sl@0
   122
    TEST2(err, KErrNone);
sl@0
   123
    }
sl@0
   124
sl@0
   125
void DeleteFeature(RFeatureControl& aCtrl, TUid aFeatureUid)
sl@0
   126
    {
sl@0
   127
    TInt err = aCtrl.DeleteFeature(aFeatureUid);
sl@0
   128
    TEST2(err, KErrNone);
sl@0
   129
    }
sl@0
   130
sl@0
   131
/**
sl@0
   132
@SYMTestCaseID          PDS-FEATMGR-CT-????
sl@0
   133
@SYMTestCaseDesc        
sl@0
   134
@SYMTestPriority        High
sl@0
   135
@SYMTestActions         
sl@0
   136
@SYMTestExpectedResults Test must not fail
sl@0
   137
@SYMDEF                 DEF144262
sl@0
   138
*/
sl@0
   139
void NotificationsTest1()
sl@0
   140
    {
sl@0
   141
    TTestFeatureObserver observer;
sl@0
   142
    CFeatureNotifier* notifier = NULL;
sl@0
   143
    TRAPD(err, notifier = CFeatureNotifier::NewL(observer));
sl@0
   144
    TEST2(err, KErrNone);
sl@0
   145
    //Request notification for feature with KNewFeatureUid uid.
sl@0
   146
    err = notifier->NotifyRequest(KNewFeatureUid);
sl@0
   147
    TEST2(err, KErrNone);
sl@0
   148
    err = notifier->NotifyRequest(KNewFeatureUid);
sl@0
   149
    TEST2(err, KErrAlreadyExists);
sl@0
   150
    
sl@0
   151
    RFeatureControl ctrl;
sl@0
   152
    err = ctrl.Connect();
sl@0
   153
    TEST2(err, KErrNone);
sl@0
   154
    //Add a feature with KNewFeatureUid uid and check the notification
sl@0
   155
    AddFeature(ctrl, KNewFeatureUid);
sl@0
   156
    observer.SetExpected(EFeatureFeatureCreated, KNewFeatureUid);
sl@0
   157
    CActiveScheduler::Start();
sl@0
   158
    //Set the feature status and data and check the notification
sl@0
   159
    err = ctrl.SetFeature(KNewFeatureUid, ETrue, 100);
sl@0
   160
    TEST2(err, KErrNone);
sl@0
   161
    observer.SetExpected(EFeatureStatusDataUpdated, KNewFeatureUid);
sl@0
   162
    CActiveScheduler::Start();
sl@0
   163
    //Set the feature data and check the notification
sl@0
   164
    err = ctrl.SetFeature(KNewFeatureUid, 200);
sl@0
   165
    TEST2(err, KErrNone);
sl@0
   166
    observer.SetExpected(EFeatureDataUpdated, KNewFeatureUid);
sl@0
   167
    CActiveScheduler::Start();
sl@0
   168
    //Enable the feature (it is already enabled) and check the notification
sl@0
   169
    err = ctrl.EnableFeature(KNewFeatureUid);
sl@0
   170
    TEST2(err, KErrNone);
sl@0
   171
    observer.SetExpected(EFeatureNoChange, KNewFeatureUid);//the feature is enabled - no status change
sl@0
   172
    CActiveScheduler::Start();
sl@0
   173
    //Disable the feature and check the notification
sl@0
   174
    err = ctrl.DisableFeature(KNewFeatureUid);
sl@0
   175
    TEST2(err, KErrNone);
sl@0
   176
    observer.SetExpected(EFeatureStatusUpdated, KNewFeatureUid);
sl@0
   177
    CActiveScheduler::Start();
sl@0
   178
    //Cancel notifications
sl@0
   179
    err = notifier->NotifyCancel(KNewFeatureUid);
sl@0
   180
    TEST2(err, KErrNone);
sl@0
   181
    err = notifier->NotifyCancel(KNewFeatureUid);
sl@0
   182
    TEST2(err, KErrNotFound);
sl@0
   183
    //Request notifications again    
sl@0
   184
    err = notifier->NotifyRequest(KNewFeatureUid);
sl@0
   185
    TEST2(err, KErrNone);
sl@0
   186
    //Delete the feature and check the notification
sl@0
   187
    DeleteFeature(ctrl, KNewFeatureUid);
sl@0
   188
    observer.SetExpected(EFeatureFeatureDeleted, KNewFeatureUid);
sl@0
   189
    CActiveScheduler::Start();
sl@0
   190
    //Cleanup
sl@0
   191
    ctrl.Close();
sl@0
   192
    delete notifier;
sl@0
   193
    }
sl@0
   194
sl@0
   195
/**
sl@0
   196
@SYMTestCaseID          PDS-FEATMGR-CT-????
sl@0
   197
@SYMTestCaseDesc        
sl@0
   198
@SYMTestPriority        High
sl@0
   199
@SYMTestActions         
sl@0
   200
@SYMTestExpectedResults Test must not fail
sl@0
   201
@SYMDEF                 DEF144262
sl@0
   202
*/
sl@0
   203
void NotificationsTest2()
sl@0
   204
    {
sl@0
   205
    TTestFeatureObserver observer;
sl@0
   206
    CFeatureNotifier* notifier = NULL;
sl@0
   207
    TRAPD(err, notifier = CFeatureNotifier::NewL(observer));
sl@0
   208
    TEST2(err, KErrNone);
sl@0
   209
    
sl@0
   210
    RFeatureControl ctrl;
sl@0
   211
    err = ctrl.Connect();
sl@0
   212
    TEST2(err, KErrNone);
sl@0
   213
    //Add two features
sl@0
   214
    AddFeature(ctrl, KNewFeatureUid);
sl@0
   215
    AddFeature(ctrl, KNewFeatureUid2);
sl@0
   216
    //Request notifications for the added features. One of them - duplicated in the array.
sl@0
   217
    RFeatureUidArray farray;
sl@0
   218
    err = farray.Append(KNewFeatureUid);
sl@0
   219
    TEST2(err, KErrNone);
sl@0
   220
    err = farray.Append(KNewFeatureUid2);
sl@0
   221
    TEST2(err, KErrNone);
sl@0
   222
    err = farray.Append(KNewFeatureUid);
sl@0
   223
    TEST2(err, KErrNone);
sl@0
   224
    //
sl@0
   225
    err = notifier->NotifyRequest(farray);
sl@0
   226
    TEST2(err, KErrNone);
sl@0
   227
    //Enable one of the features (already enabled) and check the notification
sl@0
   228
    err = ctrl.EnableFeature(KNewFeatureUid);
sl@0
   229
    TEST2(err, KErrNone);
sl@0
   230
    observer.SetExpected(EFeatureNoChange, KNewFeatureUid);//the feature is enabled - no status change
sl@0
   231
    CActiveScheduler::Start();
sl@0
   232
    //Disable the second feature and check the notification
sl@0
   233
    err = ctrl.DisableFeature(KNewFeatureUid2);
sl@0
   234
    TEST2(err, KErrNone);
sl@0
   235
    observer.SetExpected(EFeatureStatusUpdated, KNewFeatureUid2);
sl@0
   236
    CActiveScheduler::Start();
sl@0
   237
    //Cancel notifications for the second feature
sl@0
   238
    err = notifier->NotifyCancel(KNewFeatureUid2);
sl@0
   239
    TEST2(err, KErrNone);
sl@0
   240
    //Disable the first feature and check notification
sl@0
   241
    err = ctrl.DisableFeature(KNewFeatureUid);
sl@0
   242
    TEST2(err, KErrNone);
sl@0
   243
    observer.SetExpected(EFeatureStatusUpdated, KNewFeatureUid);
sl@0
   244
    CActiveScheduler::Start();
sl@0
   245
    //Cancel all notifications
sl@0
   246
    err = notifier->NotifyCancelAll();
sl@0
   247
    TEST2(err, KErrNone);
sl@0
   248
    err = notifier->NotifyCancelAll();
sl@0
   249
    TEST2(err, KErrNone);
sl@0
   250
    //Cleanup
sl@0
   251
    farray.Close();
sl@0
   252
    ctrl.Close();
sl@0
   253
    delete notifier;
sl@0
   254
    }
sl@0
   255
sl@0
   256
void DoTestsL()
sl@0
   257
    {
sl@0
   258
    CActiveScheduler* scheduler = new CActiveScheduler;
sl@0
   259
    TEST(scheduler != NULL);
sl@0
   260
    CActiveScheduler::Install(scheduler);
sl@0
   261
    
sl@0
   262
    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4066 Notifications test 1"));
sl@0
   263
    NotificationsTest1();
sl@0
   264
sl@0
   265
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4067 Notifications test 2"));
sl@0
   266
    NotificationsTest2();
sl@0
   267
    
sl@0
   268
    delete scheduler;
sl@0
   269
    }
sl@0
   270
sl@0
   271
TInt E32Main()
sl@0
   272
    {
sl@0
   273
    TheTest.Title();
sl@0
   274
    
sl@0
   275
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   276
    TheTest(tc != NULL);
sl@0
   277
    
sl@0
   278
    __UHEAP_MARK;
sl@0
   279
    
sl@0
   280
    TRAPD(err, DoTestsL());
sl@0
   281
    DestroyTestEnv();
sl@0
   282
    TEST2(err, KErrNone);
sl@0
   283
sl@0
   284
    __UHEAP_MARKEND;
sl@0
   285
    
sl@0
   286
    TheTest.End();
sl@0
   287
    TheTest.Close();
sl@0
   288
    
sl@0
   289
    delete tc;
sl@0
   290
sl@0
   291
    User::Heap().Check();
sl@0
   292
    return KErrNone;
sl@0
   293
    }