DbUnit is a JUnit extension targeted at database-driven projects that, among other things, puts your database into a known state between test runs.

learn more… | top users | synonyms

0
votes
2answers
28 views

Converting an Object to Address

I'm using DBUnit to export to XML. When it writes my Address object, this is what appears in the XML file: <![CDATA[rO0ABXNyABRjc2hlZXRzLmNvcmUuQWRkcmVzc/DHvyOozrwhAgACSQAGY29sdW1uSQADcm93eHAA ...
0
votes
1answer
16 views

PHPUnit/DbUnit “Too many connections”

While running PHPUnit tests, a lot of connections are created but not closed. I can see this in mysql> show processlist; In my database class I create a db connection by implementing ...
0
votes
0answers
25 views

Error in creating table in in-memory database using DBUnit

I'm trying to import the data and tables from a XML file to an in-memory database, which XML file I create automatically using DBUnit. Here are two of the classes I'm mapping: WorkbookMapping: ...
0
votes
0answers
15 views

Spring bean out of org.dbunit.database.IDatabaseConnection

So my question is how to make a bean out of this object IDatabaseConnection connection = new DatabaseConnection(datasource.getConnection()); I want the connection to be initialized as bean so I ...
0
votes
1answer
46 views

Gradle loads mysql-connector jar but no dbunit jar as external dependencies, why?

Please give me some lights about what I'm doing wrong here. First of all I'm newbie with Gradle and Groovy and for learning purposes I'm playing with them and DBUnit. I tried the code listed below, ...
0
votes
3answers
58 views

Clean up database after JUnit test.

I have a unit test that inserts rows into the database, and I'd like DBUnit to automatically clean up those rows afterwards (DBUnit does not initially insert those rows - that's purely the ...
2
votes
0answers
27 views

Escaping reserved database keywords with spring-test-dbunit

How do I escape SQL Server keywords using Spring-test-dbunit framework? In my @DatabaseSetup("sampleData.xml") file, I have a table called File which is a reserved keyword in SQL Server. In order ...
1
vote
0answers
47 views

Unit testing with JUnit, dbunit and spring [closed]

What is the best solution to integrate Spring, JUnit and DBUnit? After searching I found 2 open source libraries: spring-test-DBUnit that fits perfectly with spring, but I think it has not yet ...
0
votes
0answers
11 views

How to use Oracle Sequence Numbers in DBUnit?

How can I used Oracle Sequences to auto-generate primary keys for my tables while exporting data into Oracle using DBUnit ?
1
vote
1answer
60 views

An attempt to place a null value in a non-nullable datatype

I'm using dbunit and unitils trying to get test sensitive dates on my dataset files. public void setUp() { String dataSetFile = "/Dataset.xml"; IDataSet dataSet; try { dataSet = new ...
1
vote
1answer
76 views

Unit Testing Postgres Database with Maven

First let me explain what I am doing: Creating a Java project in Eclipse (JUNO) to unit test SQL for a Postgres database. Using Maven2 as the build tool. I have DBUnit, and SQL maven plugins. The ...
0
votes
0answers
39 views

How to populate Websphere Dynacache in pre-integration-test phase?

I'm using Maven to run integration tests with JUnit in a multimodule project. However, these testcases rely on data that needs to be in Websphere cache to work. I'm using DBUnit to do INSERT ...
0
votes
0answers
16 views

PHPUnit with DbUnit… why calling setUp?

The documentation (http://www.phpunit.de/manual/3.7/en/database.html) says with getDataSet() I have the "scheme" and data, but it looks like on setUpBeforeClass() or setUp() you must populate this ...
3
votes
1answer
123 views

Programatically load database setup & compare with expected database in DBUnit

I annotate my test methods like this: @Test @DatabaseSetup("/default_database_data.xml") @ExpectedDatabase(value = "/expected_database_1.xml", assertionMode = NON_STRICT) is it possible to manually ...
3
votes
1answer
94 views

JUnit test failure while comparing two similar xml files

I tried to realise test with dbunit but I have a failure. To sum up I have an import xml file for my fake database, inputFlatXmlDataSet.xml and I generate an export file outputFlatXmlDataSet.xml ...
0
votes
0answers
28 views

Unitils and dbunit datasouces

I use unitils configurations. I initialize the datasource on a class that is parent to all my test classes. @TestDataSource private DataSource dataSource; My test class code can be seen on my ...
0
votes
0answers
31 views

Dataset and replacement objects - DatasetException

I try to mofidy dataset xml file and run the test. public void setUp() { String dataSetFile = "/Dataset.xml"; IDataSet dataSet; try { dataSet = new ...
1
vote
0answers
58 views

Unitils dataset and modified dates

Any ideas how this can be done with Unitils dbunit? Date relative to current in the DBUnit dataset The problem is that the [create_date]-placeholder is not recognized in @Dataset.
2
votes
1answer
84 views

Rollback auto-generated table values during unit tests

My unit test config is: JUnit, DBUnit, Spring. In my Spring context I have an embedded database - hsqldb <jdbc:embedded-database id="dataSourceSpied"> <jdbc:script ...
0
votes
1answer
55 views

Inconsistent dbunit behaviour between platforms with null dates using in-memory h2

I'm running into an interesting issue here with a DBUnit test. We have some code that we test with DBUnit tests and a xml dataset. I have inconsistent test results with exactly the same dataset and ...
0
votes
0answers
32 views

Postgres' Driver not found on DBunit using Arquillian and TestNG for tests running on JBoss

I don't know what's heppening. My configs are right (I think), when running project normally everything is fine, but at run tests with Arquillian, testNG and DBUnit the JDBC Driver of postgresql is ...
0
votes
1answer
108 views

java unable to read the XML file using FlatXmlDataSet

I am trying to load an XML file to mySql using dbunit, my FlatXmlDataSet shows that "Note: This element neither has attached source nor attached Javadoc and hence no Javadoc could be found" But ...
0
votes
1answer
46 views

How to avoid conflict with ids inserted by DbUnit and entities inserted by Hibernate

I want to use DbUnit to test JPA/Hibernate Dao, but since DbUnit XML files contain hard-coded ids for my entities, i have problems when testing inserts done by Hibernate. Do you know any DbUnit ...
2
votes
1answer
140 views

Junit (DBUnit) tests fail with Maven but not in Eclipse?

My Junit tests use DBUnit and they run fine when run from Eclipse. However, running the same tests with Maven fails one test with: integrity constraint violation: foreign key no action I have tried ...
0
votes
1answer
174 views

dbUnit xml file format for flat xml dataset

I'm trying to make the dataset for dbUnit. However, the xml file I used keeps giving me the error: Element type MyTable must be followed by either attribute specifications, ">" or "/>". Can someone ...
0
votes
0answers
39 views

dbunit : Handle binary column

my column (id) in database is binary and i wanted to insert a row from xml . so i have converted the value into base64 , which inserts the required row successfully .. but the value of the row is ...
0
votes
1answer
67 views

DbUnit - how to setup multiple initial test status(xml) under one DBTestCase

It's easy to setup a initial status via @Override protected IDataSet getDataSet() throws Exception { IDataSet data = new FlatXmlDataSetBuilder().build(new ...
0
votes
0answers
66 views

DBUnit ignores column aliases, when creating dataset from query?

I have two datasets, which I want to compare with DBUnit: one defines as XML file, the other I am trying to create using a query: dbConnection.createQueryTable("my_table", "SELECT ..."); Select ...
0
votes
0answers
36 views

How to get rid from alphabet check in dbUnit DTD validation

I use dbUnit maven plugin for building DTD schema file from DB. And then use this file for validating xml files. In DTD file all tables writing in alphabet order. During maven checking process i get ...
1
vote
3answers
162 views

Should I use mock or dbunit to test a method which access to a database?

I've got a method which does some calls to a database using some DAO. Should I use mock mechanism to avoid managing a database (and so mock all DAO methods) or should I use dbunit (or some ...
0
votes
1answer
92 views

Oracle + dbunit throws AmbiguousTableNameException

I'm using DBUnit to populate the database so that its content is a known content during testing. The db schema I'm working on is in an Oracle 11g instance in which they reside other db schemas. In ...
0
votes
1answer
67 views

How to run dbunit task in ant?

It doesn't work in ant, I'd like to run some classes that extend DatabaseTestCase <path id="libs.dir"> <fileset dir="lib" includes="**/*.jar" /> </path> <taskdef ...
0
votes
0answers
76 views

How to run simple dbunit test (problems with slf4j)

I'm trying to set up a simple dbunit test for my app, but facing the next problem: 1) I'm not sure what steps should I perform to run dbunit, while junit is quite easy (@Before, @Test, @After) 2) ...
0
votes
1answer
57 views

Is there a way to connect to a hsqldb database (via a tool) during unit testing?

My question is quite simple, I use DBUnit to test my DAO. I've got a quite complex query to test. I have created a dataset using flatxml format to test. My query does not return any results but I ...
0
votes
2answers
134 views

JPA tests hang while obtaining HSQL connection from Maven Command Line

Tests work individually within Eclipse (right click, run as Junit), but when I run them from the command line with maven, it stops while trying to obtain a DataSource connection to the HSQL database. ...
1
vote
1answer
103 views

Java dbUnit CRUD test error

well I 've been facing a very frustrating problem when trying to test a crud operation in an SQL Server. Note that I use a combination of hibernate,dbunit,ms sql server2008r2 and jpa. So, as I ...
-1
votes
1answer
109 views

Reading Excel Using DBUnit

I received a requirement to build a small module within our system to read excel spreadsheets that user uploads to the system. I did some research, and a lot of people uses Apache POI or JExcel to ...
0
votes
2answers
101 views

junit.framework.ComparisonFailure: value but value is equal

junit.framework.ComparisonFailure: value (table=XXX, row=XXX, col=XXX) expected:<2013-01-18 18:17:13.233099> but was:<2013-01-18 18:17:13.233099> at ...
0
votes
0answers
112 views

how to test dao using dbunit

how to test dao using dbunit? i am hardly find the solution. anyone can help me how to do it? heres my code in dao StudentDAO.java public interface StudentDAO { public void addStudent(Student ...
0
votes
2answers
476 views

import/export xml for dbunit

How can we easily import/export database data which dbunit could take in the following format? <dataset> <tablea cola="" colb="" /> <tableb colc="" cold="" /> </dataset> ...
0
votes
2answers
130 views

Create a date, insert it into database, compare, it's different

The goal I've got a really strange problem. My goal is to compare a dynamic date in database using dbunit (the database is an Oracle one). This dynamic date is the today date (comparing static date ...
0
votes
0answers
36 views

How to apply dbunit patch

I am working on writing integration tests using dbunit, my table has an attribute with type geometry, and when i run test for this table tests are failing. I searched and found that dbunit, does not ...
2
votes
1answer
126 views

Hibernate : Sorting ManyToMany mapping

Consider the following mapping with JPA annotations @ManyToMany(cascade = { CascadeType.ALL }) @JoinTable(name = "infotype_validations", joinColumns = { @JoinColumn(name = "info_type_id") }, ...
2
votes
1answer
154 views

How to extract a subset of a database into a dbunit file using a sql query?

Why ? I have got a big Oracle table. I would like to test some DAO methods. To do so, I use dbunit. Problem I would like to extract a subset of an existing database as a dbunit flat xml file using ...
0
votes
1answer
726 views

DBUnit - integrity constraint violation: foreign key no action; SYS_FK_10556

I am currently coding test with dbunit(using hsqldb). However, I have a huge Problem at initializing the db: here`s the code: /** * Init before a test starts */ @Before public void ...
0
votes
1answer
103 views

Spring Controller Integration Testing with DB Unit

I am working on creating Integration test cases for my rest controller. I want to use dbunit to test the database layer. Here is my test class skeleton setup @RunWith(SpringJUnit4ClassRunner.class) ...
0
votes
1answer
300 views

SPEL error “occurred whilst attempting to access the property through getter”

Really, it says "whilst". I got this error in a test I wrote to exercise a Spring Batch ItemReader, the reader's query needs a parameter supplied by a spring-managed bean, and getting the field off ...
1
vote
1answer
361 views

DBUnit, Hibernate/JPA, DAO and flush

Goal In order to test the create method of a DAO, I create an instance, insert it in database, flush the entity manager to update the database and then use dbunit to compare table using dataset. ...
0
votes
0answers
100 views

getDataSet Does not bind data to database

I'm having a problem doing some testing using JUnit 4, HSQLDB_2.2.9 and DBUnit_2.4.8. I'm consuming the following input file (input.xml): <?xml version='1.0' encoding='UTF-8'?> <dataset> ...
1
vote
1answer
167 views

Strange behavior of HSQLDB and group by

I am using HSQLDB for writing junits and my query is like this: String queryStr = "from ManualUrlBatchModel where status IN(:status) group by batchUser order by creationTime"; Query query = ...

1 2 3 4 5 6