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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "DowngradePath.h"
23 #include "../EcomTestUtils/EcomTestUtils.h"
28 RTest test(_L("EComServer: RDowngradePath test"));
30 // flag to indicate when OOM testing is in progress
31 TBool OomTest = EFalse;
34 typedef RArray<TLanguage> Languages;
38 // --------------------------------------------------------------
39 // Begin: General helper functions & macros
40 // --------------------------------------------------------------
42 /** Test boolean result. */
43 #define TEST1(stmt) test(stmt)
45 /** Print formatted string to output. */
46 #define TEST_PRINTF test.Printf
48 /** Start next test. */
49 #define TEST_NEXT(title) \
55 // Used for supressing warning in OOM tests
56 #define __UNUSED_VAR(var) var = var
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.
64 #define TEST2(err, stmt) \
66 if (OomTest && err==KErrNoMemory) \
68 User::LeaveNoMemory();\
77 @SYMTestCaseID SYSLIB-ECOM-CT-1857
78 @SYMTestCaseDesc Test RDowngradePath under OOM conditions.
80 @SYMTestActions Test the use of RDowngradePath under OOM conditions.
81 @SYMTestExpectedResults No panics caused by leaking code.
84 typedef void (*FuncPtr8L) ();
85 static void DoOOMTestL(FuncPtr8L aTestFunctionL)
97 // find out the number of open handles
98 TInt startProcessHandleCount = 0;
99 TInt startThreadHandleCount = 0;
100 thread.HandleCount(startProcessHandleCount, startThreadHandleCount);
102 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
104 TRAP(err, aTestFunctionL());
105 RDowngradePath::Reset();
106 __UHEAP_SETFAIL(RHeap::ENone, 0);
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);
116 } while(err == KErrNoMemory);
120 TEST1(err==KErrNone);
123 TEST_PRINTF(_L("- succeeded at heap failure rate of %i\n"), tryCount);
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.
134 LOCAL_C void TestDowngradePathL()
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));
139 //the first time this is call should return language has changed
141 TBool hasLanguageChanged=EFalse;
142 TRAP(error,hasLanguageChanged=RDowngradePath::HasChangedL(TheFs));
143 if (error==KErrNoMemory)
145 User::LeaveNoMemory();
148 TEST1(hasLanguageChanged);
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)
154 User::LeaveNoMemory();
156 TEST1(!hasLanguageChanged);
158 //now switch to another language, this will change the language downgrade path
159 EComTestUtils::SwitchToLanguageL(static_cast<TLanguage>(ELangFrench));
161 //this should detect language has changed now
162 TRAP(error,hasLanguageChanged=RDowngradePath::HasChangedL(TheFs));
163 if (error==KErrNoMemory)
165 User::LeaveNoMemory();
167 TEST1(hasLanguageChanged);
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)
173 User::LeaveNoMemory();
175 TEST1(!hasLanguageChanged);
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));
184 Run all RDowngradePath tests.
186 LOCAL_C void RunTestsL()
188 TEST_NEXT(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0656"));
189 TestDowngradePathL();
191 TEST_NEXT(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1857 Test RDowngradePath in OOM conditions. "));
192 DoOOMTestL(TestDowngradePathL);
196 Executable entry point.
198 GLDEF_C TInt E32Main()
203 test.Start(_L("Running tests..."));
205 test(TheFs.Connect() == KErrNone);
206 CTrapCleanup* cleanup = CTrapCleanup::New();
208 TRAPD(err, RunTestsL());
214 test(err == KErrNone);