Update contrib.
1 // Copyright (c) 2010 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 //CSqlSrvTestBurInterface - test implementation of the MSqlSrvBurInterface, implemented in the production code by the SQL server.
23 class CSqlSrvTestBurInterface : public CBase, public MSqlSrvBurInterface
26 static CSqlSrvTestBurInterface* New();
27 virtual ~CSqlSrvTestBurInterface();
29 virtual void GetBackUpListL(TSecureId aUid, TDriveNumber aDrive, RArray<HBufC*>& aFileList);
39 ///////////////////////////////////////////////////////////////////////////////////////
41 RTest TheTest(_L("t_sqlbur2"));
44 static const TInt KBurstRate = 100;
47 TDriveNumber KTestDrive = EDriveC;
48 _LIT(KTestDir, "c:\\test\\");
49 CActiveScheduler* TheScheduler = NULL;
50 CSqlSrvTestBurInterface* TheSqlSrvTestBurInterface = NULL;
51 TInt TestModeSqlBurError = KErrNone;//The CSqlBurEventMonitor code will set the error here
53 ///////////////////////////////////////////////////////////////////////////////////////
57 delete TheSqlSrvTestBurInterface;
58 TheSqlSrvTestBurInterface = NULL;
63 (void)RProperty::Delete(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey);
66 ///////////////////////////////////////////////////////////////////////////////////////
67 ///////////////////////////////////////////////////////////////////////////////////////
68 //Test macros and functions
69 void Check(TInt aValue, TInt aLine)
74 RDebug::Print(_L("*** Boolean expression evaluated to false.\r\n"));
75 TheTest(EFalse, aLine);
78 void Check(TInt aValue, TInt aExpected, TInt aLine)
80 if(aValue != aExpected)
83 RDebug::Print(_L("*** Expected error: %d, got: %d.\r\n"), aExpected, aValue);
84 TheTest(EFalse, aLine);
87 #define TEST(arg) ::Check((arg), __LINE__)
88 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
90 ///////////////////////////////////////////////////////////////////////////////////////
92 CSqlSrvTestBurInterface* CSqlSrvTestBurInterface::New()
94 CSqlSrvTestBurInterface* self = new CSqlSrvTestBurInterface;
100 void CSqlSrvTestBurInterface::Construct()
102 TInt err = iFs.Connect();
103 TEST2(err, KErrNone);
105 err = iFs.MkDir(KTestDir);
106 TEST(err == KErrNone || err == KErrAlreadyExists);
108 err = iFs.CreatePrivatePath(KTestDrive);
109 TEST(err == KErrNone || err == KErrAlreadyExists);
112 CSqlSrvTestBurInterface::~CSqlSrvTestBurInterface()
117 RFs& CSqlSrvTestBurInterface::Fs()
122 //No-op. Not needed in this test app.
123 void CSqlSrvTestBurInterface::GetBackUpListL(TSecureId, TDriveNumber, RArray<HBufC*>&)
128 ///////////////////////////////////////////////////////////////////////////////////////
132 TheScheduler = new CActiveScheduler;
133 TEST(TheScheduler != NULL);
134 CActiveScheduler::Install(TheScheduler);
136 TheSqlSrvTestBurInterface = CSqlSrvTestBurInterface::New();
137 TEST(TheSqlSrvTestBurInterface != NULL);
139 TInt err = RProperty::Define(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, 0);
140 TEST(err == KErrNone || err == KErrAlreadyExists);
143 ///////////////////////////////////////////////////////////////////////////////////////
146 @SYMTestCaseID PDS-SQL-UT-4233
147 @SYMTestCaseDesc CSqlBurEventMonitor object creation - OOM test
148 The test runs CSqlBurEventMonitor::NewL() in an OOM loop.
149 @SYMTestActions CSqlBurEventMonitor object creation - OOM test
150 @SYMTestExpectedResults Test must not fail
151 @SYMTestPriority High
153 void SqlBurEventMonitorOomTest()
155 TInt err = KErrNoMemory;
156 TInt failingAllocationNo = 0;
157 TheTest.Printf(_L("Iteration:\r\n"));
158 while(err == KErrNoMemory)
160 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
162 TInt startProcessHandleCount;
163 TInt startThreadHandleCount;
164 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
166 __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, failingAllocationNo, KBurstRate);
168 CSqlBurEventMonitor* monitor = NULL;
169 TRAP(err, monitor = CSqlBurEventMonitor::NewL(*TheSqlSrvTestBurInterface));
174 TInt endProcessHandleCount;
175 TInt endThreadHandleCount;
176 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
178 TEST2(startProcessHandleCount, endProcessHandleCount);
179 TEST2(startThreadHandleCount, endThreadHandleCount);
181 TEST2(err, KErrNone);
182 TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
186 @SYMTestCaseID PDS-SQL-UT-4234
187 @SYMTestCaseDesc CSqlBurEventMonitor functional test
188 The test sets the backup & restore property status and then checks
189 how the backup & restore property monitor (CSqlBurEventMonitor) reacts to the event.
190 @SYMTestActions CSqlBurEventMonitor functional test
191 @SYMTestExpectedResults Test must not fail
192 @SYMTestPriority High
194 void SqlBurEventMonitorFunctionalTest()
196 CSqlBurEventMonitor* monitor = NULL;
197 TRAPD(err, monitor = CSqlBurEventMonitor::NewL(*TheSqlSrvTestBurInterface));
198 TEST2(err, KErrNone);
199 TEST(!monitor->ActiveBackupClient());
200 TEST(!monitor->SqlBurCallback());
201 //Set the property to conn::EBURBackupFull, conn::EBURBackupPartial, conn::EBURRestoreFull, conn::EBURRestorePartial,
202 //then start the scheduler. CSqlBurEventMonitor::RunL() gets called and
203 //CSqlBurCallback and CActiveBackupClient interfaces get created (if the interfaces do exist, they are destroyed first).
204 TInt burPropertyStatus[] = {conn::EBURBackupFull, conn::EBURBackupPartial, conn::EBURRestoreFull, conn::EBURRestorePartial};
205 for(TInt i=0;i<(sizeof(burPropertyStatus)/sizeof(burPropertyStatus[0]));++i)
207 err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, burPropertyStatus[i]);
208 TEST2(err, KErrNone);
209 TestModeSqlBurError = KErrNone;
214 CActiveScheduler::Start();
219 TEST2(TestModeSqlBurError, KErrNone);
220 TEST(monitor->ActiveBackupClient() != NULL);
221 TEST(monitor->SqlBurCallback() != NULL);
223 //Set the property to conn::EBURUnset, start the scheduler. CSqlBurEventMonitor::RunL() gets called
224 //and CSqlBurCallback interface gets destroyed.
225 err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURUnset);
226 TEST2(err, KErrNone);
227 TestModeSqlBurError = KErrNone;
228 CActiveScheduler::Start();
229 TEST2(TestModeSqlBurError, KErrNone);
230 TEST(!monitor->ActiveBackupClient());
231 TEST(!monitor->SqlBurCallback());
232 //Set the property to conn::EBURNormal, start the scheduler. CSqlBurEventMonitor::RunL() gets called.
233 //CSqlBurCallback interface has been destroyed alread. No memory deallocations should be made during this call.
234 err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURNormal);
235 TEST2(err, KErrNone);
237 TestModeSqlBurError = KErrNone;
238 CActiveScheduler::Start();
239 TEST2(TestModeSqlBurError, KErrNone);
240 TEST(!monitor->ActiveBackupClient());
241 TEST(!monitor->SqlBurCallback());
243 //Set the property, then delete it. CSqlBurEventMonitor::RunL() should get called, but the call should
244 //fail because the property does not exist.
245 err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURBackupFull);
246 TEST2(err, KErrNone);
247 err = RProperty::Delete(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey);
248 TEST2(err, KErrNone);
250 TestModeSqlBurError = KErrNone;
251 CActiveScheduler::Start();
252 TEST2(TestModeSqlBurError, KErrNotFound);
253 TEST(!monitor->ActiveBackupClient());
254 TEST(!monitor->SqlBurCallback());
256 //Restore the property
257 err = RProperty::Define(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, 0);
258 TEST2(err, KErrNone);
264 @SYMTestCaseID PDS-SQL-UT-4235
265 @SYMTestCaseDesc CSqlBurEventMonitor::RunL() - OOM test
266 The test sets the backup & restore property status and then checks
267 how the backup & restore property monitor (CSqlBurEventMonitor) reacts to the event.
268 The test is performed in an OOM loop.
269 @SYMTestActions CSqlBurEventMonitor::RunL() - OOM test
270 @SYMTestExpectedResults Test must not fail
271 @SYMTestPriority High
273 void SqlBurEventMonitorRunOomTest()
275 CSqlBurEventMonitor* monitor = NULL;
276 TRAPD(err, monitor = CSqlBurEventMonitor::NewL(*TheSqlSrvTestBurInterface));
279 TInt failingAllocationNo = 0;
280 TheTest.Printf(_L("Iteration:\r\n"));
281 while(err == KErrNoMemory)
283 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
285 TInt startProcessHandleCount;
286 TInt startThreadHandleCount;
287 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
289 __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, failingAllocationNo, KBurstRate);
291 TEST(!monitor->ActiveBackupClient());
292 TEST(!monitor->SqlBurCallback());
293 //Set the property, start the scheduler. CSqlBurEventMonitor::RunL() gets called and CSqlBurCallback
294 //interface gets created.
295 err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURBackupFull);
298 TestModeSqlBurError = KErrNone;
299 CActiveScheduler::Start();
300 err = TestModeSqlBurError;
303 TEST(monitor->ActiveBackupClient() != NULL);
304 TEST(monitor->SqlBurCallback() != NULL);
305 //Destroy the SQL backup & restore callback
306 err = RProperty::Set(KSqlBurPropertyCategoryUid, KSqlBurBackupRestoreKey, conn::EBURNormal);
307 TestModeSqlBurError = KErrNone;
308 CActiveScheduler::Start();
309 err = TestModeSqlBurError;
312 TEST(!monitor->ActiveBackupClient());
313 TEST(!monitor->SqlBurCallback());
320 TInt endProcessHandleCount;
321 TInt endThreadHandleCount;
322 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
324 TEST2(startProcessHandleCount, endProcessHandleCount);
325 TEST2(startThreadHandleCount, endThreadHandleCount);
327 TEST2(err, KErrNone);
328 TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
334 TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-UT-4233 CSqlBurEventMonitor object creation - OOM test"));
335 SqlBurEventMonitorOomTest();
336 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4234 CSqlBurEventMonitor functional test"));
337 SqlBurEventMonitorFunctionalTest();
338 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4235 CSqlBurEventMonitor::RunL() - OOM test"));
339 SqlBurEventMonitorRunOomTest();
346 CTrapCleanup* tc = CTrapCleanup::New();
352 TRAPD(err, DoTestsL());
354 TEST2(err, KErrNone);
363 User::Heap().Check();