1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/tdbms/t_dbfail2.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,221 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Secure shared databases failures test
1.18 +//
1.19 +//
1.20 +
1.21 +#include <d32dbms.h>
1.22 +#include <s32file.h>
1.23 +#include <e32test.h>
1.24 +#include "t_dbfail.h"
1.25 +
1.26 +LOCAL_D TBuf<64> TheFormat2;
1.27 +_LIT(KTestDatabase2,"C:t_fail.db");
1.28 +_LIT(KTestDatabase3,"C:t_fail2.db");
1.29 +const TUid KPolicyUid = {0x11335579};
1.30 +
1.31 +GLDEF_C void PrepareDbFmtString()
1.32 + {
1.33 + TheFormat2.Copy(_L("SECURE"));
1.34 + TheFormat2.Append(KPolicyUid.Name());
1.35 + }
1.36 +
1.37 +LOCAL_C void DbCreate2L()
1.38 + {
1.39 + User::LeaveIfError(TheDatabase.Create(TheDbs, KTestDatabase2, TheFormat2));
1.40 + RDebug::Print(_L("Secure shared database created.\n"));
1.41 + }
1.42 +
1.43 +LOCAL_C void DbDatabaseNamesL()
1.44 + {
1.45 + CDbDatabaseNames* dbNames = TheDbs.DatabaseNamesL(EDriveC, KPolicyUid);
1.46 + test(dbNames != NULL);
1.47 + TInt cnt = dbNames->Count();
1.48 + TInt i;
1.49 + for(i=0;i<cnt;++i)
1.50 + {
1.51 + const TDesC& name = (*dbNames)[i];
1.52 + RDebug::Print(_L("%02d. %S\n"), i + 1, &name);
1.53 + }
1.54 + delete dbNames;
1.55 + RDebug::Print(_L("Secure shared database - DatabaseNamesL().\n"));
1.56 + }
1.57 +
1.58 +LOCAL_C void DbCopyDatabaseL()
1.59 + {
1.60 + User::LeaveIfError(TheDbs.CopyDatabase(KTestDatabase2, KTestDatabase3, KPolicyUid));
1.61 + RDebug::Print(_L("Secure shared database - CopyDatabase().\n"));
1.62 + }
1.63 +
1.64 +LOCAL_C void DbDeleteDatabaseL()
1.65 + {
1.66 + User::LeaveIfError(TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid));
1.67 + RDebug::Print(_L("Secure shared database - DeleteDatabase().\n"));
1.68 + }
1.69 +
1.70 +LOCAL_C void DbOpen2L()
1.71 + {
1.72 + User::LeaveIfError(TheDatabase.Open(TheDbs, KTestDatabase2, TheFormat2));
1.73 + CleanupClosePushL(TheDatabase);
1.74 + delete TheDatabase.TableNamesL(); // force a schema load
1.75 + CleanupStack::Pop();
1.76 + RDebug::Print(_L("Secure shared database - Open().\n"));
1.77 + }
1.78 +
1.79 +GLDEF_C void TestOpen2()
1.80 + {
1.81 + _LIT(KFileNotFound2, "C:not a database");
1.82 + Connect();
1.83 + TInt r=TheDatabase.Open(TheDbs, KFileNotFound2, TheFormat2);
1.84 + Disconnect();
1.85 + test (r==KErrPathNotFound || r==KErrNotFound);//There is no secure shared database with name KFileNotFound2
1.86 +//
1.87 + _LIT(KPathNotFound2, "Z:ddd.db");
1.88 + Connect();
1.89 + r=TheDatabase.Open(TheDbs, KPathNotFound2, TheFormat2);
1.90 + Disconnect();
1.91 + test (r==KErrPathNotFound || r==KErrNotFound);//There is no secure shared database with name KPathNotFound2
1.92 +//
1.93 + _LIT(KDbName, "C:dddqweuqwe.db");
1.94 + _LIT(KDbInvalidFmt, "SECURE");
1.95 + Connect();
1.96 + r=TheDatabase.Open(TheDbs, KDbName, KDbInvalidFmt);
1.97 + Disconnect();
1.98 + test (r==KErrArgument);//The format string is invalid, if there is "SECURE" keyword, then a uid has to follw it.
1.99 +//
1.100 + _LIT(KSecureSharedDbName, "C:xfgbdrgui.db");
1.101 + _LIT(KDbNonSecureValidFmt, "[123456768]");
1.102 + Connect();
1.103 + r=TheDatabase.Open(TheDbs, KSecureSharedDbName, KDbNonSecureValidFmt);
1.104 + Disconnect();
1.105 + test (r==KErrNotFound);//Non-secure, non-existent database
1.106 + }
1.107 +
1.108 +class TFailCreateDatabase2 : public TFail
1.109 + {
1.110 + void RunL()
1.111 + {
1.112 + DbCreate2L();
1.113 + }
1.114 + void End()
1.115 + {
1.116 + TheDatabase.Close();
1.117 + (void)TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid);
1.118 + }
1.119 + };
1.120 +
1.121 +class TFailOpenDatabase2 : public TFail
1.122 + {
1.123 + void RunL()
1.124 + {
1.125 + DbOpen2L();
1.126 + }
1.127 + void End()
1.128 + {
1.129 + TheDatabase.Close();
1.130 + }
1.131 + };
1.132 +
1.133 +class TFailDatabaseNames : public TFail
1.134 + {
1.135 + void RunL()
1.136 + {
1.137 + DbDatabaseNamesL();
1.138 + }
1.139 + void End()
1.140 + {
1.141 + }
1.142 + };
1.143 +
1.144 +class TFailCopyDatabase : public TFail
1.145 + {
1.146 + void RunL()
1.147 + {
1.148 + DbCopyDatabaseL();
1.149 + }
1.150 + void End()
1.151 + {
1.152 + (void)TheDbs.DeleteDatabase(KTestDatabase3, KPolicyUid);
1.153 + }
1.154 + };
1.155 +
1.156 +class TFailDeleteDatabase : public TFail
1.157 + {
1.158 + void RunL()
1.159 + {
1.160 + DbDeleteDatabaseL();
1.161 + }
1.162 + void End()
1.163 + {
1.164 + }
1.165 + };
1.166 +
1.167 +/**
1.168 +@SYMTestCaseID SYSLIB-DBMS-CT-0022
1.169 +@SYMTestCaseDesc OOM test for the new "DBMS security" APIs.
1.170 +@SYMTestPriority High
1.171 +@SYMTestActions Calling the new "DBMS security" APIs under OOM conditions.
1.172 +@SYMTestExpectedResults The test must not fail.
1.173 +@SYMREQ REQ2429
1.174 + DBMS shall provide an API to apply security policies to database tables.
1.175 +*/
1.176 +GLDEF_C void Origins2()
1.177 + {
1.178 + Connect();
1.179 + (void)TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid);
1.180 + Disconnect();
1.181 +
1.182 + test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0022 Allocation failures on creating a secure shared database "));
1.183 + TFailCreateDatabase2 t1;
1.184 + Connect();
1.185 + (void)TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid);
1.186 + t1.Test(KClientHeap);
1.187 + t1.Test(KServerHeap);
1.188 + Disconnect();
1.189 +
1.190 + Connect();
1.191 + test(TheDatabase.Create(TheDbs, KTestDatabase2, TheFormat2) == KErrNone);
1.192 + (void)TheDatabase.Close();
1.193 + Disconnect();
1.194 +
1.195 + Connect();
1.196 +
1.197 + test.Next(_L("Allocation failures on opening a secure shared database"));
1.198 + TFailOpenDatabase2 t2;
1.199 + t2.Test(KClientHeap);
1.200 + t2.Test(KServerHeap);
1.201 +
1.202 + test.Next(_L("Allocation failures on getting secure shared databases list"));
1.203 + TFailDatabaseNames t_dbNames;
1.204 + t_dbNames.Test(KClientHeap);
1.205 + t_dbNames.Test(KServerHeap);
1.206 + TheDatabase.Close();
1.207 +
1.208 + test.Next(_L("Allocation failures on copying secure shared databases"));
1.209 + TFailCopyDatabase t_copyDb;
1.210 + t_copyDb.Test(KClientHeap);
1.211 + t_copyDb.Test(KServerHeap);
1.212 +
1.213 + test.Next(_L("Allocation failures on deleting secure shared databases"));
1.214 + TFailDeleteDatabase t_deleteDb;
1.215 + t_deleteDb.Test(KClientHeap);
1.216 + test(TheDatabase.Create(TheDbs, KTestDatabase2, TheFormat2) == KErrNone);
1.217 + (void)TheDatabase.Close();
1.218 + t_deleteDb.Test(KServerHeap);
1.219 +
1.220 + Disconnect();
1.221 +
1.222 + test.End();
1.223 + }
1.224 +