SQL 解析无需真实的测试环境,开发者只需定义好待测试的 SQL,以及解析后的断言数据即可:
在集成测试的部分提到过 sql-case-id
,其对应的 SQL,可以在不同模块共享。开发者只需要在shardingsphere-test-it-parser
模块中添加待测试的 SQL 即可,位置位于test/it/parser/src/main/resources/sql/supported/${SQL-TYPE}/*.xml
。
断言的解析数据保存在 test/it/parser/src/main/resources/case/${SQL-TYPE}/*.xml
在 xml
文件中,可以针对表名,token,SQL 条件等进行断言,例如如下的配置:
<parser-result-sets>
<parser-result sql-case-id="insert_with_multiple_values">
<tables>
<table name="t_order" />
</tables>
<tokens>
<table-token start-index="12" table-name="t_order" length="7" />
</tokens>
<sharding-conditions>
<and-condition>
<condition column-name="order_id" table-name="t_order" operator="EQUAL">
<value literal="1" type="int" />
</condition>
<condition column-name="user_id" table-name="t_order" operator="EQUAL">
<value literal="1" type="int" />
</condition>
</and-condition>
<and-condition>
<condition column-name="order_id" table-name="t_order" operator="EQUAL">
<value literal="2" type="int" />
</condition>
<condition column-name="user_id" table-name="t_order" operator="EQUAL">
<value literal="2" type="int" />
</condition>
</and-condition>
</sharding-conditions>
</parser-result>
</parser-result-sets>
设置好上面两类数据,开发者就可以通过 test/it/parser
下对应的测试引擎启动 SQL 解析的测试了。