Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
998 views

Spring-Autowiring happens after @BeforeClass when running test with maven-surefire

I have some problems with dependency injection (Spring autowiring) and maven-surefire. The following test works without problems when run in eclipse with TestNG: The service-object is injected, then ...
6
votes
3answers
733 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. ...
6
votes
3answers
3k views

request scoped beans in spring testing

I would like to make use of request scoped beans in my app. I use JUnit4 for testing. If I try to create one in a test like this: @RunWith(SpringJUnit4ClassRunner.class) ...
4
votes
2answers
961 views

How to write spring test suite of multiple tests and run selective tests?

I have many spring test methods in a test class. i want to run only selective tests. So i want to create a test suite in same class. @RunWith(SpringJUnit4ClassRunner.class) ...
4
votes
4answers
2k views

Spring Test Framework and annotation-based autowiring Problem

I would like to use two different implementations for a DAO with Spring's testframework. src.main.java .businessobjects \-User.java .dao \-IUserDAO.java .daojpa \-UserDAO.java ...
3
votes
1answer
252 views

Correct usage subclassing a spring ContextLoader for testing

For the integration tests for my spring application with junit I am subclassing org.springframework.test.context.ContextLoader, because I want to use a already present XmlWebApplicationContext for ...
3
votes
6answers
2k views

JUnit tests pass in Eclipse but fail in Maven Surefire

I have written some JUnit tests using JUnit 4 and spring-test libraries. When I run the tests inside Eclipse then run fine and pass. But when I run them using Maven (during the build process), they ...
3
votes
7answers
11k views

Spring context tests can't find config locations

I have a large application spread across multiple Spring bean definition xml files. In my test suite I manually load up the XML files I need using a FileSystemXmlApplicationContext to perform the ...
2
votes
1answer
65 views

@Rollback(false) not working on @Before using SpringJUnit4ClassRunner

In a JUnit test in my Spring application, I'd like to insert a lot of data in a setup method, and then use it to test against. However, whatever is done in the @Before method appears to be rolled back ...
2
votes
1answer
90 views

Reuse spring application context across junit test classes

We've a bunch of JUnit test cases (Integration tests) and they are logically grouped into different test classes. We are able to load Spring application context once per test class and re-use it for ...
2
votes
1answer
108 views

Unitils vs Spring TestContext Framework

I'm thinking about which testing framework to use for my spring+hibernate web application. Initially I spotted and got pretty interested in Unitils, but then I saw the standard Spring TestContext ...
2
votes
1answer
432 views

Transaction not rolling back in Spring Test for delete operation

Somehow my test is not rolling back the delete transaction when doing a Spring Test. The data is deleted permanently. I am using Spring-Hibernate combo. here is my test class: ...
2
votes
1answer
256 views

Setting custom TestExecutionListener for all test classes, so I can log the stack trace of every exception/assertion thrown

Hey, I'm using SpringJUnit4ClassRunner. By default, the TestContextManager.afterTestMethod() logs every exception or assertion thrown very briefly (just the message), like so: testMethod = ...
2
votes
1answer
3k views

SpringJUnit4ClassRunner initialize beans for each test?

The following test illustrates that this test bean is initialized twice by Spring. I'm hoping someone can tell me why this is so, since it should only be once. Here's the test: import ...
1
vote
2answers
46 views

Spring 3 integration testing - sessionFactory inicialization exception

When i run my spring junit test i got this error message : Caused by: java.lang.NoSuchMethodError: org/slf4j/impl/StaticLoggerBinder.getSingleton()Lorg/slf4j/impl/StaticLoggerBinder; .... ...
1
vote
2answers
310 views

Spring Testing with H2 db configuration

I use Oracle in production environment and I would like to use H2 for testing. I can type; <jdbc:embedded-database id="dataSource"> <jdbc:script location="classpath:schema.sql"/> ...
1
vote
1answer
325 views

Spring jUnit Testing - either can not autowire or can not find appContext.xml

I am unittesting a spring based application atm. First the problem is, that if I haven't started the app once on a server the unittests all fail. If I do start the app on the server first (and stop ...
1
vote
2answers
391 views

How can I make Spring testcontext framework use multiple data sources?

I'm trying to integration test my application with Spring TestContext framework. I have done this by extending AbstractTransactionalJUnit4SpringContextTests, as usual. However, my application has ...
1
vote
1answer
284 views

Putting Spring integration tests in different classes and packages

I am using AbstractTransactionalSpringContextTests to run spring integrations tests. The spring context is loaded just once and then all the tests are run. How do I do the same if I want my tests to ...
1
vote
2answers
159 views

Incite database failure for integration test

When running an integration test (Web Service talking to JDBC, in this case) how do you force the database to throw an error so that the resulting soap fault can be inspected? I'm using Spring's ...
0
votes
0answers
14 views

Spring DM Test Framework without Maven?

I would like make the integration tests of our OSGi-Services (based on Spring DM) inside an OSGi-container, using the OSGi-testing framework "Spring DM test framework". Unfortunately all the examples ...
0
votes
2answers
79 views

Apache Camel Testing

We're using Spring for DI and Camel for routing/messaging. I've been asked to set up some (JUnit) unit tests for our various components (which all route messages to one another in a pipeline fashion). ...
0
votes
1answer
69 views

Testing Spring-JPA

I am developping a web application using Spring (3.1.x), JSF 2, JPA 2 (Hibernate Provider) for tomcat 6.x. I want to test my DAO classes. In my DAO class: i do this: @PersistenceContext private ...
0
votes
1answer
77 views

Spring 3 @Autowire in tests

I have one irritating problem right now. My tests fail due to an autowire. Could not autowire field: private k.dao.CompanyDao k.dao.CompanyDaoTest.companyDao; nested exception is ...
0
votes
2answers
98 views

Spring 3 - real integration test

currently I am working on a spring based application. I do have some unit tests for many purposes of the application. The problem is, I've not found any solution to do a real integration test on my ...
0
votes
2answers
393 views

NoSuchFieldError when trying to run a jUnit test with Spring

So far I have two tests. One uses only jUnit framework and works fine. The other one uses spring-test library and creates this exception every time I try to run it. Any ideas what may cause the ...
0
votes
1answer
94 views

Is there any way to run the junit / TestNG test cases in test environment?

I am new to the spring framework. I have some experience in rails framework. I am planing to create 3 environment ( test, dev, production ) I have created profiles in my pom file for each of this ...
0
votes
1answer
56 views

project layout and spring-test support issues

We have project layout as below. src src/test/java src/test/resources and we cant add src/main/(java, resources) for code, because of earlier developemnt done. src/test/java is having both unit ...
0
votes
1answer
91 views

Spring MVC Testing Error in loading xml fie

My Code is works, but it fail in Junit mock testing in the below line. ApplicationContext ctx = new ClassPathXmlApplicationContext("../MyFile.xml"); HOw do I fix this? adding @ContextConfiguration ...
0
votes
1answer
617 views

How to make @BeforeClass run prior Spring TestContext loads up?

it should be piece of cake for programmers using testNG. I have this scenario @ContextConfiguration(locations={"customer-form-portlet.xml", "classpath:META-INF2/base-spring.xml" }) public ...
0
votes
3answers
242 views

Poor JUnit test using springframework has fragile Thread.sleep() calls. How to fix?

I have recently joined a group with some severe JUnit testing issues. One problem is an 8 minute long test! The test has several sections; each makes calls to ...
0
votes
1answer
331 views

Why is my bean null?

I am trying to learn how to use applicationContext. My goal is to swap out a mock data repository for a real one when using my unit tests. I don't want to do this explicitly, I want to do this with ...
0
votes
1answer
520 views

Is automatic rollback of DAO integration tests with Spring Test a good practice?

If I were to annotate my DAO integration test methods with @Transactional, Spring Test will happily rollback any changes to the database after each test methods completes. These seems extremely ...
0
votes
1answer
586 views

Spring Tests : transaction not rolling back after test method executed

I'm trying to create integration tests for a legacy application deployed on Weblogic 8.1 using a subclass of AbstractTransactionalJUnit4SpringContextTests. My test method has the following ...
0
votes
2answers
647 views

How to mock a static variable in java using JMock

I have a Unit testing problem where a class has a static variable which wants to load the Spring Application Ctx. This class DOES NOT come out of the Bean Factory and I cannot change this fact. ...
0
votes
1answer
242 views

DBUnit: How to refresh only on failure?

I am using DBUnit to test a Spring/Hibernate persistence. I created an abstract test: public abstract class AbstractTestCase extends AbstractTransactionalDataSourceSpringContextTests { @Override ...