Update contrib.
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 // DBMS security policy - testing new APIs - preparation operations
15 // Please, ensure that t_predbsc test is executed before t_dbsc<N> tests!
22 static RTest TheTest(_L("t_dbenvcreate: DBMS platform security testing - preparation"));
24 const TUid KSecureDbUid = {0x11335578};
25 const TUid KSecureDbUid2 = {0x11335579};
26 const TUid KSecureDbUid3 = {0x1133557A};
27 _LIT(KProtDbZName, "z:z.db");
28 _LIT(KProtDbCName, "C:z.Db");
29 _LIT(KProtDbZName2, "z:TEstDB.dB");
30 _LIT(KProtDbCName2, "c:teSTDB.db");
31 _LIT(KProtDbCName3, "c:AbcD.Db");
32 _LIT(KProtDbCName4, "c:A0123456789B0123456789C0123456789D0123456789E0123456789F0123.Db");
33 _LIT(KProtDbCName5, "c:ZADFS.Db");
34 _LIT(KProtDbFormat3, "SECURE[1133557A]");
35 _LIT(KProtDbCPath, "C:\\Private\\100012a5\\Dbs_11335578_z.dB");
36 _LIT(KProtDbCPath2, "C:\\Private\\100012a5\\dBS_11335579_TesTDB.db");
38 ///////////////////////////////////////////////////////////////////////////////////////
39 ///////////////////////////////////////////////////////////////////////////////////////
40 //Test macros and functions
41 static void Check(TInt aValue, TInt aLine)
45 TheTest(EFalse, aLine);
48 static void Check(TInt aValue, TInt aExpected, TInt aLine)
50 if(aValue != aExpected)
52 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
53 TheTest(EFalse, aLine);
56 #define TEST(arg) ::Check((arg), __LINE__)
57 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
59 ///////////////////////////////////////////////////////////////////////////////////////
62 @SYMTestCaseID SYSLIB-DBMS-CT-0023
63 @SYMTestCaseDesc This test app must be executed before all t_dbsc<N> tests.
64 It ensures that the test data is copied and prepared for the tests executed
65 after the current executable.
67 @SYMTestActions Copy test databases from Z: to C: drive in the DBMS server private data cage.
68 @SYMTestExpectedResults The test must not fail.
70 DBMS shall provide an API to apply security policies to database tables.
74 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0023 Copy protected databases from Z: to C: "));
75 TheDbs.DeleteDatabase(KProtDbCName, KSecureDbUid);
76 TInt err = TheDbs.CopyDatabase(KProtDbZName, KProtDbCName, KSecureDbUid);
77 TheTest.Printf(_L("copy file file from z:z.db to C:z.Db uid = 0x11335578 err = %d"),err);
79 TheDbs.DeleteDatabase(KProtDbCName2, KSecureDbUid2);
80 err = TheDbs.CopyDatabase(KProtDbZName2, KProtDbCName2, KSecureDbUid2);
81 TheTest.Printf(_L("copy file file from z:TEstDB.dB to c:teSTDB.db uid = 0x11335579 err = %d"),err);
84 TheDbs.DeleteDatabase(KProtDbCName3, KSecureDbUid3);
85 TheTest.Next(_L("Create protected database on C:"));
87 err = db.Create(TheDbs, KProtDbCName3, KProtDbFormat3);
91 TheDbs.DeleteDatabase(KProtDbCName4, KSecureDbUid3);
92 err = db.Create(TheDbs, KProtDbCName4, KProtDbFormat3);
96 TheDbs.DeleteDatabase(KProtDbCName5, KSecureDbUid3);
97 err = db.Create(TheDbs, KProtDbCName5, KProtDbFormat3);
102 err = fileSess.Connect();
103 TEST2(err, KErrNone);
104 err = fileSess.SetAtt(KProtDbCPath, 0, KEntryAttReadOnly);
105 TEST2(err, KErrNone);
106 err = fileSess.SetAtt(KProtDbCPath2, 0, KEntryAttReadOnly);
107 TEST2(err, KErrNone);
114 CTrapCleanup* tc = CTrapCleanup::New();
119 TInt err = TheDbs.Connect();
120 TEST2(err, KErrNone);
132 User::Heap().Check();