Tagged Questions

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

12
votes
6answers
3k views

Is there a dbunit-like framework that doesn't suck for java/scala?

I was thinking of making a new, light-weight database population framework. I absolutely hate dbunit. Before I do, I want to know if someone already did it. Things i dislike about dbunit: 1) The ...
7
votes
2answers
212 views

dbunit best practices for performance

What are some best practices/principles to follow, beyond those recommended on the actual dbunit site, that can greatly speed up tests as well as keep them maintainable? I long for a library like ...
6
votes
4answers
243 views

DB Unit Testing framework?

In my project, I've used spring, jpa with PostgreSQL DB, I've lots of table in DB and I need to have Unit testing of all of them. Is there any framework which just rollback all the transactions after ...
6
votes
3answers
737 views

How to load DBUnit test data once per case with Spring Test

Spring Test helpfully rolls back any changes made to the database within a test method. This means that it is not necessary to take the time to delete/reload the test data before each test method. ...
5
votes
1answer
608 views

DBUnit automatic dataset generation

I have seen a couple of question regarding creating datasets in DbUnit here on StackOverflow, but all of them were regarding export data from existing tables. My question is, can DBUnit create some ...
5
votes
2answers
5k views

How do I test with DBUnit with plain JDBC and HSQLDB without facing a NoSuchTableException?

I am trying to use DBUnit with plain JDBC and HSQLDB, and can't quite get it to work -- even though I've used DBUnit with Hibernate earlier with great success. Here's the code: import ...
5
votes
3answers
435 views

Changing Database schemas & unit tests

     Before we start I know a fair few people consider tests that hit the database not "unit tests". Maybe "integration tests" would be a better name. Either way developer ...
4
votes
1answer
471 views

DBUnit dataset export by set of primary key

I tried to export a dataset from an oracle database by a set of primery keys using: TablesDependencyHelper.getDataset(connection, fullTableName , new TreeSet(Arrays.asList( ...
4
votes
4answers
948 views

JPA - How to truncate tables between unit tests

I want to cleanup the database after every test case without rolling back the transaction. I have tried DBUnit's DatabaseOperation.DELETE_ALL, but it does not work if a deletion violates a foreign key ...
4
votes
2answers
727 views

Path to XML DTD for DBUnit in multi-module Java/Maven project?

I have a multi-module maven project. Within the persist module I have a number of XML files data files that reference a DTD: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE myapp-data ...
3
votes
2answers
53 views

Can you think of a better way to only load DBbUnit once per test class with Spring?

I realise that best practise may advise on loading test data on every @Test method, however this can be painfully slow for DBUnit so I have come up with the following solution to load it only once per ...
3
votes
2answers
114 views

Simulate trigger with dbUnit

I'm using dbUnit to put test data in DB with dataset like <dataset> <TABLE_1 PRIMARY_KEY_COL="10000001" OTHER_COL="Some Text"/> </dataset> My problem is that ...
3
votes
1answer
158 views

DbUnit framework to Test DAO layer

Generally we are giving input file from setup() for inserting data so it will insert data every time for every test and finally clear it up after test. But these data is for all tests and it becomes ...
3
votes
1answer
1k views

DbUnit: NoSuchColumnException and case sensitivity

Before posting this I googled a bit, I looked for in dbunit-user archives and a bit also in DbUnit bug list, but I'm not found what looking for. Unfortunately, answers here did not help me either. ...
3
votes
3answers
505 views

What kind of tools are available for populating test data into mongodb

What kind of tools are available for populating test data in mongodb. We have used dbunit in the past, but it doesn't seem to have an equivalent maven plugin.
3
votes
4answers
168 views

What could make this dsl easier to type or read?

I've written a working grammar to replace dbunit in scala called ScalaDBTest. The whole program works - only took 2 days to write. I got a lot of polishing to do. Anyway, the grammar I'm using for ...
3
votes
2answers
800 views

DbUnit - Warning: AbstractTableMetaData

I am using DbUnit in the latest version 2.4.8 and I get many warnings in my Unit tests with this message: WARN : org.dbunit.dataset.AbstractTableMetaData - Potential problem found: The configured ...
3
votes
4answers
2k views

Integration testing - Hibernate & DbUnit

I'm writing some integrations tests in JUnit. What happens here is that when i run all the tests together in a row (and not separately), the data persisted in the database always changes and the tests ...
3
votes
2answers
1k views

DbUnit and binary data

I use DbUnit for unit-testing of my DAO objects. It works great so far. I have a problem, I have field ob type byte[] which is stored as BLOB in the database. The column is not-null. How can I ...
3
votes
4answers
3k views

Is there any way for DBUnit to automatically create tables?

I just realized that DBUnit doesn't create tables by itself (see How do I test with DBUnit with plain JDBC and HSQLDB without facing a NoSuchTableException?). Is there any way for DBUnit to ...
3
votes
1answer
783 views

PHPUnit Database Extension - How to have an empty dataset?

I want to create a test table that is empty. Using the Example from digitalsandwich, I want something like: require_once 'PHPUnit/Extensions/Database/TestCase.php'; class BankAccountDBTest extends ...
3
votes
2answers
2k views

DBUnit dataset generation

I am looking for a simple tool to generate a DBUnit dataset from existing data in a database. Namely I need to be able to construct a query of a limited amount of that data, and just use these ...
2
votes
0answers
47 views

Update Logic for JPA Entity Fails when using DBUnit and Spring

I am currently using DBUnit in conjunction with Spring in order to unit test my application, but have run into an issue where my update logic test always fails because a deadlock occurs on the ...
2
votes
2answers
76 views

Getting DbUnit to Work with Hibernate Transaction

I'm having problem trying to push changes made within a Hibernate transaction to the database for DbUnit to work properly in my test case. It seems like DbUnit is not seeing the changes made by ...
2
votes
0answers
82 views

DBUnit not cleaning and insert the database after every method, so test are not independent

I have a test for a DAO class, I use DBUnit to create and populate the database (using an in-memory derby). I am in problems when testing the dao update method because it modify the data and then the ...
2
votes
4answers
77 views

how to verify object properties while write unit test

private Long itemId; private String longName; private String shortName; private String itemUrl; private Integer itemCount; private Long parentCategory; private Long ...
2
votes
1answer
152 views

Loading null values with CsvDataFileLoader in dbunit

We are using the CsvDataFileLoader to load in our reference data like so: new InsertIdentityOperation(DatabaseOperation.CLEAN_INSERT) .execute(connection, new ...
2
votes
0answers
441 views

NullPointerException at org.hibernate.impl.SessionFactoryImpl.getClassMetadata

Not sure how to even phrase this because I am not certain what is null. I have an hbm.xml file configured like this: ` <hibernate-mapping package="com.cottage.entity"> <class ...
2
votes
1answer
514 views

dbunit disable Oracle constraint

I'm using DbUnit 2.4.8 with Oracle 10g and JUnit 4.5. I'd like to disable the foreign key constraints in Oracle while running the DbUnit tests I have so I can test single tables independent of all ...
2
votes
1answer
423 views

PHPUnit database testing with DBUnit extension

Hey, Im new to the whole PHPUnit and would like to test my code against a database, from reading all the stuff on the phpunit.de, it talks about a seed.xml file. Can someone just clarify, do i need ...
2
votes
2answers
673 views

Turning IDENTITY_INSERT ON on a table to load it with DB Unit

I try to load a table, that have an identity column, with DB Unit. I want to be able to set the id value myself (I don't want the database generate it for me). Here is a minimal definition of my ...
2
votes
1answer
646 views

PHPUnit and DBUnit - getting started

Does anyone have a link to a good, working tutorial or book on how to get started with adding the DBUnit layer to my PHPUNit tests? I've tried following the code in protected function ...
2
votes
2answers
1k views

Best way to create / drop a database before / after integration testing on a Maven/Junit/DBUnit project?

I've seen some people use the maven-sql-plugin to do this. But it seems like a task that is better suited for DBUnit....perhaps at the beginning of an entire test suite. What's the best practice ...
2
votes
1answer
409 views

Many small dbunit data sets or one large one?

Spreading test data across multiple small data sets seems to me to create a maintenance headache whenever the schema is tweaked. Anybody see a problem with create a single larger test data set? By ...
2
votes
1answer
209 views

using spring, hibernate and scala, is there a better way to load test data than dbunit?

Here are some things I really dislike about dbunit: 1) You cannot specify the exact ordering the inserts because dbunit likes to group your inserts by table name, and not by the order you define them ...
2
votes
2answers
508 views

Putting BigDecimal data into HSQLDB test database using DbUnit

I'm using Hibernate JPA in my backend. I am writing a unit test using JUnit and DBUnit to insert a set of data into an in-memory HSQL database. My dataset contains: <order_line order_line_id="1" ...
2
votes
2answers
871 views

Date relative to current in the DBUnit dataset

I'm wondering if there is any way to specify for example tomorrow as date in the DBUnit XML dataset. Sometimes code logic is different for dates in future and dates in the past and I want to test both ...
2
votes
3answers
2k views

DBunit generates java.lang.ClassCastException: java.lang.String cannot be cast to oracle.sql.CLOB when trying to load a CLOB field

I am using the latest version of DBUnit (2.4.7), on Oracle 11GR2. I'm using Java 6 (1.6.0_15) and the latest version of Oracle's client jar (jdbc6.jar) I've been unable to successfully load any data ...
2
votes
0answers
150 views

Corrected table name message in dbunit

dbunit data has been populated with lower case table names as per schema definition. Why do you get a corrected table warning every time, I run the scripts for all databases (h2, mysql ..) [INFO] ...
2
votes
4answers
3k views

DBunit; confusion over case sensitivity on table/column names

I'm getting this error when I start up my application Caused by: org.dbunit.dataset.NoSuchColumnException: CLIENT.ID - (Non-uppercase input column: ID) in ColumnNameToIndexes cache map. Note that ...
2
votes
3answers
1k views

How to handle multiple src files in dbunit-maven-plugin

dbunit-maven-plugin 1.0-SNAPSHOT release supported expressing multiple src files under sources tag, how do you do the same on 1.0-beta-3 version which supports only a single src tag ...
1
vote
0answers
43 views

Testing JPA/Hibernate entities using DBUnit

I've got some problems with some entities specifically with the use of JPA/Hibernate and DBUNIT. I came across this error when i tried to build the project. Tests run: 2, Failures: 0, Errors: 2, ...
1
vote
1answer
85 views

Recreate h2 db with setup data via dbunit

Some context: I am doing a POC with spring batch to replace out data extracts and reporting framework. We read data from an Oracle db and generate CSV reports from there. Now I have this working and ...
1
vote
1answer
47 views

Can a IDataSet in dbunit be created using a ListArray of objects

I do not want to use the Xml/dtd files to create a IDataSet in my dbunit Java class that extends DatabaseTestCase, Can it be created using a List<myOjectInstances> objs; I can't find any other ...
1
vote
1answer
68 views

DBUnit Sybase unable to CLEAN_INSERT

According to the DBUnit docs link it should support using a CLEAN_INSERT when using a DatabaseSequenceFilter. I get the following exception when attempting this ...
1
vote
1answer
80 views

DBUnit/Spring transaction not rolling back when using OracleDataSource

I'm trying to use DBUnit to insert spatial data into an Oracle database and then roll it back. In order to insert the spatial data, I must use Oracle10DataTypeFactory which pulls in the other DBUnit ...
1
vote
1answer
49 views

specifying Column Length for columns of @Type(type=xxx)

In order to remove few special characters coming from my host database tables into my application, I had to create my own datatype. @Column(name="LAST_UPDATED_BY", nullable=false, length=24) ...
1
vote
3answers
98 views

How to make unit tests for DAO classes less brittle in the absence of a static test database?

Here's the scanario: I am working on a DAO object which uses hibernate criteria API to form a number of complicated queries to perform certain tasks on the database (keyword search across multiple ...
1
vote
0answers
32 views

How do I order an XML export in DBUnit by primary key?

I export test data into a versioned project. To keep diffs small, I'd like to order the exported XML data by primary key. How do I do that with DBUnit?
1
vote
0answers
56 views

DbUnit - Delete rows based on non-primary key field value

It looks like DbUnit is using JDBC metadata to determine the primary key fields and constructing delete statement using those field: delete from tbl_name where pk_field1=? and pk_field2=? and ...

1 2 3