use of com.alibaba.druid.wall.spi.OracleWallProvider in project druid by alibaba.
the class WallStatTest_alter_table method testOracle.
public void testOracle() throws Exception {
String sql = "alter table t add (fname varchar(50))";
WallProvider provider = new OracleWallProvider();
provider.getConfig().setAlterTableAllow(true);
Assert.assertTrue(provider.checkValid(sql));
WallTableStat tableStat = provider.getTableStat("t");
Assert.assertEquals(1, tableStat.getAlterCount());
}
use of com.alibaba.druid.wall.spi.OracleWallProvider in project druid by alibaba.
the class WallStatTest_update method testOracle.
public void testOracle() throws Exception {
WallProvider provider = new OracleWallProvider();
Assert.assertTrue(provider.checkValid(sql));
WallTableStat tableStat = provider.getTableStat("t");
Assert.assertEquals(1, tableStat.getUpdateCount());
}
use of com.alibaba.druid.wall.spi.OracleWallProvider in project druid by alibaba.
the class WallDenySchemaTest method testORACLE.
public void testORACLE() throws Exception {
String sql = "SELECT * FROM T UNION SELECT F1, F2 FROM ALL_ALL_TABLES";
OracleWallProvider provider = new OracleWallProvider();
Assert.assertFalse(provider.checkValid(sql));
}
use of com.alibaba.druid.wall.spi.OracleWallProvider in project druid by alibaba.
the class WallDenyTableTest method testORACLE.
public void testORACLE() throws Exception {
String sql = "SELECT *FROM T UNION SELECT F1, F2 FROM SYS.ABC";
OracleWallProvider provider = new OracleWallProvider();
Assert.assertFalse(provider.checkValid(sql));
}
use of com.alibaba.druid.wall.spi.OracleWallProvider in project druid by alibaba.
the class WallStatTest_create_table method testOracle.
public void testOracle() throws Exception {
WallProvider provider = new OracleWallProvider();
provider.getConfig().setCreateTableAllow(true);
Assert.assertTrue(provider.checkValid(sql));
WallTableStat tableStat = provider.getTableStat("t");
Assert.assertEquals(1, tableStat.getCreateCount());
}
Aggregations