Spring Boot testing coverage - cover return Gson statementHow to configure port for a Spring Boot applicationHow to log SQL statements in Spring Boot?Spring Boot - Custom JSON SerializationSpringApplicationConfiguration not found: Erroneous spring-boot-starter-test content?Integration test with spring bootSpring Boot, Global Exception Handling and TestingSpring Boot serialize parameteried type into JSON with type idSpring boot: @ConfigurationProperties not satisfied on testTestRestTemplate throws exception for 4xx status codesHow to detect PathVariable errors in the CI pipeline?
Credit card details stolen every 1-2 years. What am I doing wrong?
What happens on Day 6?
What powers the air required for pneumatic brakes in aircraft?
How to say no to more work as a PhD student so I can graduate
Why alcohol had been selected as fuel for the first American space rockets?
Is it OK to use personal email ID for faculty job applications or should we use (current) institute's ID
Do I need a 50/60Hz notch filter for battery powered devices?
Can "plane" (aeroplane) be used as a non-count noun?
Why did Steve Rogers choose this character in Endgame?
(Piano) is the purpose of sheet music to be played along to? Or a guide for learning and reference during playing?
Why do so many pure math PhD students drop out or leave academia, compared to applied mathematics PhDs?
Strategy to pay off revolving debt while building reserve savings fund?
Unix chat server making communication between terminals possible
What impact would a dragon the size of Asia have on the environment?
Kepler space telescope planets detection
Is there a source that says only 1/5th of the Jews will make it past the messiah?
Is it ethical for a company to ask its employees to move furniture on a weekend?
Is there a standard way of referencing line numbers in a draft?
Is it rude to refer to janitors as 'floor people'?
Is this artwork (used in a video game) real?
What made Windows ME so crash-prone?
Alphanumeric Line and Curve Counting
What happens if there is no space for entry stamp in the passport for US visa?
Finding the package which provides a given command
Spring Boot testing coverage - cover return Gson statement
How to configure port for a Spring Boot applicationHow to log SQL statements in Spring Boot?Spring Boot - Custom JSON SerializationSpringApplicationConfiguration not found: Erroneous spring-boot-starter-test content?Integration test with spring bootSpring Boot, Global Exception Handling and TestingSpring Boot serialize parameteried type into JSON with type idSpring boot: @ConfigurationProperties not satisfied on testTestRestTemplate throws exception for 4xx status codesHow to detect PathVariable errors in the CI pipeline?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a Spring Boot project that I'm testing and I have this get method in the controller:
@GetMapping("/updatecrime/id")
public String updateCrime(@PathVariable Long id)
Crime oldCrime = new Crime(id);
this.service.addCrime(id, oldCrime);
Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
oldCrime.getAvgHouseholdSize());
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));
I checked the coverage of my tests and all this method is covered expected for this last line:
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))
What kind of assert do I need to cover this? This is my test for the method:
this.objectMapper = new ObjectMapper();
try
ResultActions resultActions = this.mvc
.perform(MockMvcRequestBuilders.get("/updatecrime/5"));
MvcResult result = resultActions.andReturn();
String contentString = result.getResponse().getContentAsString();
Crime crime = objectMapper.readValue(contentString, Crime.class);
assertTrue(crime.getTotFemales() == 10);
catch (Exception e)
e.printStackTrace();
spring-boot testing spring-boot-test
add a comment |
I have a Spring Boot project that I'm testing and I have this get method in the controller:
@GetMapping("/updatecrime/id")
public String updateCrime(@PathVariable Long id)
Crime oldCrime = new Crime(id);
this.service.addCrime(id, oldCrime);
Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
oldCrime.getAvgHouseholdSize());
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));
I checked the coverage of my tests and all this method is covered expected for this last line:
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))
What kind of assert do I need to cover this? This is my test for the method:
this.objectMapper = new ObjectMapper();
try
ResultActions resultActions = this.mvc
.perform(MockMvcRequestBuilders.get("/updatecrime/5"));
MvcResult result = resultActions.andReturn();
String contentString = result.getResponse().getContentAsString();
Crime crime = objectMapper.readValue(contentString, Crime.class);
assertTrue(crime.getTotFemales() == 10);
catch (Exception e)
e.printStackTrace();
spring-boot testing spring-boot-test
add a comment |
I have a Spring Boot project that I'm testing and I have this get method in the controller:
@GetMapping("/updatecrime/id")
public String updateCrime(@PathVariable Long id)
Crime oldCrime = new Crime(id);
this.service.addCrime(id, oldCrime);
Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
oldCrime.getAvgHouseholdSize());
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));
I checked the coverage of my tests and all this method is covered expected for this last line:
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))
What kind of assert do I need to cover this? This is my test for the method:
this.objectMapper = new ObjectMapper();
try
ResultActions resultActions = this.mvc
.perform(MockMvcRequestBuilders.get("/updatecrime/5"));
MvcResult result = resultActions.andReturn();
String contentString = result.getResponse().getContentAsString();
Crime crime = objectMapper.readValue(contentString, Crime.class);
assertTrue(crime.getTotFemales() == 10);
catch (Exception e)
e.printStackTrace();
spring-boot testing spring-boot-test
I have a Spring Boot project that I'm testing and I have this get method in the controller:
@GetMapping("/updatecrime/id")
public String updateCrime(@PathVariable Long id)
Crime oldCrime = new Crime(id);
this.service.addCrime(id, oldCrime);
Crime newCrime = new Crime(oldCrime.getId(), oldCrime.getZipCode(), oldCrime.getTotPopulation(),
oldCrime.getMedianAge(), oldCrime.getTotMales(), 10, oldCrime.getTotHouseholds(),
oldCrime.getAvgHouseholdSize());
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime));
I checked the coverage of my tests and all this method is covered expected for this last line:
return new Gson().toJson(this.service.updateCrime(id, oldCrime, newCrime))
What kind of assert do I need to cover this? This is my test for the method:
this.objectMapper = new ObjectMapper();
try
ResultActions resultActions = this.mvc
.perform(MockMvcRequestBuilders.get("/updatecrime/5"));
MvcResult result = resultActions.andReturn();
String contentString = result.getResponse().getContentAsString();
Crime crime = objectMapper.readValue(contentString, Crime.class);
assertTrue(crime.getTotFemales() == 10);
catch (Exception e)
e.printStackTrace();
spring-boot testing spring-boot-test
spring-boot testing spring-boot-test
asked Mar 26 at 8:16
DseasterDseaster
6482 gold badges11 silver badges24 bronze badges
6482 gold badges11 silver badges24 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352542%2fspring-boot-testing-coverage-cover-return-gson-statement%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352542%2fspring-boot-testing-coverage-cover-return-gson-statement%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown