sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "t_sqloom.h" sl@0: sl@0: RTest TheTest(_L("t_sqloom3 test")); sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////// RSqlDatabase OOM tests //////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-SQL-CT-1615, SYSLIB-SQL-CT-1639 sl@0: @SYMTestCaseDesc RSqlDatabase::Create() OOM test - secure and non-secure databases. sl@0: Precondition: the database does not exist. sl@0: The test calls RSqlDatabase::Create() while simulating OOM failures and checks sl@0: that there are no memory and resource leaks. sl@0: Note: It's possible for a database to be created even after memory allocation sl@0: has failed. This is because SQLITE reuses some pages of the page cache which sl@0: have been allocated but are curently not in use. This means it is necessary sl@0: to delete the database and continue checking for memory and resource leaks sl@0: even after a database has been created successfully. sl@0: @SYMTestPriority High sl@0: @SYMTestActions RSqlDatabase::Create() OOM test sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ5792 sl@0: REQ5793 sl@0: REQ10271 sl@0: REQ10273 sl@0: REQ10274 sl@0: */ sl@0: void DoCreateDatabaseOomTest(const TDesC& aDbFileName, TDbType aDbType, TInt aExpectedError, const TDesC8* aConfigStr = NULL) sl@0: { sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1639 RSqlDatabase::Create() - OOM test")); sl@0: RSqlSecurityPolicy securityPolicy; sl@0: CreateTestSecurityPolicy(securityPolicy); sl@0: enum TMethodType {ENonLeavingMethod, ELeavingMethod}; sl@0: const TMethodType KMethodType[] = {ENonLeavingMethod, ELeavingMethod}; sl@0: for(TInt j=0;j