Tagged Questions
0
votes
1answer
90 views
Spring/Hibernate Integration Test with H2 DB
I am building a Spring/Hibernate/Postgres api, which works fine. I want to write an integration test using in memory H2 DB.I know that how to create test-applicationContext. But I am having few issues ...
1
vote
2answers
88 views
In-Container testing with JUnit
I am new to JUnit and trying to implement it in a legacy project. It is a Java EE project. Its UI layer is in Flex and the backend has Hibernate as the ORM layer with a SQL Server Database. It runs on ...
0
votes
2answers
45 views
Integration Test Strategy for Create methods
I want to test if created entity has been correctly persisted to database.There is a service integration test for create method:
@SpringApplicationContext({"setting ...."})
public class ...
0
votes
1answer
36 views
config setup in integration test after migration to Hibernate 4
I have config class
public class HibernateConfiguration {
private HibernateConfiguration(){}
public Configuration configuration( Class clazz) {
Configuration c = new Configuration();
...
1
vote
1answer
143 views
Moving from HibernateTemplate to SessionFactory without @Transactional in tests
I'm working on moving to Hibernate 4 with Spring 3, which means I can no longer use Spring's HibernateTemplate. Refactoring the code was easy enough (replacing callbacks with ...
6
votes
2answers
468 views
How to do testing with Hibernate, H2 using TestNg?
What is the proper way of testing DAO layer?
I had @BeforeMethod and @AfterMethod annotated methods where I created and destroyed SessionFactory but it didn't work with multiple tests. Tests were ...
0
votes
1answer
139 views
Spring Database Integration Test, when to flush or?
I am fairly new to spring, and doing some integration tests.
Using Hibernate, MySql and Spring data JPA.
I am using transaction support and everything gets rolled back at the end of each test.
For ...
1
vote
2answers
514 views
Should I write Unit-Tests for CRUD operations when I have already Integration-Tests?
In our recent project Sonar was complaining about a weak test coverage. We noticed that it didn't consider integration tests by default. Beside the fact that you can configure Sonar, so it will ...
0
votes
1answer
182 views
Grails hibernate events are not firing during integration tests
During grails run-app hibernate events fire regularly without issue. However, during each integration test case these same events will not fire. Below is the essence of my code whittled down to its ...
0
votes
1answer
93 views
Multiple Spring integration test files with different context configs prevents successul persistence
I have two separate integration test files, each with their own context configuration files (XML). When I incorporate both of them into the build cycle, I run into problems, but if I put the @Ignore ...
0
votes
1answer
685 views
NoClassDefFoundError: org/dom4j/Element
I use spring STS 2.9.1.RELEASE, spring roo 1.2.1.RELEASE, hibernate 3.6.9.Final to build web site and when I run the roo generated tests, I always get the following error.
...
0
votes
2answers
333 views
Spring integration testing - transaction declaration in config seems to break test
I am playing around with a Spring MVC + Hibernate + MySQL "Hello World" app, and am currently trying run the following integration test on a Spring MVC controller using jUnit.
...
0
votes
4answers
213 views
Spring/Hibernate testing - how to drop schema when done?
I am trying to learn integration testing with Spring and Hibernate. I would like it to create schema before running tests and drop it when tests finish so that they always start clean.
...
2
votes
3answers
290 views
hibernate.hbm2ddl.auto=create not clearing out existing data
I am using
<property name="hibernate.hbm2ddl.auto" value="create" />
in my persistence.xml for my integration test, and when I run the integration test, I get
ERROR SchemaExport:386 - ...
0
votes
1answer
447 views
Hibernate context initialization error when running Maven Test
I'm taking over an existing Spring/JPA(w/hibernate)/Maven project and attempting to integrate unit testing and integration testing.
The project builds and runs fine, but when I run Maven Test to run ...
1
vote
3answers
376 views
unit testing service layer that uses hibernate and annotations, and no DAO
What is the best way to unit test/integration test the following :
@Service("fooService")
public class FooService {
@Resource(name = "sessionFactory")
private SessionFactory sessionFactory;
...
0
votes
2answers
818 views
Integration testing with Hibernate Envers
I'm trying to build some tests around some audited entities. My problem is that envers only audits on a transaction commit.
I need to create/edit some test objects, commit the transaction and then ...
3
votes
3answers
636 views
Best practice for testing Hibernate mappings
I am wondering what people have found their best practice to be for testing Hibernate mappings and queries ?
This cannot be done with Unit Testing, so my experience has been to write Integration ...
3
votes
1answer
929 views
Spring integration test does not roll back
I'm using Spring + Hibernate + H2. I do database operations in my integration tests (by calling a service class). I want Spring to rollback the changes after each test method, but I can't get it to ...
1
vote
4answers
493 views
How do I swap a jndi datasource lookup to an in memory database for intergration testing?
I'm using Spring and Hibernate and want to do some intergration testing with DBUnit. In my application-context.xml I currently specify a datasource via jndi-lookup which reads the jndi-name from a ...
2
votes
1answer
135 views
Does iBatis have any analog of Hibernate's `hbm2ddl` for integration testing with in-memory database?
I'm considering adding integration tests to a Java-Struts-Spring-iBatis-Oracle legacy application.
In the past I've used HSQL as an in-memory database for integration tests for applications that used ...
0
votes
1answer
329 views
Spring Hibernate integration test returns unexpected result
I am using Maven, Hibernate and Spring in my application. I have implemented entity classes, DAO classes and service classes in packages of their own. I have problem when testing a service. When unit ...
1
vote
1answer
145 views
Unit Testing and Integration Testing demarcation in a maven database layer module
I believe i've been making the same mistake when it comes to the kind of test i have to write.
we have differents maven modules in our application, and there is one called model which have all the ...
1
vote
1answer
259 views
Is Grails supposed to ignore the flush mode in integration tests?
I'm working on a Grails (transactional) service which builds a complex domain structure and persists it. The logic works by identifying a previous structure, then creating a new structure and then -- ...
0
votes
1answer
159 views
integration testing of hibernate with OpenSessionInViewFilter paradigm
I use spring and hibernate with a ria technology called ZKOSS and use the OpenSessionInViewFilter paradigm,
I have integration tests to test features like
1) Entity is loaded into the UI (has ...
0
votes
2answers
928 views
how is an integration testing properly done with hibernate 3 spring 3.0.5 with spring transaction management(maven project)
I believe this kind of question is being asked over and over again.but i think there is something here that i need to understand once for all.
I must admit that i'm very bad at undertanding how ...
8
votes
2answers
4k views
How to rollback nested transactions with Propagation.REQUIRES_NEW in integration tests
I have several integration tests for various services that extend the following baseclass:
@ContextConfiguration(locations="classpath:applicationContext-test.xml")
...
0
votes
1answer
809 views
Why is this Spock Specification in Grails resulting in 'identifier of an instance of projectname.Event was altered from 1 to 2;'?
Running test-app integration:spock causes the following error:
identifier of an instance of
projectname.Event was altered from 1
to 2; nested exception is
org.hibernate.HibernateException: ...
5
votes
4answers
2k views
Best way to truncate all tables with hibernate?
I would like to truncate all my database tables between one integration test to another. What is the best way to do this using hibernate?
Currently I'm doing this:
public void cleanDatabase() {
...
2
votes
1answer
373 views
Unit-Test, Integration test or problem in design?
I'm written my first unit-test and I think it is too dependent on other modules and I'm not sure whether it's because:
It's a complex test
I've actually written an integration test or
I have a ...
3
votes
4answers
3k views
How should I reset a JPA-controlled database before every test?
Is there a best-practice pattern for completely resetting a database to a freshly-paved schema with JPA before a unit test? I have been using a testing persistence unit with ...
2
votes
2answers
430 views
How can I simulate the ending of a transaction using JUnit with Spring and Hibernate to isolate a LazyInitializationException?
I'm trying to write a test that isolates the failure to load a property because no Session exists.
The following path fails
ERROR [http-8081-14] LazyInitializationException.setSessionAttribute(223) ...
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 ...
5
votes
2answers
3k views
How to run Spring Roo generated tests against a different database to Tomcat?
I have a collection of integration tests that have been generated by Spring Roo for my domain objects (and DAO ITDs).
They appear to be fixed to use the "production" applicationContext.xml, which ...
