sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// DBMS security policy - testing new APIs - preparation operations
|
sl@0
|
15 |
// Please, ensure that t_predbsc test is executed before t_dbsc<N> tests!
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <d32dbms.h>
|
sl@0
|
20 |
#include <e32test.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
static RTest TheTest(_L("t_dbenvcreate: DBMS platform security testing - preparation"));
|
sl@0
|
23 |
static RDbs TheDbs;
|
sl@0
|
24 |
const TUid KSecureDbUid = {0x11335578};
|
sl@0
|
25 |
const TUid KSecureDbUid2 = {0x11335579};
|
sl@0
|
26 |
const TUid KSecureDbUid3 = {0x1133557A};
|
sl@0
|
27 |
_LIT(KProtDbZName, "z:z.db");
|
sl@0
|
28 |
_LIT(KProtDbCName, "C:z.Db");
|
sl@0
|
29 |
_LIT(KProtDbZName2, "z:TEstDB.dB");
|
sl@0
|
30 |
_LIT(KProtDbCName2, "c:teSTDB.db");
|
sl@0
|
31 |
_LIT(KProtDbCName3, "c:AbcD.Db");
|
sl@0
|
32 |
_LIT(KProtDbCName4, "c:A0123456789B0123456789C0123456789D0123456789E0123456789F0123.Db");
|
sl@0
|
33 |
_LIT(KProtDbCName5, "c:ZADFS.Db");
|
sl@0
|
34 |
_LIT(KProtDbFormat3, "SECURE[1133557A]");
|
sl@0
|
35 |
_LIT(KProtDbCPath, "C:\\Private\\100012a5\\Dbs_11335578_z.dB");
|
sl@0
|
36 |
_LIT(KProtDbCPath2, "C:\\Private\\100012a5\\dBS_11335579_TesTDB.db");
|
sl@0
|
37 |
|
sl@0
|
38 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
39 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
40 |
//Test macros and functions
|
sl@0
|
41 |
static void Check(TInt aValue, TInt aLine)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
if(!aValue)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
TheTest(EFalse, aLine);
|
sl@0
|
46 |
}
|
sl@0
|
47 |
}
|
sl@0
|
48 |
static void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
if(aValue != aExpected)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
53 |
TheTest(EFalse, aLine);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
}
|
sl@0
|
56 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
57 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
58 |
|
sl@0
|
59 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
@SYMTestCaseID SYSLIB-DBMS-CT-0023
|
sl@0
|
63 |
@SYMTestCaseDesc This test app must be executed before all t_dbsc<N> tests.
|
sl@0
|
64 |
It ensures that the test data is copied and prepared for the tests executed
|
sl@0
|
65 |
after the current executable.
|
sl@0
|
66 |
@SYMTestPriority High
|
sl@0
|
67 |
@SYMTestActions Copy test databases from Z: to C: drive in the DBMS server private data cage.
|
sl@0
|
68 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
69 |
@SYMREQ REQ2429
|
sl@0
|
70 |
DBMS shall provide an API to apply security policies to database tables.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
static void DoRun()
|
sl@0
|
73 |
{
|
sl@0
|
74 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0023 Copy protected databases from Z: to C: "));
|
sl@0
|
75 |
TheDbs.DeleteDatabase(KProtDbCName, KSecureDbUid);
|
sl@0
|
76 |
TInt err = TheDbs.CopyDatabase(KProtDbZName, KProtDbCName, KSecureDbUid);
|
sl@0
|
77 |
TheTest.Printf(_L("copy file file from z:z.db to C:z.Db uid = 0x11335578 err = %d"),err);
|
sl@0
|
78 |
TEST2(err, KErrNone);
|
sl@0
|
79 |
TheDbs.DeleteDatabase(KProtDbCName2, KSecureDbUid2);
|
sl@0
|
80 |
err = TheDbs.CopyDatabase(KProtDbZName2, KProtDbCName2, KSecureDbUid2);
|
sl@0
|
81 |
TheTest.Printf(_L("copy file file from z:TEstDB.dB to c:teSTDB.db uid = 0x11335579 err = %d"),err);
|
sl@0
|
82 |
TEST2(err, KErrNone);
|
sl@0
|
83 |
|
sl@0
|
84 |
TheDbs.DeleteDatabase(KProtDbCName3, KSecureDbUid3);
|
sl@0
|
85 |
TheTest.Next(_L("Create protected database on C:"));
|
sl@0
|
86 |
RDbNamedDatabase db;
|
sl@0
|
87 |
err = db.Create(TheDbs, KProtDbCName3, KProtDbFormat3);
|
sl@0
|
88 |
TEST2(err, KErrNone);
|
sl@0
|
89 |
db.Close();
|
sl@0
|
90 |
|
sl@0
|
91 |
TheDbs.DeleteDatabase(KProtDbCName4, KSecureDbUid3);
|
sl@0
|
92 |
err = db.Create(TheDbs, KProtDbCName4, KProtDbFormat3);
|
sl@0
|
93 |
TEST2(err, KErrNone);
|
sl@0
|
94 |
db.Close();
|
sl@0
|
95 |
|
sl@0
|
96 |
TheDbs.DeleteDatabase(KProtDbCName5, KSecureDbUid3);
|
sl@0
|
97 |
err = db.Create(TheDbs, KProtDbCName5, KProtDbFormat3);
|
sl@0
|
98 |
TEST2(err, KErrNone);
|
sl@0
|
99 |
db.Close();
|
sl@0
|
100 |
|
sl@0
|
101 |
RFs fileSess;
|
sl@0
|
102 |
err = fileSess.Connect();
|
sl@0
|
103 |
TEST2(err, KErrNone);
|
sl@0
|
104 |
err = fileSess.SetAtt(KProtDbCPath, 0, KEntryAttReadOnly);
|
sl@0
|
105 |
TEST2(err, KErrNone);
|
sl@0
|
106 |
err = fileSess.SetAtt(KProtDbCPath2, 0, KEntryAttReadOnly);
|
sl@0
|
107 |
TEST2(err, KErrNone);
|
sl@0
|
108 |
fileSess.Close();
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
TInt E32Main()
|
sl@0
|
112 |
{
|
sl@0
|
113 |
__UHEAP_MARK;
|
sl@0
|
114 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
115 |
TEST(tc != NULL);
|
sl@0
|
116 |
|
sl@0
|
117 |
TheTest.Title();
|
sl@0
|
118 |
|
sl@0
|
119 |
TInt err = TheDbs.Connect();
|
sl@0
|
120 |
TEST2(err, KErrNone);
|
sl@0
|
121 |
|
sl@0
|
122 |
::DoRun();
|
sl@0
|
123 |
|
sl@0
|
124 |
TheDbs.Close();
|
sl@0
|
125 |
|
sl@0
|
126 |
TheTest.End();
|
sl@0
|
127 |
TheTest.Close();
|
sl@0
|
128 |
|
sl@0
|
129 |
delete tc;
|
sl@0
|
130 |
|
sl@0
|
131 |
__UHEAP_MARKEND;
|
sl@0
|
132 |
User::Heap().Check();
|
sl@0
|
133 |
return KErrNone;
|
sl@0
|
134 |
}
|