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