Can rest-assured with cucumber be used with spring mvc (version 5)?What is @ModelAttribute in Spring MVC?Junit test case for spring MVC with RestEasyHow do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?RESTful Authentication via SpringSpring MVC @PathVariable with dot (.) is getting truncatedSpring Boot with Cucumber E2E (Selenium) testingSpring dependenices not injected with CucumberSpring Controller Integration Testing using TestNgRestAssuredRestDocumentationConfigurer causing NullPointerExceptionRest Assured vs Cucumber
Twelve Minesweeper mines that make twelve 4s
Should I inform my future product owner that there is a good chance that a team member will leave the company soon?
Is there any reason nowadays to use a neon indicator lamp instead of a LED?
How could artificial intelligence harm us?
As a discovery writer, how to complete unfinished novel (which is highly diverted from original plot ) after a time-gap
Paradox regarding phase transitions in relativistic systems
How was ownership of property managed during the Black Death, when so many original owners had died?
Quick Kurodoko Puzzle: Threes and Triples
Why do things cool down?
Can Brexit be undone in an emergency?
Persuading players to be less attached to a pre-session 0 character concept
Manager manipulates my leaves, what's in it for him?
Is Zack Morris's 'time stop' ability in "Saved By the Bell" a supernatural ability?
Why does Canada require a minimum rate of climb for ultralights of 300 ft/min?
Which museums have artworks of all four ninja turtles' namesakes?
How do rulers get rich from war?
How do you determine which representation of a function to use for Newton's method?
Why do we need to use transistors when building an OR gate?
Why would a fighter use the afterburner and air brakes at the same time?
Floating Point XOR
As an employer, can I compel my employees to vote?
What do solvers like Gurobi and CPLEX do when they run into hard instances of MIP
Did slaves have slaves?
Make Interviewee Comfortable in Potentially Intimate Environment
Can rest-assured with cucumber be used with spring mvc (version 5)?
What is @ModelAttribute in Spring MVC?Junit test case for spring MVC with RestEasyHow do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?RESTful Authentication via SpringSpring MVC @PathVariable with dot (.) is getting truncatedSpring Boot with Cucumber E2E (Selenium) testingSpring dependenices not injected with CucumberSpring Controller Integration Testing using TestNgRestAssuredRestDocumentationConfigurer causing NullPointerExceptionRest Assured vs Cucumber
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I m trying to setup BDD tests using cucumber, rest assured and spring 5. I am constantly getting error for weapplicationcontext is required. weapplicationcontext is not getting instantiated. I am using MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build()
still its null.
I have tried to include @ContextConfiguration
, @WebAppConfiguration
@Configuration
@ContextConfiguration
@WebAppConfiguration
@Import(AppConfig.class, TestConfig.class)
@ActiveProfiles("local", "test")
public class TestSetup {
protected WebApplicationContext webApplicationContext;
@Given("^the web context is set$")
public void the_web_context_is_set()
//ServletRequest servletRequest = new MockHttpServletRequest();
//AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
//ctx.register(BookkeepingAppConfig.class);
// ctx.setServletContext(servletRequest.getServletContext());
// this.webApplicationContext = ctx;
TestContext.getInstance().setMockMvc(MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build());
java spring-mvc cucumber rest-assured
|
show 1 more comment
I m trying to setup BDD tests using cucumber, rest assured and spring 5. I am constantly getting error for weapplicationcontext is required. weapplicationcontext is not getting instantiated. I am using MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build()
still its null.
I have tried to include @ContextConfiguration
, @WebAppConfiguration
@Configuration
@ContextConfiguration
@WebAppConfiguration
@Import(AppConfig.class, TestConfig.class)
@ActiveProfiles("local", "test")
public class TestSetup {
protected WebApplicationContext webApplicationContext;
@Given("^the web context is set$")
public void the_web_context_is_set()
//ServletRequest servletRequest = new MockHttpServletRequest();
//AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
//ctx.register(BookkeepingAppConfig.class);
// ctx.setServletContext(servletRequest.getServletContext());
// this.webApplicationContext = ctx;
TestContext.getInstance().setMockMvc(MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build());
java spring-mvc cucumber rest-assured
You're not autowiring the WAC?
– mpkorstanje
Mar 31 at 21:02
@mpkorstanje I tried that as well but still no luck.
– crzyMe
Apr 1 at 15:27
To make sure the spring config is correct, have you tried adding@RunWith(SpringRunner.class)
and replacing@Given
with@Test
?
– mpkorstanje
Apr 1 at 16:23
@mpkorstanje I m trying to use it with cucumber and rest assured.
– crzyMe
Apr 2 at 9:07
Sure. But that wasn't the goal. You have to break this problem into smaller parts first. So you know the indiviual parts work.
– mpkorstanje
Apr 2 at 12:41
|
show 1 more comment
I m trying to setup BDD tests using cucumber, rest assured and spring 5. I am constantly getting error for weapplicationcontext is required. weapplicationcontext is not getting instantiated. I am using MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build()
still its null.
I have tried to include @ContextConfiguration
, @WebAppConfiguration
@Configuration
@ContextConfiguration
@WebAppConfiguration
@Import(AppConfig.class, TestConfig.class)
@ActiveProfiles("local", "test")
public class TestSetup {
protected WebApplicationContext webApplicationContext;
@Given("^the web context is set$")
public void the_web_context_is_set()
//ServletRequest servletRequest = new MockHttpServletRequest();
//AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
//ctx.register(BookkeepingAppConfig.class);
// ctx.setServletContext(servletRequest.getServletContext());
// this.webApplicationContext = ctx;
TestContext.getInstance().setMockMvc(MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build());
java spring-mvc cucumber rest-assured
I m trying to setup BDD tests using cucumber, rest assured and spring 5. I am constantly getting error for weapplicationcontext is required. weapplicationcontext is not getting instantiated. I am using MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build()
still its null.
I have tried to include @ContextConfiguration
, @WebAppConfiguration
@Configuration
@ContextConfiguration
@WebAppConfiguration
@Import(AppConfig.class, TestConfig.class)
@ActiveProfiles("local", "test")
public class TestSetup {
protected WebApplicationContext webApplicationContext;
@Given("^the web context is set$")
public void the_web_context_is_set()
//ServletRequest servletRequest = new MockHttpServletRequest();
//AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
//ctx.register(BookkeepingAppConfig.class);
// ctx.setServletContext(servletRequest.getServletContext());
// this.webApplicationContext = ctx;
TestContext.getInstance().setMockMvc(MockMvcBuilders.webAppContextSetup(this.webApplicationContext).build());
java spring-mvc cucumber rest-assured
java spring-mvc cucumber rest-assured
edited Mar 28 at 15:03
Grant Foster
7112 gold badges11 silver badges21 bronze badges
7112 gold badges11 silver badges21 bronze badges
asked Mar 28 at 14:12
crzyMecrzyMe
162 bronze badges
162 bronze badges
You're not autowiring the WAC?
– mpkorstanje
Mar 31 at 21:02
@mpkorstanje I tried that as well but still no luck.
– crzyMe
Apr 1 at 15:27
To make sure the spring config is correct, have you tried adding@RunWith(SpringRunner.class)
and replacing@Given
with@Test
?
– mpkorstanje
Apr 1 at 16:23
@mpkorstanje I m trying to use it with cucumber and rest assured.
– crzyMe
Apr 2 at 9:07
Sure. But that wasn't the goal. You have to break this problem into smaller parts first. So you know the indiviual parts work.
– mpkorstanje
Apr 2 at 12:41
|
show 1 more comment
You're not autowiring the WAC?
– mpkorstanje
Mar 31 at 21:02
@mpkorstanje I tried that as well but still no luck.
– crzyMe
Apr 1 at 15:27
To make sure the spring config is correct, have you tried adding@RunWith(SpringRunner.class)
and replacing@Given
with@Test
?
– mpkorstanje
Apr 1 at 16:23
@mpkorstanje I m trying to use it with cucumber and rest assured.
– crzyMe
Apr 2 at 9:07
Sure. But that wasn't the goal. You have to break this problem into smaller parts first. So you know the indiviual parts work.
– mpkorstanje
Apr 2 at 12:41
You're not autowiring the WAC?
– mpkorstanje
Mar 31 at 21:02
You're not autowiring the WAC?
– mpkorstanje
Mar 31 at 21:02
@mpkorstanje I tried that as well but still no luck.
– crzyMe
Apr 1 at 15:27
@mpkorstanje I tried that as well but still no luck.
– crzyMe
Apr 1 at 15:27
To make sure the spring config is correct, have you tried adding
@RunWith(SpringRunner.class)
and replacing @Given
with @Test
?– mpkorstanje
Apr 1 at 16:23
To make sure the spring config is correct, have you tried adding
@RunWith(SpringRunner.class)
and replacing @Given
with @Test
?– mpkorstanje
Apr 1 at 16:23
@mpkorstanje I m trying to use it with cucumber and rest assured.
– crzyMe
Apr 2 at 9:07
@mpkorstanje I m trying to use it with cucumber and rest assured.
– crzyMe
Apr 2 at 9:07
Sure. But that wasn't the goal. You have to break this problem into smaller parts first. So you know the indiviual parts work.
– mpkorstanje
Apr 2 at 12:41
Sure. But that wasn't the goal. You have to break this problem into smaller parts first. So you know the indiviual parts work.
– mpkorstanje
Apr 2 at 12:41
|
show 1 more 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/4.0/"u003ecc by-sa 4.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%2f55399723%2fcan-rest-assured-with-cucumber-be-used-with-spring-mvc-version-5%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%2f55399723%2fcan-rest-assured-with-cucumber-be-used-with-spring-mvc-version-5%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
You're not autowiring the WAC?
– mpkorstanje
Mar 31 at 21:02
@mpkorstanje I tried that as well but still no luck.
– crzyMe
Apr 1 at 15:27
To make sure the spring config is correct, have you tried adding
@RunWith(SpringRunner.class)
and replacing@Given
with@Test
?– mpkorstanje
Apr 1 at 16:23
@mpkorstanje I m trying to use it with cucumber and rest assured.
– crzyMe
Apr 2 at 9:07
Sure. But that wasn't the goal. You have to break this problem into smaller parts first. So you know the indiviual parts work.
– mpkorstanje
Apr 2 at 12:41