Skip to main content

All Questions

Tagged with
1 vote
0 answers
18 views

SpringBootTest with Togglz

I just recently added togglz to the spring-boot 3.1.9 application, which contains also much stuff like spring-security, spring-data, etc. Maven dependency: <dependency> <groupId>org....
0 votes
0 answers
19 views

Dependency not getting mocked in unit test

I am trying to run a unit test for my springboot controller as: @WebMvcTest(controllers = MyController.class) @ExtendWith(SpringExtension.class) public class MyControllerTest { @Autowired ...
0 votes
0 answers
37 views

Spring Boot microservices with JWT (Cannot run Integration test (401 Unauthorized Error))

I try to implement an example of Spring Boot microservices with JWT. I have some problem. I cannot run all integration tests of product service even if I defined bearer token in terms of admin and ...
0 votes
0 answers
10 views

Junit expecting a 400 response but getting a 200

I am trying to test my springboot controller /save endpoint. I want to test that if you send a json request with a null agency name you should get back a 400 status and the response "Agency Name ...
0 votes
1 answer
11k views

How to solve Error creating bean with name 'configurationPropertiesBeans' defined in class path?

I have an existing Kotlin project. I am running Java 11. Recently I updated it with mvn -U clean install, and this particular test stopped working. import org.junit.jupiter.api.Test import org.junit....
-1 votes
2 answers
59 views

How to write a unit test with a controller method that has protected code in it [duplicate]

I am trying to write a unit test for the following controller: @RestController @RequestMapping(value = ENDPOINT_URL) public class MainController extends RestControllerBase { MainService ...
0 votes
1 answer
48 views

How to use class member variables inside Junit-Mockito tests

class MyClass { MyErrorServiceList myErrorServiceList; // myErrorServiceList is initialized by some complex method calls public boolean processErrorServiceList() { if (...
0 votes
1 answer
334 views

Spring data JPA Junit tests work apart but don't work together

I'm going to test my app with next Junit tests: @DataJpaTest class UserNameTest { @Autowired private UserNameRepo repo; private UserName userName; @Test public void createUserName(...
0 votes
1 answer
67 views

How can I delete all database entities after the tests are completed?

I was looking if there is a way with some kind of annotation rather than with code to clean the database after a test generated registries in it. I found about @Dirtiescontext but it doesn't seem to ...
0 votes
0 answers
33 views

I created a test case method named 'testRegisterCustomerSuccess,' but it encountered issues related to JPA queries

I have a method named registerCustomer in a service implementation class. I created a test case named testRegisterCustomerSuccess for this method in a class named UserServiceImplTest, where I mock ...
0 votes
0 answers
32 views

Mock WebClient webflux bean with Qualifier

I have the following scenario: A config class with two WebClient beans with different names public class WebClientConfig { @Bean("bean_1) public WebClient getWebClient1(WebClient.Builder ...
0 votes
1 answer
71 views

Unable to pass multipart file through mockMvc

I am writing junit test for my request method. Im using mockMvc to trigger the rest request. When I run my test I get the error java.lang.NullPointerException: Cannot invoke "org.springframework....
0 votes
2 answers
56 views

Junit local object mock with arguments

I want to use mockito for mocking the constructor call when a specific argument is passed. Lets say this is my class - public class MyTestClass { private final String argument; public ...
0 votes
1 answer
49 views

How can I make a multiple level of mock object

Here is my example of object @Service public class UserSshKeyService { private final RecordEventService eventService; private final UserSshKeyRepository repository; public ...
0 votes
0 answers
31 views

Junit for GCS files reading in spring boot

I have an application in spring boot where I am fetching multiple files from GCS and then iterate to read file content. I am able to mock gcs storage but not able to mock the file content. I want to ...

15 30 50 per page
1
2 3 4 5
158