package com.alibaba.druid.bvt.sql; import junit.framework.TestCase; import org.junit.Assert; import com.alibaba.druid.sql.PagerUtils; import com.alibaba.druid.util.JdbcConstants; public class PagerUtilsTest_Count_MySql_0 extends TestCase { public void test_mysql_0() throws Exception { String sql = "select * from t"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT COUNT(*)\n" + // "FROM t", result); } public void test_mysql_1() throws Exception { String sql = "select id, name from t"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT COUNT(*)\n" + // "FROM t", result); } public void test_mysql_2() throws Exception { String sql = "select id, name from t order by id"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT COUNT(*)\n" + // "FROM t", result); } public void test_mysql_3() throws Exception { String sql = "select distinct id from t order by id"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT COUNT(DISTINCT id)\n" + // "FROM t", result); } public void test_mysql_4() throws Exception { String sql = "select distinct a.col1,a.col2 from test a"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT DISTINCT COUNT(*)\n" + "FROM test a", result); } public void test_mysql_group_0() throws Exception { String sql = "select type, count(*) from t group by type"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT COUNT(*)" + // "\nFROM (SELECT type, COUNT(*)" + // "\n\tFROM t" + // "\n\tGROUP BY type" + // "\n\t) ALIAS_COUNT", result); } public void test_mysql_union_0() throws Exception { String sql = "select id, name from t1 union select id, name from t2 order by id"; String result = PagerUtils.count(sql, JdbcConstants.MYSQL); Assert.assertEquals("SELECT COUNT(*)\n" + // "FROM ((SELECT id, name" + // "\n\tFROM t1)" + // "\n\tUNION" + // "\n\t(SELECT id, name" + // "\n\tFROM t2)" + // "\n\t) ALIAS_COUNT", result); } }