1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrpanic.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,337 @@
1.4 +// Copyright (c) 2009 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 <featmgr.h>
1.21 +#include <featureuids.h>
1.22 +#include "featurepanics.h"
1.23 +#include <featurecontrol.h>
1.24 +#include <featurenotifier.h>
1.25 +
1.26 +using namespace NFeature;
1.27 +
1.28 +static RTest TheTest(_L("t_fmgrpanic"));
1.29 +
1.30 +_LIT(KPanicCategory, "RFeatureControl");
1.31 +
1.32 +///////////////////////////////////////////////////////////////////////////////////////
1.33 +
1.34 +//Deletes all created test files.
1.35 +void DestroyTestEnv()
1.36 + {
1.37 + }
1.38 +
1.39 +///////////////////////////////////////////////////////////////////////////////////////
1.40 +///////////////////////////////////////////////////////////////////////////////////////
1.41 +//Test macros and functions
1.42 +void Check1(TInt aValue, TInt aLine)
1.43 + {
1.44 + if(!aValue)
1.45 + {
1.46 + DestroyTestEnv();
1.47 + RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
1.48 + TheTest(EFalse, aLine);
1.49 + }
1.50 + }
1.51 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
1.52 + {
1.53 + if(aValue != aExpected)
1.54 + {
1.55 + DestroyTestEnv();
1.56 + RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
1.57 + TheTest(EFalse, aLine);
1.58 + }
1.59 + }
1.60 +#define TEST(arg) ::Check1((arg), __LINE__)
1.61 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
1.62 +
1.63 +///////////////////////////////////////////////////////////////////////////////////////
1.64 +
1.65 +//Panic thread function.
1.66 +//It will cast aData parameter to a TFunctor pointer and call it.
1.67 +//The expectation is that the called function will panic and kill the panic thread.
1.68 +TInt ThreadFunc(void* aData)
1.69 + {
1.70 + CTrapCleanup* tc = CTrapCleanup::New();
1.71 + TEST(tc != NULL);
1.72 +
1.73 + User::SetJustInTime(EFalse); // disable debugger panic handling
1.74 +
1.75 + TFunctor* obj = reinterpret_cast<TFunctor*> (aData);
1.76 + TEST(obj != NULL);
1.77 + (*obj)();//call the panic function
1.78 +
1.79 + delete tc;
1.80 +
1.81 + return KErrNone;
1.82 + }
1.83 +
1.84 +//Panic test.
1.85 +//PanicTest function will create a new thread - panic thread, giving it a pointer to the function which has to
1.86 +//be executed and the expectation is that the function will panic and kill the panic thread.
1.87 +//PanicTest function will check the panic thread exit code, exit category and the panic code.
1.88 +
1.89 +/**
1.90 +@SYMTestCaseID PDS-EFM-CT-4094
1.91 +@SYMTestCaseDesc Include test case 4105 too
1.92 +@SYMTestPriority High
1.93 +@SYMTestActions PanicTest function will create a new thread - panic
1.94 + thread, giving it a pointer to the function which has to
1.95 + be executed and the expectation is that the function
1.96 + will panic and kill the panic thread.
1.97 + PanicTest function will check the panic thread exit code,
1.98 + exit category and the panic code.
1.99 +@SYMTestExpectedResults Test must not fail
1.100 +@SYMDEF DEF144262
1.101 +*/
1.102 +void PanicTest(TFunctor& aFunctor, TExitType aExpectedExitType, const TDesC& aExpectedCategory, TInt aExpectedPanicCode)
1.103 + {
1.104 + RThread thread;
1.105 + _LIT(KThreadName,"FeatMgrPanicThread");
1.106 + TEST2(thread.Create(KThreadName, &ThreadFunc, 0x2000, 0x1000, 0x10000, (void*)&aFunctor, EOwnerThread), KErrNone);
1.107 +
1.108 + TRequestStatus status;
1.109 + thread.Logon(status);
1.110 + TEST2(status.Int(), KRequestPending);
1.111 + thread.Resume();
1.112 + User::WaitForRequest(status);
1.113 + User::SetJustInTime(ETrue); // enable debugger panic handling
1.114 +
1.115 + TEST2(thread.ExitType(), aExpectedExitType);
1.116 + TEST(thread.ExitCategory() == aExpectedCategory);
1.117 + TEST2(thread.ExitReason(), aExpectedPanicCode);
1.118 +
1.119 + CLOSE_AND_WAIT(thread);
1.120 + }
1.121 +
1.122 +////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.123 +////////////////////////////// Panic test functions /////////////////////////////////////////////////
1.124 +////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.125 +
1.126 +//1 Panic when calling RFeatureControl::FeatureSupported() on an invalid RFeatureControl object.
1.127 +class TFeatureControl_NotCreated_FeatureSupported1 : public TFunctor
1.128 + {
1.129 +private:
1.130 + virtual void operator()()
1.131 + {
1.132 + RFeatureControl ctrl;
1.133 + (void)ctrl.FeatureSupported(KConnectivity);
1.134 + }
1.135 + };
1.136 +static TFeatureControl_NotCreated_FeatureSupported1 TheFeatureControl_NotCreated_FeatureSupported1;
1.137 +
1.138 +//2 Panic when calling RFeatureControl::FeatureSupported() on an invalid RFeatureControl object.
1.139 +class TFeatureControl_NotCreated_FeatureSupported2 : public TFunctor
1.140 + {
1.141 +private:
1.142 + virtual void operator()()
1.143 + {
1.144 + RFeatureControl ctrl;
1.145 + TFeatureEntry fentry;
1.146 + (void)ctrl.FeatureSupported(fentry);
1.147 + }
1.148 + };
1.149 +static TFeatureControl_NotCreated_FeatureSupported2 TheFeatureControl_NotCreated_FeatureSupported2;
1.150 +
1.151 +//Panic when calling RFeatureControl::FeaturesSupported() on an invalid RFeatureControl object.
1.152 +class TFeatureControl_NotCreated_FeaturesSupported : public TFunctor
1.153 + {
1.154 +private:
1.155 + virtual void operator()()
1.156 + {
1.157 + RFeatureControl ctrl;
1.158 + RFeatureArray farray;
1.159 + TFeatureEntry fentry;
1.160 + TInt err = farray.Append(fentry);
1.161 + TEST2(err, KErrNone);
1.162 + (void)ctrl.FeaturesSupported(farray);
1.163 + }
1.164 + };
1.165 +static TFeatureControl_NotCreated_FeaturesSupported TheFeatureControl_NotCreated_FeaturesSupported;
1.166 +
1.167 +//Panic when calling RFeatureControl::EnableFeature() on an invalid RFeatureControl object.
1.168 +class TFeatureControl_NotCreated_EnableFeature : public TFunctor
1.169 + {
1.170 +private:
1.171 + virtual void operator()()
1.172 + {
1.173 + RFeatureControl ctrl;
1.174 + (void)ctrl.EnableFeature(KConnectivity);
1.175 + }
1.176 + };
1.177 +static TFeatureControl_NotCreated_EnableFeature TheFeatureControl_NotCreated_EnableFeature;
1.178 +
1.179 +//Panic when calling RFeatureControl::DisableFeature() on an invalid RFeatureControl object.
1.180 +class TFeatureControl_NotCreated_DisableFeature : public TFunctor
1.181 + {
1.182 +private:
1.183 + virtual void operator()()
1.184 + {
1.185 + RFeatureControl ctrl;
1.186 + (void)ctrl.DisableFeature(KConnectivity);
1.187 + }
1.188 + };
1.189 +static TFeatureControl_NotCreated_DisableFeature TheFeatureControl_NotCreated_DisableFeature;
1.190 +
1.191 +//1 Panic when calling RFeatureControl::SetFeature() on an invalid RFeatureControl object.
1.192 +class TFeatureControl_NotCreated_SetFeature1 : public TFunctor
1.193 + {
1.194 +private:
1.195 + virtual void operator()()
1.196 + {
1.197 + RFeatureControl ctrl;
1.198 + (void)ctrl.SetFeature(KConnectivity, EFalse, 0);
1.199 + }
1.200 + };
1.201 +static TFeatureControl_NotCreated_SetFeature1 TheFeatureControl_NotCreated_SetFeature1;
1.202 +
1.203 +//2 Panic when calling RFeatureControl::SetFeature() on an invalid RFeatureControl object.
1.204 +class TFeatureControl_NotCreated_SetFeature2 : public TFunctor
1.205 + {
1.206 +private:
1.207 + virtual void operator()()
1.208 + {
1.209 + RFeatureControl ctrl;
1.210 + (void)ctrl.SetFeature(KConnectivity, 0);
1.211 + }
1.212 + };
1.213 +static TFeatureControl_NotCreated_SetFeature2 TheFeatureControl_NotCreated_SetFeature2;
1.214 +
1.215 +//Panic when calling RFeatureControl::AddFeature() on an invalid RFeatureControl object.
1.216 +class TFeatureControl_NotCreated_AddFeature : public TFunctor
1.217 + {
1.218 +private:
1.219 + virtual void operator()()
1.220 + {
1.221 + RFeatureControl ctrl;
1.222 + TFeatureEntry fentry;
1.223 + (void)ctrl.AddFeature(fentry);
1.224 + }
1.225 + };
1.226 +static TFeatureControl_NotCreated_AddFeature TheFeatureControl_NotCreated_AddFeature;
1.227 +
1.228 +//Panic when calling RFeatureControl::DeleteFeature() on an invalid RFeatureControl object.
1.229 +class TFeatureControl_NotCreated_DeleteFeature : public TFunctor
1.230 + {
1.231 +private:
1.232 + virtual void operator()()
1.233 + {
1.234 + RFeatureControl ctrl;
1.235 + (void)ctrl.DeleteFeature(KConnectivity);
1.236 + }
1.237 + };
1.238 +static TFeatureControl_NotCreated_DeleteFeature TheFeatureControl_NotCreated_DeleteFeature;
1.239 +
1.240 +//Panic when calling RFeatureControl::ListSupportedFeatures() on an invalid RFeatureControl object.
1.241 +class TFeatureControl_NotCreated_ListSupportedFeatures : public TFunctor
1.242 + {
1.243 +private:
1.244 + virtual void operator()()
1.245 + {
1.246 + RFeatureControl ctrl;
1.247 + RFeatureUidArray farray;
1.248 + (void)ctrl.ListSupportedFeatures(farray);
1.249 + }
1.250 + };
1.251 +static TFeatureControl_NotCreated_ListSupportedFeatures TheFeatureControl_NotCreated_ListSupportedFeatures;
1.252 +
1.253 +//Panic when calling RFeatureControl::SWIStart() on an invalid RFeatureControl object.
1.254 +class TFeatureControl_NotCreated_SWIStart : public TFunctor
1.255 + {
1.256 +private:
1.257 + virtual void operator()()
1.258 + {
1.259 + RFeatureControl ctrl;
1.260 + (void)ctrl.SWIStart();
1.261 + }
1.262 + };
1.263 +static TFeatureControl_NotCreated_SWIStart TheFeatureControl_NotCreated_SWIStart;
1.264 +
1.265 +//Panic when calling RFeatureControl::SWIEnd() on an invalid RFeatureControl object.
1.266 +class TFeatureControl_NotCreated_SWIEnd : public TFunctor
1.267 + {
1.268 +private:
1.269 + virtual void operator()()
1.270 + {
1.271 + RFeatureControl ctrl;
1.272 + (void)ctrl.SWIEnd();
1.273 + }
1.274 + };
1.275 +static TFeatureControl_NotCreated_SWIEnd TheFeatureControl_NotCreated_SWIEnd;
1.276 +
1.277 +////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.278 +
1.279 +void DoTestsL()
1.280 + {
1.281 + TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4094 RFeatureControl::FeatureSupported() panic test 1"));
1.282 + PanicTest(TheFeatureControl_NotCreated_FeatureSupported1, EExitPanic, KPanicCategory, EPanicBadHandle);
1.283 +
1.284 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4095 RFeatureControl::FeatureSupported() panic test 2"));
1.285 + PanicTest(TheFeatureControl_NotCreated_FeatureSupported2, EExitPanic, KPanicCategory, EPanicBadHandle);
1.286 +
1.287 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4096 RFeatureControl::FeaturesSupported() panic test"));
1.288 + PanicTest(TheFeatureControl_NotCreated_FeaturesSupported, EExitPanic, KPanicCategory, EPanicBadHandle);
1.289 +
1.290 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4097 RFeatureControl::EnableFeature() panic test"));
1.291 + PanicTest(TheFeatureControl_NotCreated_EnableFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
1.292 +
1.293 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4098 RFeatureControl::DisableFeature() panic test"));
1.294 + PanicTest(TheFeatureControl_NotCreated_DisableFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
1.295 +
1.296 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4099 RFeatureControl::SetFeature() panic test 1"));
1.297 + PanicTest(TheFeatureControl_NotCreated_SetFeature1, EExitPanic, KPanicCategory, EPanicBadHandle);
1.298 +
1.299 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4100 RFeatureControl::SetFeature() panic test 2"));
1.300 + PanicTest(TheFeatureControl_NotCreated_SetFeature2, EExitPanic, KPanicCategory, EPanicBadHandle);
1.301 +
1.302 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4101 RFeatureControl::AddFeature() panic test"));
1.303 + PanicTest(TheFeatureControl_NotCreated_AddFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
1.304 +
1.305 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4102 RFeatureControl::DeleteFeature() panic test"));
1.306 + PanicTest(TheFeatureControl_NotCreated_DeleteFeature, EExitPanic, KPanicCategory, EPanicBadHandle);
1.307 +
1.308 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4103 RFeatureControl::ListSupportedFeatures() panic test"));
1.309 + PanicTest(TheFeatureControl_NotCreated_ListSupportedFeatures, EExitPanic, KPanicCategory, EPanicBadHandle);
1.310 +
1.311 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4104 RFeatureControl::SWIStart() panic test"));
1.312 + PanicTest(TheFeatureControl_NotCreated_SWIStart, EExitPanic, KPanicCategory, EPanicBadHandle);
1.313 +
1.314 + TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4105 RFeatureControl::SWIEnd() panic test"));
1.315 + PanicTest(TheFeatureControl_NotCreated_SWIEnd, EExitPanic, KPanicCategory, EPanicBadHandle);
1.316 + }
1.317 +
1.318 +TInt E32Main()
1.319 + {
1.320 + TheTest.Title();
1.321 +
1.322 + CTrapCleanup* tc = CTrapCleanup::New();
1.323 + TheTest(tc != NULL);
1.324 +
1.325 + __UHEAP_MARK;
1.326 +
1.327 + TRAPD(err, DoTestsL());
1.328 + DestroyTestEnv();
1.329 + TEST2(err, KErrNone);
1.330 +
1.331 + __UHEAP_MARKEND;
1.332 +
1.333 + TheTest.End();
1.334 + TheTest.Close();
1.335 +
1.336 + delete tc;
1.337 +
1.338 + User::Heap().Check();
1.339 + return KErrNone;
1.340 + }