The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
43 views

best way to integration test spring mvc

I have a Spring MVC 3.2 project that I would like to unit & integration tests. The problem is all the dependencies I have, makes testing extremely difficult even with Sprint-test. I have a ...
4
votes
1answer
60 views

Ehcache shutdown causing an exception while running test suite

I'm experiencing the following problem. I have a test suit in my project and each individual test runs fine. However when I run them as a suite I some of them fails with the following exception: ...
0
votes
0answers
18 views

Spring junit error single matching bean but found 2

I have a test class, and have created a java config class to use with this class.. But im having issues as other tests seem to throw up found two instances of bean in configuration... my test class: ...
2
votes
2answers
243 views

spring-data-jpa bean validation in junit tests

In my recent work I've used spring-data-jpa to take advantage of provided repositories. When it came to integration tests I am unable to configure (I assume) spring context for testing and as a ...
3
votes
1answer
76 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 ...
0
votes
1answer
188 views

Spring mvc test - testing controllers with Autowired annotations

I am trying to create some tests for my controllers using spring test framework. Following this article: http://blog.springsource.org/2012/11/12/spring-framework-3-2-rc1-spring-mvc-test-framework/ I ...
0
votes
2answers
82 views

Share spring container between test application and embedded tomcat

We are using cucumber-jvm to write an integration test layer in our application. One of the challenges we are finding is managing the database between the tests and the web application. A typical ...
0
votes
1answer
58 views

Spring test does not roll back after test

I have a series of integration tests using Spring tests and a H2 memory database. I've noticed that the h2 database does not get rolled back after every test. This is my config: ...
0
votes
1answer
79 views

spring test injection not working when using TestExecutionListener

I want to use a custom TestExecutionListener in combination with SpringJUnit4ClassRunner to run a liquibase schema setup on my test database. My TestExecutionListener works fine but when I use the ...
0
votes
1answer
93 views

Inject Spring bean within RESTEasy Resource at Test time

Within a Unit/Integration Test, I'm trying to use the RESTEasy embedded server TJWSEmbeddedJaxrsServer or POJOResourceFactory inorder to simulate through a MockHttpRequest.get("/data") a resource call ...
1
vote
0answers
170 views

Spring-mvc + MockMvc + junit result is 200 but should be 404

I use the spring-test framework version 3.2.1.RELEASE and, specifically, the MockMvc object to test my controllers. The problem, however, is that when the MockMvc object does a perform on a ...
0
votes
1answer
45 views

using spring test context to initialize data

I was wondering if it's possible to initialize test data by implementing the TestExecutionListener interface and use the beforeTestClass and afterTestClass to load/dispose data. The test data will be ...
0
votes
0answers
43 views

Setup multi-database environment for Junit testing

I've been researching the entire day for this and found nothing useful yet. I'm writing tests for our application which is composed by a Shard Setup. DBUnit assumes that we are in a single database ...
1
vote
0answers
116 views

Unit testing a Spring MVC controller that returns DeferredResult

I am trying to test a Spring 3.2.1 controller that returns a list of DeferredResult objects. I was using the following test as a guide, but I am wondering if this test is an integration test and not a ...
0
votes
0answers
88 views

jpa spring-test flush error

I have table Product with field like that in my database: @Transient private Map<Locale, String> description = new HashMap<>(); description is defined in class ProductLocalization. ...
1
vote
2answers
109 views

spring 3 Testing: issue with @Autowired -> can't load Context

I have following test class: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:ApplicationContext.xml", "classpath:SecurityContext.xml" }) public class ...
1
vote
1answer
166 views

spring testing: Another CacheManager with same name 'myCacheManager' already exists in the same VM

Before you mark this as duplicate please read the question first. I've read all the stuff about this exception however it does not solve the issue for me. And I do get a slightly different exception ...
1
vote
0answers
55 views

IBM Webspehere equivalent work manager in spring junit test suite

We have an application which is deployed on WAS server. We use WAS work manager for mutli-threading. As of now we don't test multithreading and we just use mock of class ...
0
votes
1answer
63 views

Testing Dao with Spring

I'm having some issues running some tests with the spring junit runner. I'm using Java configuration for spring, so I can't seem to find an example that works for me. All I want to do is write a ...
0
votes
1answer
390 views

java.lang.NullPointerException when i run my unit test - mockito

i have a spring mvc application and using mockito for my unit test.I keep getting null pointer exception when i run my unit test. :( Please find below the method that my unit test will be based on: ...
0
votes
2answers
314 views

No transactional EntityManager available

I am new to the jpa and spring world and I am currently doing some unit test on a simple method but keep getting this error message only when I run my test class in unit test mode: ...
0
votes
0answers
125 views

Why dont my TestExecutionListener updates rollback? (Spring AbstractTransactionalJUnit4SpringContextTests)

I implemented a TestExecutionListener which populates the database. The idea was that when Spring rollbacks the test transaction, the inserts get rollbacked too, and the next method can start ...
3
votes
1answer
131 views

Why can't my test inherit its ContextConfiguration location from its parent?

In the interest of DRY, I want to define my ContextConfiguration in a parent class and have all my test classes inherit it, like so: Parent class: package org.my; ...
0
votes
0answers
279 views

TestNG + Spring with AbstractTestNGSpringContextTests is not scanning components

Hello i am in the very beginning of setting up a Spring based project, and I have it running using ActiveProfiles, but I'm having trouble getting it to work with TetsNG. It doesn't seem to be ...
0
votes
0answers
32 views

spring hibernate: can't get my test to work properly when using @Before

here is my code. when using @Before for the method "addConferenceandTrack" it doesn't assertNotSame at the end of "loadTest()" and the size of "tracks" is counted 0 although in "addConferenceAndTrack" ...
0
votes
1answer
30 views

how to disactivate @Before for a particular method?

I am writing a test class in java using spring and junit (actually I have "@RunWith(SpringJUnit4ClassRunner.class)" at the bottom of my class). there is a method with @Before annotation that I want ...
1
vote
1answer
283 views

Rollback after each unit test

I develop application using Spring, Hibernate and MySQL. I created DAO for one of my tables. Now, I would like to test DAO's methods (save, find etc.). The problem is that these methods affect on ...
0
votes
1answer
37 views

How to prevent test running outside the a SuiteTest

I've a group of test that must running only from a TestSuite and never directly because they need a resource that is instantiated at the suite setup level So my test suite is @RunWith(Suite.class) ...
0
votes
2answers
78 views

Creating a test suite with Spring test

In my Spring-Maven project my unit tests inherit from a base class: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:testDalApplicationContext.xml" }) ...
1
vote
1answer
285 views

Default Constructor error when using Spring 3.1 with RequestMappingHandlerAdapter

I have a custom argument resolver SecurityRequestParametersArgumentResolver that is working with Spring 3.0.7 but fails with Spring 3.1.2. The stack trace and test-driver code appear below. When I ...
0
votes
1answer
273 views

Best way to test JPA Spring 3.1

I have written several JPA Repositories, Services and support classes for my Spring 3.1.1/JPA/Hibernate 4 web app. However, I really want to write some unit and integration tests for it (I know, you ...
2
votes
1answer
115 views

Programmatic access to application context and context locations

I have some tests (I didn't write them, I am maintaining them) that use the spring ContextConfiguration annotation to supply application contexts: @ContextConfiguration(locations = { ...
1
vote
2answers
669 views

Testing with spring-test-mvc jsonpath returns null

I am using Spring's "spring-test-mvc" library to test web controllers. I have a very simple controller that returns a JSON array. Then in my test I have: @Test public void shouldGetAllUsersAsJson() ...
0
votes
0answers
906 views

org.springframework.test cannot be resolved also with maven dependency present

I'm having an issue while trying to build test suites for my Spring application. I'm new to Maven and I can't find what is wrong. I've added to my pom.xml <dependency> ...
0
votes
1answer
171 views

Spring AbstractTransactionalJUnit4SpringContextTests and simpleJdbcTemplate

I am trying to write an integration test using 'AbstractTransactionalJUnit4SpringContextTests'.I want to use 'executeSQLScript' method of this class. However, when 'executeSQLScript' method is ...
0
votes
2answers
354 views

JUnit - before method

I need to execute some piece of code before every JUnit test method. To execute this piece of code I use SpringTest class AbstractTestExecutionListener and its child ...
1
vote
1answer
339 views

Spring test DBUnit : table comparison fails even in simplest test

I use Spring test DBUnit to test my DB Service and Hibernate. I wrote a simplest test possible: @Test @DatabaseSetup("dumbDataSample_DBAccount.xml") ...
0
votes
3answers
357 views

Rollback transaction after @Test

First of all, I've found a lot of threads on StackOverflow about this, but none of them really helped me, so sorry to ask possibly duplicate question. I'm running JUnit tests using spring-test, my ...
1
vote
2answers
1k views

How to test POST spring mvc

My problem is to how to call this. I could do MyObject o = new MyObject(); myController.save(o, "value"); but this is not what I would like to do. I would like the MyObject to be in the request ...
1
vote
1answer
207 views

Testing post method Spring

I would like to test the controller method below. Is there any way to add a Profile object the mock request? MockHttpServletRequest request = new MockHttpServletRequest(); //request.add(myProfile); ...
0
votes
0answers
54 views

Column “address” not found in hibernate when testing in junit

I have two tables PersonalDetails and Address.. PersonalDetails has a relationship to Address and in PersonalDetials.hbm.xml hibernate i have defined it as <many-to-one name="address" ...
1
vote
4answers
128 views

Test smell… is this good practise?

I have two tests they are exactly the same... barring two things, they call two separate service calls.. hence when im using mockito i have two seperate expectation and verify lines... this is what i ...
0
votes
1answer
263 views

Mockito… Spring testing

here is my test class.. @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(loader=AnnotationConfigContextLoader.class) public Testclass { @Autowired private VClasss ...
0
votes
1answer
750 views

What is the difference between @BeforeClass and Spring @TestExecutionListener beforeTestClass()

What is the difference between using JUnit @BeforeClass and the Spring @TestExecutionListener beforeTestClass(TestContext testContext) "hook"? If there is a difference, which one to use under which ...
1
vote
2answers
580 views

SpringTest and afterPropertiesSet

I use SpringTest and EasyMock to do unit testing on my Spring bean. My test bean is like this: @ContextConfiguration(locations = "classpath:/test/applicationContext-test.xml") public class ...
0
votes
1answer
193 views

Spring mvc3 application test environment setup

I am working under a spring mvc3 application. And I meet some problem when I want to do some unit test for the Dao component. This is my application structure in eclipse: application build ...
0
votes
1answer
1k views

Spring testing framework - JNDI resource

I am toying a bit with Spring testing framework, but I have one problem. Normally when application is deployed on Tomcat we have <Resource name="jdbc/sqliteDS" auth="Container" ...
1
vote
3answers
249 views

JUnit: Setting Transaction boundry for Test Class

I want to start the database transactions before start of any test method and rollback all transactions at the end of running all tests. How to do thing?What annotations should I use ? ...
0
votes
1answer
160 views

How to run Spring integation tests when using aspects?

I'm developing a Spring MVC web application (Java 6 and Spring 3.0.6 currently). I'm starting to write some Spring integration tests using Junit4 that extend ...
0
votes
1answer
295 views

testExecute(com.abc.action.PasswordHintActionTest): Failed to load ApplicationContext

I am using Spring test framework for writing unit tests using maven as the build tool. i have put my applicationcontext.xml file in WEB-INF directory as shown below. i have put the same ...

1 2 3