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
1answer
24 views
+100

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
31 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
32 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
13 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
82 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
70 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
22 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
21 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
53 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
66 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
48 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
26 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
81 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
40 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 ...
1
vote
1answer
119 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
140 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
36 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
50 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
52 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
31 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
134 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
77 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
65 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
70 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
53 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
113 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
96 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
100 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
85 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
104 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
306 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
117 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
33 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
108 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
139 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
580 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
97 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
257 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
318 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
86 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
123 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
vote
1answer
347 views

what does null entities are not supported by org.hibernate.event.def.EventCache mean?

I am getting the error at the point I try to save an entity. I only get this error when I have booted up my server, not when I run my unit tests using dbunit. I am trying to save an association. My ...
0
votes
1answer
251 views

How to compare Excel files in Java with DBUnit

I need to compare two Excel files to find any kind of content difference. Format/Color/Font differences are not to be considered. I followed the solution found at this post but it's based on the ...
5
votes
2answers
92 views

Handling schema changes when working with multiple feature branches

Is there another way, or some tool, to handle database schema changes in multiple parallel feature branches other than creating a separate database for each one in development? ie. Spin up a DB in ...
1
vote
1answer
163 views

DBUnit cannot import data into HSQLDB

I use Hibernate in create-drop mode to create tables at startup. (tables are created in the public schema in hsqlDB). For some reason, DBunit is not able to add data into my table: ERROR ...
0
votes
0answers
104 views

Compare 2 tables using dbunit and generate an excel report for the differences

I want to generate an excel sheet (highlighting the differences), by comparing datasets from 2 tables(tables have same structure, same name, but are from different database) using DBUnit. There may be ...
0
votes
1answer
166 views

DbUnit: how to assert generated IDs

I need an idea/tip how to use DbUnit to assert IDs, generated by a database (e.g. MySQL's auto increment column). I have very simple case, which yet, at the moment, I find problematic: 2 tables: main ...
0
votes
0answers
61 views

Unitilis rollback strategy causing tests to fail

I have a groovy class which I've created an integration test for. I've added untils / dbunit support, but I cannot figure out why adding rollback support to my transactions is causing my tests to ...
0
votes
1answer
56 views

Include other datasets from xml

DBUnit recommends using Small Datasets but I found no example where a small dataset is included in the dataset. I need something similar to (pseudocode) <dataset> <!-- this tag is what I am ...
0
votes
0answers
91 views

DBUnit duplicate rows removal

Need to know how to remove duplicate rows in dataset . I am gathering data from two different databases (all columns are same in both of them) and they have some same rows. I use QueryDataSet two ...

1 2 3 4 5 6