2

我的表中有一个 clob 列。如何在 dbunit 数据集 xml 中表示它,以便在集成测试中使用它?

4

1 回答 1

0

您可以使用ReplacementDataSet做到这一点

这是一个例子:

表架构:

CREATE TABLE TABLE_CLOB(COLUMN_CLOB  CLOB);

XML 数据集(文件 dataSet.xml):

<dataset>
   <table name="TABLE_CLOB">
      <column>COLUMN_CLOB</column>
      <row>
         <value>CLOB_1</value>
      </row>
   </table>
</dataset>

在您的测试方法中:

// Initialize one IDataSet from your dataset xml
InputStream expIn = this.getClass().getResourceAsStream("dataSet.xml");
IDataSet xmlDataSet = new XmlDataSet(expIn);

// Initialize one ReplacementDataSet with previous xmlDataSet
ReplacementDataSet dataSet = new ReplacementDataSet(xmlDataSet);

// Make the replacements
dataSet.addReplacementObject("CLOB_1", YourClobObject);

// Insert the dataSet into the databaseTest
DatabaseOperation.CLEAN_INSERT.execute(databaseTester.getConnection(), dataSet);

希望能帮助到你

于 2015-03-06T12:45:32.073 回答