use of com.alibaba.druid.wall.WallFunctionStat in project druid by alibaba.
the class WallStatTest_function_stats method testMySql.
public void testMySql() throws Exception {
WallProvider provider = new MySqlWallProvider();
Assert.assertTrue(provider.checkValid(sql));
{
WallTableStat tableStat = provider.getTableStat("t");
Assert.assertEquals(1, tableStat.getSelectCount());
}
{
WallFunctionStat functionStat = provider.getFunctionStat("len");
Assert.assertEquals(2, functionStat.getInvokeCount());
}
Assert.assertTrue(provider.checkValid(sql));
{
WallTableStat tableStat = provider.getTableStat("t");
Assert.assertEquals(2, tableStat.getSelectCount());
}
{
WallFunctionStat functionStat = provider.getFunctionStat("len");
Assert.assertEquals(4, functionStat.getInvokeCount());
}
}
Aggregations