First public contribution.
1 // Copyright (c) 2004-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.
14 // Secure shared databases failures test
23 LOCAL_D TBuf<64> TheFormat2;
24 _LIT(KTestDatabase2,"C:t_fail.db");
25 _LIT(KTestDatabase3,"C:t_fail2.db");
26 const TUid KPolicyUid = {0x11335579};
28 GLDEF_C void PrepareDbFmtString()
30 TheFormat2.Copy(_L("SECURE"));
31 TheFormat2.Append(KPolicyUid.Name());
34 LOCAL_C void DbCreate2L()
36 User::LeaveIfError(TheDatabase.Create(TheDbs, KTestDatabase2, TheFormat2));
37 RDebug::Print(_L("Secure shared database created.\n"));
40 LOCAL_C void DbDatabaseNamesL()
42 CDbDatabaseNames* dbNames = TheDbs.DatabaseNamesL(EDriveC, KPolicyUid);
43 test(dbNames != NULL);
44 TInt cnt = dbNames->Count();
48 const TDesC& name = (*dbNames)[i];
49 RDebug::Print(_L("%02d. %S\n"), i + 1, &name);
52 RDebug::Print(_L("Secure shared database - DatabaseNamesL().\n"));
55 LOCAL_C void DbCopyDatabaseL()
57 User::LeaveIfError(TheDbs.CopyDatabase(KTestDatabase2, KTestDatabase3, KPolicyUid));
58 RDebug::Print(_L("Secure shared database - CopyDatabase().\n"));
61 LOCAL_C void DbDeleteDatabaseL()
63 User::LeaveIfError(TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid));
64 RDebug::Print(_L("Secure shared database - DeleteDatabase().\n"));
67 LOCAL_C void DbOpen2L()
69 User::LeaveIfError(TheDatabase.Open(TheDbs, KTestDatabase2, TheFormat2));
70 CleanupClosePushL(TheDatabase);
71 delete TheDatabase.TableNamesL(); // force a schema load
73 RDebug::Print(_L("Secure shared database - Open().\n"));
76 GLDEF_C void TestOpen2()
78 _LIT(KFileNotFound2, "C:not a database");
80 TInt r=TheDatabase.Open(TheDbs, KFileNotFound2, TheFormat2);
82 test (r==KErrPathNotFound || r==KErrNotFound);//There is no secure shared database with name KFileNotFound2
84 _LIT(KPathNotFound2, "Z:ddd.db");
86 r=TheDatabase.Open(TheDbs, KPathNotFound2, TheFormat2);
88 test (r==KErrPathNotFound || r==KErrNotFound);//There is no secure shared database with name KPathNotFound2
90 _LIT(KDbName, "C:dddqweuqwe.db");
91 _LIT(KDbInvalidFmt, "SECURE");
93 r=TheDatabase.Open(TheDbs, KDbName, KDbInvalidFmt);
95 test (r==KErrArgument);//The format string is invalid, if there is "SECURE" keyword, then a uid has to follw it.
97 _LIT(KSecureSharedDbName, "C:xfgbdrgui.db");
98 _LIT(KDbNonSecureValidFmt, "[123456768]");
100 r=TheDatabase.Open(TheDbs, KSecureSharedDbName, KDbNonSecureValidFmt);
102 test (r==KErrNotFound);//Non-secure, non-existent database
105 class TFailCreateDatabase2 : public TFail
114 (void)TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid);
118 class TFailOpenDatabase2 : public TFail
130 class TFailDatabaseNames : public TFail
141 class TFailCopyDatabase : public TFail
149 (void)TheDbs.DeleteDatabase(KTestDatabase3, KPolicyUid);
153 class TFailDeleteDatabase : public TFail
165 @SYMTestCaseID SYSLIB-DBMS-CT-0022
166 @SYMTestCaseDesc OOM test for the new "DBMS security" APIs.
167 @SYMTestPriority High
168 @SYMTestActions Calling the new "DBMS security" APIs under OOM conditions.
169 @SYMTestExpectedResults The test must not fail.
171 DBMS shall provide an API to apply security policies to database tables.
173 GLDEF_C void Origins2()
176 (void)TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid);
179 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0022 Allocation failures on creating a secure shared database "));
180 TFailCreateDatabase2 t1;
182 (void)TheDbs.DeleteDatabase(KTestDatabase2, KPolicyUid);
183 t1.Test(KClientHeap);
184 t1.Test(KServerHeap);
188 test(TheDatabase.Create(TheDbs, KTestDatabase2, TheFormat2) == KErrNone);
189 (void)TheDatabase.Close();
194 test.Next(_L("Allocation failures on opening a secure shared database"));
195 TFailOpenDatabase2 t2;
196 t2.Test(KClientHeap);
197 t2.Test(KServerHeap);
199 test.Next(_L("Allocation failures on getting secure shared databases list"));
200 TFailDatabaseNames t_dbNames;
201 t_dbNames.Test(KClientHeap);
202 t_dbNames.Test(KServerHeap);
205 test.Next(_L("Allocation failures on copying secure shared databases"));
206 TFailCopyDatabase t_copyDb;
207 t_copyDb.Test(KClientHeap);
208 t_copyDb.Test(KServerHeap);
210 test.Next(_L("Allocation failures on deleting secure shared databases"));
211 TFailDeleteDatabase t_deleteDb;
212 t_deleteDb.Test(KClientHeap);
213 test(TheDatabase.Create(TheDbs, KTestDatabase2, TheFormat2) == KErrNone);
214 (void)TheDatabase.Close();
215 t_deleteDb.Test(KServerHeap);