os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_downgrade.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32test.h>
    17 #include <f32file.h>
    18 #include <s32file.h>
    19 #include <bautils.h>
    20 #include <hal.h>
    21 
    22 #include "DowngradePath.h"
    23 #include "../EcomTestUtils/EcomTestUtils.h"
    24 
    25 
    26 /* test stuff */
    27 
    28 RTest test(_L("EComServer: RDowngradePath test"));
    29 
    30 // flag to indicate when OOM testing is in progress
    31 TBool OomTest = EFalse;
    32 
    33 // globals
    34 typedef RArray<TLanguage> Languages;
    35 LOCAL_D RFs	TheFs;
    36 
    37 
    38 // --------------------------------------------------------------
    39 // Begin: General helper functions & macros
    40 // --------------------------------------------------------------
    41 
    42 /** Test boolean result. */
    43 #define TEST1(stmt)	test(stmt)
    44 
    45 /** Print formatted string to output. */
    46 #define TEST_PRINTF	test.Printf
    47 
    48 /** Start next test. */
    49 #define TEST_NEXT(title)	\
    50 	{\
    51 	if (!OomTest)\
    52 		test.Next(title);\
    53 	}
    54 
    55 // Used for supressing warning in OOM tests
    56 #define __UNUSED_VAR(var) var = var
    57 
    58 /**
    59 Conditionally test given statement.
    60 if OOM testing is in progress then the error code is compared against KErrNoMemory.
    61 If it matches then the code leaves with that error, otherwise the boolean result
    62 of the statement will be tested.
    63 */
    64 #define TEST2(err, stmt) \
    65 	{\
    66 	if (OomTest && err==KErrNoMemory) \
    67 		{\
    68 		User::LeaveNoMemory();\
    69 		}\
    70 	else\
    71 		{\
    72 		test(stmt);\
    73 		}\
    74 	}
    75 
    76 /**
    77 @SYMTestCaseID		SYSLIB-ECOM-CT-1857
    78 @SYMTestCaseDesc 	Test RDowngradePath under OOM conditions.
    79 @SYMTestPriority 	High
    80 @SYMTestActions  	Test the use of RDowngradePath under OOM conditions.
    81 @SYMTestExpectedResults No panics caused by leaking code.
    82 @SYMDEF				 DEF090862
    83 */
    84 typedef void (*FuncPtr8L) ();
    85 static void DoOOMTestL(FuncPtr8L aTestFunctionL)
    86 	{
    87 	OomTest = ETrue;
    88 
    89 	TInt err = KErrNone;
    90 	TInt tryCount = 0;
    91 	RThread thread;
    92 
    93 	do
    94 		{
    95 		__UHEAP_MARK;
    96 
    97 		// find out the number of open handles
    98 		TInt startProcessHandleCount = 0;
    99 		TInt startThreadHandleCount = 0;
   100 		thread.HandleCount(startProcessHandleCount, startThreadHandleCount);
   101 
   102 		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   103 
   104 		TRAP(err, aTestFunctionL());
   105 		RDowngradePath::Reset();
   106 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   107 
   108 		// check that no handles have leaked
   109 		TInt endProcessHandleCount = 0;
   110 		TInt endThreadHandleCount = 0;
   111 		thread.HandleCount(endProcessHandleCount, endThreadHandleCount);
   112 		TEST1(startProcessHandleCount == endProcessHandleCount);
   113 		TEST1(startThreadHandleCount  == endThreadHandleCount);
   114 
   115 		__UHEAP_MARKEND;
   116 		} while(err == KErrNoMemory);
   117 
   118 	thread.Close();
   119 
   120  	TEST1(err==KErrNone);
   121 
   122 	OomTest = EFalse;
   123 	TEST_PRINTF(_L("- succeeded at heap failure rate of %i\n"), tryCount);
   124 	}
   125 
   126 /**
   127 @SYMTestCaseID          SYSLIB-ECOM-CT-0656
   128 @SYMTestCaseDesc	    Tests for RDowngradePath::HasChangedL() function
   129 @SYMTestPriority 	    Medium
   130 @SYMTestActions  	    Tests for downgradepath consistency
   131 @SYMTestExpectedResults The test must not fail.
   132 @SYMREQ                 REQ0000
   133 */
   134 LOCAL_C void TestDowngradePathL()
   135 	{
   136 	//we need to make sure that at start of the test the language is set to English
   137 	EComTestUtils::SwitchToLanguageL(static_cast<TLanguage>(ELangEnglish));
   138 
   139 	//the first time this is call should return language has changed
   140 	TInt error;
   141 	TBool hasLanguageChanged=EFalse;
   142 	TRAP(error,hasLanguageChanged=RDowngradePath::HasChangedL(TheFs));
   143 	if (error==KErrNoMemory)
   144 		{
   145 		User::LeaveNoMemory();
   146 		}
   147 
   148 	TEST1(hasLanguageChanged);
   149 
   150 	//if second time called and no language changed yet,it should return false
   151 	TRAP(error,hasLanguageChanged=RDowngradePath::HasChangedL(TheFs));
   152 	if (error==KErrNoMemory)
   153 		{
   154 		User::LeaveNoMemory();
   155 		}
   156 	TEST1(!hasLanguageChanged);
   157 
   158 	//now switch to another language, this will change the language downgrade path
   159 	EComTestUtils::SwitchToLanguageL(static_cast<TLanguage>(ELangFrench));
   160 
   161 	//this should detect language has changed now
   162 	TRAP(error,hasLanguageChanged=RDowngradePath::HasChangedL(TheFs));
   163 	if (error==KErrNoMemory)
   164 		{
   165 		User::LeaveNoMemory();
   166 		}
   167 	TEST1(hasLanguageChanged);
   168 
   169 	//and finally call that function again it should return no language changed yet.
   170 	TRAP(error,hasLanguageChanged=RDowngradePath::HasChangedL(TheFs));
   171 	if (error==KErrNoMemory)
   172 		{
   173 		User::LeaveNoMemory();
   174 		}
   175 	TEST1(!hasLanguageChanged);
   176 
   177 	//reset the cached language settings
   178 	RDowngradePath::Reset();
   179 	//and finally when tests are completed switch back to English
   180 	EComTestUtils::SwitchToLanguageL(static_cast<TLanguage>(ELangEnglish));
   181 	}
   182 
   183 /**
   184 Run all RDowngradePath tests.
   185 */
   186 LOCAL_C void RunTestsL()
   187 	{
   188 	TEST_NEXT(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0656"));
   189 	TestDowngradePathL();
   190 
   191 	TEST_NEXT(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1857 Test RDowngradePath in OOM conditions. "));
   192 	DoOOMTestL(TestDowngradePathL);
   193 	}
   194 
   195 /**
   196 Executable entry point.
   197 */
   198 GLDEF_C TInt E32Main()
   199 	{
   200 	__UHEAP_MARK;
   201 
   202 	test.Title();
   203 	test.Start(_L("Running tests..."));
   204 
   205 	test(TheFs.Connect() == KErrNone);
   206 	CTrapCleanup* cleanup = CTrapCleanup::New();
   207 
   208 	TRAPD(err, RunTestsL());
   209 
   210 	delete cleanup;
   211 	TheFs.Close();
   212 
   213 	// check for errors
   214 	test(err == KErrNone);
   215 
   216 	test.End();
   217 	test.Close();
   218 
   219 	__UHEAP_MARKEND;
   220 	return(0);
   221 	}