Update contrib.
1 // Copyright (c) 2010 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.
20 ///////////////////////////////////////////////////////////////////////////////////////
23 RTest TheTest(_L("t_sqlsecurity6 test"));
25 ///////////////////////////////////////////////////////////////////////////////////////
30 (void)RSqlDatabase::Delete(_L("c:[00009876]"));
33 ///////////////////////////////////////////////////////////////////////////////////////
34 //Test macros and functions
35 void Check1(TInt aValue, TInt aLine)
40 RDebug::Print(_L("*** Boolean expression evaluated to false. Line %d\r\n"), aLine);
41 TheTest(EFalse, aLine);
44 void Check2(TInt aValue, TInt aExpected, TInt aLine)
46 if(aValue != aExpected)
49 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
50 TheTest(EFalse, aLine);
53 #define TEST(arg) ::Check1((arg), __LINE__)
54 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
56 ///////////////////////////////////////////////////////////////////////////////////////
59 @SYMTestCaseID PDS-SQL-CT-4199
60 @SYMTestCaseDesc Invalid secure database UIDs test.
62 @SYMTestActions The test attempts to create a secure database using invalid UIDs:
63 - with length less than 8 hes digits;
64 - with invalid characters in the UID;
65 - wiht database name containing the UID only;
66 @SYMTestExpectedResults Test must not fail
69 void InvalidSecureUidsTest()
71 RSqlSecurityPolicy policy;
72 TInt err = policy.Create(TSecurityPolicy::EAlwaysPass);
75 //The UID in the database name is too short. It must be 8 hex digits UID.
76 err = TheDb.Create(_L("c:[9876]t_sqlsecurity6.db"), policy);
77 TEST2(err, KErrArgument);
79 //Short UID, used as a database name.
80 err = TheDb.Create(_L("c:[9876]"), policy);
81 TEST2(err, KErrArgument);
84 err = TheDb.Create(_L("c:[KH0A0Q0J]"), policy);
85 TEST2(err, KErrArgument);
87 //UID, used as a database name.
88 err = TheDb.Create(_L("c:[00009876]"), policy);
90 err = TheDb.Exec(_L("CREATE TABLE A(I INTEGER)"));
93 err = RSqlDatabase::Delete(_L("c:[00009876]"));
101 TheTest.Start(_L("@SYMTestCaseID:PDS-SQL-CT-4199 Invalid secure UIDs test"));
102 InvalidSecureUidsTest();
109 CTrapCleanup* tc = CTrapCleanup::New();
114 TRAPD(err, DoTestsL());
116 TEST2(err, KErrNone);
125 User::Heap().Check();