1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
*
* Derby - Class org.apache.derbyTesting.functionTests.tests.lang.SQLAuthorizationPropTest
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.lang;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.functionTests.util.SQLStateConstants;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
public class SQLAuthorizationPropTest extends BaseJDBCTestCase {
public SQLAuthorizationPropTest(String name) {
super(name);
}
public static Test suite() {
BaseTestSuite suite = new BaseTestSuite(
SQLAuthorizationPropTest.class, "SQLAuthorizationPropTest");
// Use DatabasePropertyTestSetup decorator to set the property
// required by this test (and shutdown the database for the
// property to take effect.
Properties props = new Properties();
props.setProperty("derby.database.sqlAuthorization", "true");
Test test = new SQLAuthorizationPropTest("grantRevokeAfterSettingSQLAuthProperty");
suite.addTest(new DatabasePropertyTestSetup (test, props, true));
// This test has to be run after SQL authorization property has been
// set to true.
suite.addTest(new SQLAuthorizationPropTest("resetSQLAuthProperty"));
// This test needs to run in a new single use database as upon entry
// the test expects SQL authorization to be off and then sets it
// which cannot be undone.
return TestConfiguration.singleUseDatabaseDecorator(suite);
}
/**
* Create a table to test grant/revoke statements
*/
protected void setUp() throws SQLException {
Statement stmt = createStatement();
stmt.execute("create table GR_TAB (id int)");
stmt.close();
}
/**
* Drop the table created during setup.
* @throws Exception
*/
protected void tearDown()
throws Exception {
Statement stmt = createStatement();
stmt.execute("drop table GR_TAB");
stmt.close();
super.tearDown();
}
/**
* This method tests that grant/revoke is not available if
* derby.database.sqlAuthorization property is not set.
*
* @throws SQLException
*/
public void testGrantRevokeWithoutSQLAuthProperty() throws SQLException{
Statement stmt = createStatement();
try {
stmt.execute("grant select on GR_TAB to some_user");
fail("FAIL: Grant statement should have failed when SQL authorization is not set");
} catch(SQLException sqle) {
assertSQLState(SQLStateConstants.LANG_GRANT_REVOKE_WITH_LEGACY_ACCESS, sqle);
}
try {
stmt.execute("revoke select on GR_TAB from some_user");
fail("FAIL: Revoke statement should have failed when SQL authorization is not set");
} catch(SQLException sqle) {
assertSQLState(SQLStateConstants.LANG_GRANT_REVOKE_WITH_LEGACY_ACCESS, sqle);
}
stmt.close();
}
/**
* This method tests that grant/revoke is available
* once derby.database.sqlAuthorization property is set to true.
*
* @throws SQLException
*/
public void grantRevokeAfterSettingSQLAuthProperty() throws SQLException{
Statement stmt = createStatement();
stmt.execute("grant select on GR_TAB to some_user");
stmt.execute("revoke select on GR_TAB from some_user");
stmt.close();
}
/**
* This method tests that once derby.database.sqlAuthorization property
* has been set to true, it cannot be reset to any other value. For the
* test to be valid, it must follow the test method which sets
* derby.database.sqlAuthorization property to true.
*
* @throws SQLException
*/
public void resetSQLAuthProperty() throws SQLException {
Connection conn = getConnection();
conn.setAutoCommit(false);
CallableStatement setDBP = conn.prepareCall(
"CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY(?, ?)");
setDBP.setString(1, "derby.database.sqlAuthorization");
// Resetting to any value other than true should fail
testPropertyReset(setDBP, "false");
testPropertyReset(setDBP, null);
testPropertyReset(setDBP, "some_value");
// This should work
testPropertyReset(setDBP, "true");
setDBP.close();
}
/**
* This method executes a callable statement to set the database property
* to a given value. It checks that reset to any value other than "true"
* fails.
*
* @param cs CallableStatement object used to set database property
* @param value value of database property
* @throws SQLException
*/
private void testPropertyReset(CallableStatement cs, String value) throws SQLException {
cs.setString(2, value);
try {
cs.executeUpdate();
if(value.compareToIgnoreCase("true") != 0)
fail("FAIL: Should not be possible to reset sql authorization once it has been turned on");
} catch (SQLException sqle) {
assertSQLState(SQLStateConstants.PROPERTY_UNSUPPORTED_CHANGE, sqle);
}
}
/**
* Verify that you can't make the database unbootable by changing
* the database version. See DERBY-5838.
*/
public void test_5838() throws Exception
{
Statement stmt = createStatement();
assertStatementError
(
"XCY02",
stmt,
"call syscs_util.syscs_set_database_property( 'DataDictionaryVersion', 'foobar' )"
);
}
}
|