os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrpanic.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 "featurepanics.h"
sl@0
    20
#include <featurecontrol.h>
sl@0
    21
#include <featurenotifier.h>
sl@0
    22
sl@0
    23
using namespace NFeature;
sl@0
    24
sl@0
    25
static RTest TheTest(_L("t_fmgrpanic"));
sl@0
    26
sl@0
    27
_LIT(KPanicCategory, "RFeatureControl");
sl@0
    28
sl@0
    29
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    30
sl@0
    31
//Deletes all created test files.
sl@0
    32
void DestroyTestEnv()
sl@0
    33
    {
sl@0
    34
    }
sl@0
    35
sl@0
    36
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    37
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    38
//Test macros and functions
sl@0
    39
void Check1(TInt aValue, TInt aLine)
sl@0
    40
    {
sl@0
    41
    if(!aValue)
sl@0
    42
        {
sl@0
    43
        DestroyTestEnv();
sl@0
    44
        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
sl@0
    45
        TheTest(EFalse, aLine);
sl@0
    46
        }
sl@0
    47
    }
sl@0
    48
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    49
    {
sl@0
    50
    if(aValue != aExpected)
sl@0
    51
        {
sl@0
    52
        DestroyTestEnv();
sl@0
    53
        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
sl@0
    54
        TheTest(EFalse, aLine);
sl@0
    55
        }
sl@0
    56
    }
sl@0
    57
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    58
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    59
sl@0
    60
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    61
sl@0
    62
//Panic thread function. 
sl@0
    63
//It will cast aData parameter to a TFunctor pointer and call it.
sl@0
    64
//The expectation is that the called function will panic and kill the panic thread.
sl@0
    65
TInt ThreadFunc(void* aData)
sl@0
    66
    {
sl@0
    67
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
    68
    TEST(tc != NULL);
sl@0
    69
    
sl@0
    70
    User::SetJustInTime(EFalse);    // disable debugger panic handling
sl@0
    71
    
sl@0
    72
    TFunctor* obj = reinterpret_cast<TFunctor*> (aData);
sl@0
    73
    TEST(obj != NULL);
sl@0
    74
    (*obj)();//call the panic function
sl@0
    75
    
sl@0
    76
    delete tc;
sl@0
    77
    
sl@0
    78
    return KErrNone;        
sl@0
    79
    }
sl@0
    80
sl@0
    81
//Panic test.
sl@0
    82
//PanicTest function will create a new thread - panic thread, giving it a pointer to the function which has to
sl@0
    83
//be executed and the expectation is that the function will panic and kill the panic thread.
sl@0
    84
//PanicTest function will check the panic thread exit code, exit category and the panic code.
sl@0
    85
sl@0
    86
/**
sl@0
    87
@SYMTestCaseID          PDS-EFM-CT-4094
sl@0
    88
@SYMTestCaseDesc        Include test case 4105 too
sl@0
    89
@SYMTestPriority        High
sl@0
    90
@SYMTestActions         PanicTest function will create a new thread - panic 
sl@0
    91
                        thread, giving it a pointer to the function which has to
sl@0
    92
                        be executed and the expectation is that the function 
sl@0
    93
                        will panic and kill the panic thread.
sl@0
    94
                        PanicTest function will check the panic thread exit code,
sl@0
    95
                        exit category and the panic code.         
sl@0
    96
@SYMTestExpectedResults Test must not fail
sl@0
    97
@SYMDEF                 DEF144262
sl@0
    98
*/
sl@0
    99
void PanicTest(TFunctor& aFunctor, TExitType aExpectedExitType, const TDesC& aExpectedCategory, TInt aExpectedPanicCode)
sl@0
   100
    {
sl@0
   101
    RThread thread;
sl@0
   102
    _LIT(KThreadName,"FeatMgrPanicThread");
sl@0
   103
    TEST2(thread.Create(KThreadName, &ThreadFunc, 0x2000, 0x1000, 0x10000, (void*)&aFunctor, EOwnerThread), KErrNone);
sl@0
   104
    
sl@0
   105
    TRequestStatus status;
sl@0
   106
    thread.Logon(status);
sl@0
   107
    TEST2(status.Int(), KRequestPending);
sl@0
   108
    thread.Resume();
sl@0
   109
    User::WaitForRequest(status);
sl@0
   110
    User::SetJustInTime(ETrue); // enable debugger panic handling
sl@0
   111
sl@0
   112
    TEST2(thread.ExitType(), aExpectedExitType);
sl@0
   113
    TEST(thread.ExitCategory() == aExpectedCategory);
sl@0
   114
    TEST2(thread.ExitReason(), aExpectedPanicCode);
sl@0
   115
    
sl@0
   116
    CLOSE_AND_WAIT(thread);
sl@0
   117
    }
sl@0
   118
sl@0
   119
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   120
//////////////////////////////     Panic test functions    /////////////////////////////////////////////////
sl@0
   121
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   122
sl@0
   123
//1 Panic when calling RFeatureControl::FeatureSupported() on an invalid RFeatureControl object.
sl@0
   124
class TFeatureControl_NotCreated_FeatureSupported1 : public TFunctor
sl@0
   125
    {
sl@0
   126
private:        
sl@0
   127
    virtual void operator()()
sl@0
   128
        {
sl@0
   129
        RFeatureControl ctrl;
sl@0
   130
        (void)ctrl.FeatureSupported(KConnectivity);
sl@0
   131
        }
sl@0
   132
    };
sl@0
   133
static TFeatureControl_NotCreated_FeatureSupported1 TheFeatureControl_NotCreated_FeatureSupported1;
sl@0
   134
sl@0
   135
//2 Panic when calling RFeatureControl::FeatureSupported() on an invalid RFeatureControl object.
sl@0
   136
class TFeatureControl_NotCreated_FeatureSupported2 : public TFunctor
sl@0
   137
    {
sl@0
   138
private:        
sl@0
   139
    virtual void operator()()
sl@0
   140
        {
sl@0
   141
        RFeatureControl ctrl;
sl@0
   142
        TFeatureEntry fentry;
sl@0
   143
        (void)ctrl.FeatureSupported(fentry);
sl@0
   144
        }
sl@0
   145
    };
sl@0
   146
static TFeatureControl_NotCreated_FeatureSupported2 TheFeatureControl_NotCreated_FeatureSupported2;
sl@0
   147
sl@0
   148
//Panic when calling RFeatureControl::FeaturesSupported() on an invalid RFeatureControl object.
sl@0
   149
class TFeatureControl_NotCreated_FeaturesSupported : public TFunctor
sl@0
   150
    {
sl@0
   151
private:        
sl@0
   152
    virtual void operator()()
sl@0
   153
        {
sl@0
   154
        RFeatureControl ctrl;
sl@0
   155
        RFeatureArray farray;
sl@0
   156
        TFeatureEntry fentry;
sl@0
   157
        TInt err = farray.Append(fentry);
sl@0
   158
        TEST2(err, KErrNone);
sl@0
   159
        (void)ctrl.FeaturesSupported(farray);
sl@0
   160
        }
sl@0
   161
    };
sl@0
   162
static TFeatureControl_NotCreated_FeaturesSupported TheFeatureControl_NotCreated_FeaturesSupported;
sl@0
   163
sl@0
   164
//Panic when calling RFeatureControl::EnableFeature() on an invalid RFeatureControl object.
sl@0
   165
class TFeatureControl_NotCreated_EnableFeature : public TFunctor
sl@0
   166
    {
sl@0
   167
private:        
sl@0
   168
    virtual void operator()()
sl@0
   169
        {
sl@0
   170
        RFeatureControl ctrl;
sl@0
   171
        (void)ctrl.EnableFeature(KConnectivity);
sl@0
   172
        }
sl@0
   173
    };
sl@0
   174
static TFeatureControl_NotCreated_EnableFeature TheFeatureControl_NotCreated_EnableFeature;
sl@0
   175
sl@0
   176
//Panic when calling RFeatureControl::DisableFeature() on an invalid RFeatureControl object.
sl@0
   177
class TFeatureControl_NotCreated_DisableFeature : public TFunctor
sl@0
   178
    {
sl@0
   179
private:        
sl@0
   180
    virtual void operator()()
sl@0
   181
        {
sl@0
   182
        RFeatureControl ctrl;
sl@0
   183
        (void)ctrl.DisableFeature(KConnectivity);
sl@0
   184
        }
sl@0
   185
    };
sl@0
   186
static TFeatureControl_NotCreated_DisableFeature TheFeatureControl_NotCreated_DisableFeature;
sl@0
   187
sl@0
   188
//1 Panic when calling RFeatureControl::SetFeature() on an invalid RFeatureControl object.
sl@0
   189
class TFeatureControl_NotCreated_SetFeature1 : public TFunctor
sl@0
   190
    {
sl@0
   191
private:        
sl@0
   192
    virtual void operator()()
sl@0
   193
        {
sl@0
   194
        RFeatureControl ctrl;
sl@0
   195
        (void)ctrl.SetFeature(KConnectivity, EFalse, 0);
sl@0
   196
        }
sl@0
   197
    };
sl@0
   198
static TFeatureControl_NotCreated_SetFeature1 TheFeatureControl_NotCreated_SetFeature1;
sl@0
   199
sl@0
   200
//2 Panic when calling RFeatureControl::SetFeature() on an invalid RFeatureControl object.
sl@0
   201
class TFeatureControl_NotCreated_SetFeature2 : public TFunctor
sl@0
   202
    {
sl@0
   203
private:        
sl@0
   204
    virtual void operator()()
sl@0
   205
        {
sl@0
   206
        RFeatureControl ctrl;
sl@0
   207
        (void)ctrl.SetFeature(KConnectivity, 0);
sl@0
   208
        }
sl@0
   209
    };
sl@0
   210
static TFeatureControl_NotCreated_SetFeature2 TheFeatureControl_NotCreated_SetFeature2;
sl@0
   211
sl@0
   212
//Panic when calling RFeatureControl::AddFeature() on an invalid RFeatureControl object.
sl@0
   213
class TFeatureControl_NotCreated_AddFeature : public TFunctor
sl@0
   214
    {
sl@0
   215
private:        
sl@0
   216
    virtual void operator()()
sl@0
   217
        {
sl@0
   218
        RFeatureControl ctrl;
sl@0
   219
        TFeatureEntry fentry;
sl@0
   220
        (void)ctrl.AddFeature(fentry);
sl@0
   221
        }
sl@0
   222
    };
sl@0
   223
static TFeatureControl_NotCreated_AddFeature TheFeatureControl_NotCreated_AddFeature;
sl@0
   224
sl@0
   225
//Panic when calling RFeatureControl::DeleteFeature() on an invalid RFeatureControl object.
sl@0
   226
class TFeatureControl_NotCreated_DeleteFeature : public TFunctor
sl@0
   227
    {
sl@0
   228
private:        
sl@0
   229
    virtual void operator()()
sl@0
   230
        {
sl@0
   231
        RFeatureControl ctrl;
sl@0
   232
        (void)ctrl.DeleteFeature(KConnectivity);
sl@0
   233
        }
sl@0
   234
    };
sl@0
   235
static TFeatureControl_NotCreated_DeleteFeature TheFeatureControl_NotCreated_DeleteFeature;
sl@0
   236
sl@0
   237
//Panic when calling RFeatureControl::ListSupportedFeatures() on an invalid RFeatureControl object.
sl@0
   238
class TFeatureControl_NotCreated_ListSupportedFeatures : public TFunctor
sl@0
   239
    {
sl@0
   240
private:        
sl@0
   241
    virtual void operator()()
sl@0
   242
        {
sl@0
   243
        RFeatureControl ctrl;
sl@0
   244
        RFeatureUidArray farray;
sl@0
   245
        (void)ctrl.ListSupportedFeatures(farray);
sl@0
   246
        }
sl@0
   247
    };
sl@0
   248
static TFeatureControl_NotCreated_ListSupportedFeatures TheFeatureControl_NotCreated_ListSupportedFeatures;
sl@0
   249
sl@0
   250
//Panic when calling RFeatureControl::SWIStart() on an invalid RFeatureControl object.
sl@0
   251
class TFeatureControl_NotCreated_SWIStart : public TFunctor
sl@0
   252
    {
sl@0
   253
private:        
sl@0
   254
    virtual void operator()()
sl@0
   255
        {
sl@0
   256
        RFeatureControl ctrl;
sl@0
   257
        (void)ctrl.SWIStart();
sl@0
   258
        }
sl@0
   259
    };
sl@0
   260
static TFeatureControl_NotCreated_SWIStart TheFeatureControl_NotCreated_SWIStart;
sl@0
   261
sl@0
   262
//Panic when calling RFeatureControl::SWIEnd() on an invalid RFeatureControl object.
sl@0
   263
class TFeatureControl_NotCreated_SWIEnd : public TFunctor
sl@0
   264
    {
sl@0
   265
private:        
sl@0
   266
    virtual void operator()()
sl@0
   267
        {
sl@0
   268
        RFeatureControl ctrl;
sl@0
   269
        (void)ctrl.SWIEnd();
sl@0
   270
        }
sl@0
   271
    };
sl@0
   272
static TFeatureControl_NotCreated_SWIEnd TheFeatureControl_NotCreated_SWIEnd;
sl@0
   273
sl@0
   274
////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   275
sl@0
   276
void DoTestsL()
sl@0
   277
    {
sl@0
   278
    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4094 RFeatureControl::FeatureSupported() panic test 1"));
sl@0
   279
    PanicTest(TheFeatureControl_NotCreated_FeatureSupported1, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   280
sl@0
   281
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4095 RFeatureControl::FeatureSupported() panic test 2"));
sl@0
   282
    PanicTest(TheFeatureControl_NotCreated_FeatureSupported2, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   283
sl@0
   284
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4096 RFeatureControl::FeaturesSupported() panic test"));
sl@0
   285
    PanicTest(TheFeatureControl_NotCreated_FeaturesSupported, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   286
sl@0
   287
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4097 RFeatureControl::EnableFeature() panic test"));
sl@0
   288
    PanicTest(TheFeatureControl_NotCreated_EnableFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   289
sl@0
   290
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4098 RFeatureControl::DisableFeature() panic test"));
sl@0
   291
    PanicTest(TheFeatureControl_NotCreated_DisableFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   292
sl@0
   293
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4099 RFeatureControl::SetFeature() panic test 1"));
sl@0
   294
    PanicTest(TheFeatureControl_NotCreated_SetFeature1, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   295
sl@0
   296
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4100 RFeatureControl::SetFeature() panic test 2"));
sl@0
   297
    PanicTest(TheFeatureControl_NotCreated_SetFeature2, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   298
sl@0
   299
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4101 RFeatureControl::AddFeature() panic test"));
sl@0
   300
    PanicTest(TheFeatureControl_NotCreated_AddFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   301
sl@0
   302
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4102 RFeatureControl::DeleteFeature() panic test"));
sl@0
   303
    PanicTest(TheFeatureControl_NotCreated_DeleteFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   304
sl@0
   305
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4103 RFeatureControl::ListSupportedFeatures() panic test"));
sl@0
   306
    PanicTest(TheFeatureControl_NotCreated_ListSupportedFeatures, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   307
sl@0
   308
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4104 RFeatureControl::SWIStart() panic test"));
sl@0
   309
    PanicTest(TheFeatureControl_NotCreated_SWIStart, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   310
sl@0
   311
    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4105 RFeatureControl::SWIEnd() panic test"));
sl@0
   312
    PanicTest(TheFeatureControl_NotCreated_SWIEnd, EExitPanic, KPanicCategory, EPanicBadHandle);
sl@0
   313
    }
sl@0
   314
sl@0
   315
TInt E32Main()
sl@0
   316
    {
sl@0
   317
    TheTest.Title();
sl@0
   318
    
sl@0
   319
    CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   320
    TheTest(tc != NULL);
sl@0
   321
    
sl@0
   322
    __UHEAP_MARK;
sl@0
   323
    
sl@0
   324
    TRAPD(err, DoTestsL());
sl@0
   325
    DestroyTestEnv();
sl@0
   326
    TEST2(err, KErrNone);
sl@0
   327
sl@0
   328
    __UHEAP_MARKEND;
sl@0
   329
    
sl@0
   330
    TheTest.End();
sl@0
   331
    TheTest.Close();
sl@0
   332
    
sl@0
   333
    delete tc;
sl@0
   334
sl@0
   335
    User::Heap().Check();
sl@0
   336
    return KErrNone;
sl@0
   337
    }