PowerMock mock injected Authentication
i am using PowerMockRunner
in a spring-boot application for testing. Everything is working but when my controllers actions definition contain someControllerMethod(..., Authentication auth, ...)
. Then auth
is null and therefore some code is not working.
What i tried is to mock Authentication
and SecurityContext
. Came up with something like this
private void mockSecurity() {
Authentication authentication = mock(Authentication.class);
SecurityContext securityContext = mock(SecurityContext.class);
List<SimpleGrantedAuthority> authorities = Arrays.asList(new SimpleGrantedAuthority("USER"));
User mockedUser = new User("testuser", "passwordtest", authorities);
when(securityContext.getAuthentication()).thenReturn(authentication);
SecurityContextHolder.setContext(securityContext);
when(SecurityContextHolder.getContext().getAuthentication().getDetails()).thenReturn(mockedUser);
when(SecurityContextHolder.getContext().getAuthentication().getName()).thenReturn(mockedUser.getUsername());
}
Now those mocks work, if my code uses SecurityContextHolder.getContext().getAuthentication()
method of accessing the authentication, but not for the one automatically injected (probably because it is not yet mocked when the controller mock is created).
Any ideas how to mock the injected Authentication
so the code does not need to be changed? spring-security-test
and @MockWithUser
have the same result.
Relevant parts of the test look like this,
@RunWith(PowerMockRunner.class)
public class UserControllerTest {
@InjectMocks
UserController userController;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mockMvc = standaloneSetup(userController).build();
}
@Test
public void getUserDetails() {
mockSecurity();
mockMvc.perform(...).andExpect(...);
}
}
Edit as requested by pvpkiran the controller code
@RequestMapping(...)
public void getDetails(@PathVariable String id, Authentication auth) {
UserDetails loadedDetails = userService.getUserDetails(id);
if (!loadedDetails.getUserId().equals(auth.getName())) {
throw new Exception(...);
}
...
}
unit-testing spring-boot powermock spring-boot-test powermockrunner
add a comment |
i am using PowerMockRunner
in a spring-boot application for testing. Everything is working but when my controllers actions definition contain someControllerMethod(..., Authentication auth, ...)
. Then auth
is null and therefore some code is not working.
What i tried is to mock Authentication
and SecurityContext
. Came up with something like this
private void mockSecurity() {
Authentication authentication = mock(Authentication.class);
SecurityContext securityContext = mock(SecurityContext.class);
List<SimpleGrantedAuthority> authorities = Arrays.asList(new SimpleGrantedAuthority("USER"));
User mockedUser = new User("testuser", "passwordtest", authorities);
when(securityContext.getAuthentication()).thenReturn(authentication);
SecurityContextHolder.setContext(securityContext);
when(SecurityContextHolder.getContext().getAuthentication().getDetails()).thenReturn(mockedUser);
when(SecurityContextHolder.getContext().getAuthentication().getName()).thenReturn(mockedUser.getUsername());
}
Now those mocks work, if my code uses SecurityContextHolder.getContext().getAuthentication()
method of accessing the authentication, but not for the one automatically injected (probably because it is not yet mocked when the controller mock is created).
Any ideas how to mock the injected Authentication
so the code does not need to be changed? spring-security-test
and @MockWithUser
have the same result.
Relevant parts of the test look like this,
@RunWith(PowerMockRunner.class)
public class UserControllerTest {
@InjectMocks
UserController userController;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mockMvc = standaloneSetup(userController).build();
}
@Test
public void getUserDetails() {
mockSecurity();
mockMvc.perform(...).andExpect(...);
}
}
Edit as requested by pvpkiran the controller code
@RequestMapping(...)
public void getDetails(@PathVariable String id, Authentication auth) {
UserDetails loadedDetails = userService.getUserDetails(id);
if (!loadedDetails.getUserId().equals(auth.getName())) {
throw new Exception(...);
}
...
}
unit-testing spring-boot powermock spring-boot-test powermockrunner
show your controller class/method where you have this Authentication used. Without that it is hard to comment
– pvpkiran
Jan 3 at 10:19
Edited. But i think the core problem has nothing to do with the controller code per se. Simply the injectedAuthentication
is null and shouldn't, rather it should be mocked.
– patman
Jan 3 at 10:26
checkt this out techdev.io/en/developer-blog/…
– pvpkiran
Jan 3 at 10:35
Thank you but it uses a different test runner and a different test configuration. So for me that is not applicable.
– patman
Jan 3 at 11:39
you are missing the point. But the idea is similar. Doesn't matter which runner u r using. Main thing ismockMvc.perform( get("/employees") .session(..)
– pvpkiran
Jan 3 at 13:23
add a comment |
i am using PowerMockRunner
in a spring-boot application for testing. Everything is working but when my controllers actions definition contain someControllerMethod(..., Authentication auth, ...)
. Then auth
is null and therefore some code is not working.
What i tried is to mock Authentication
and SecurityContext
. Came up with something like this
private void mockSecurity() {
Authentication authentication = mock(Authentication.class);
SecurityContext securityContext = mock(SecurityContext.class);
List<SimpleGrantedAuthority> authorities = Arrays.asList(new SimpleGrantedAuthority("USER"));
User mockedUser = new User("testuser", "passwordtest", authorities);
when(securityContext.getAuthentication()).thenReturn(authentication);
SecurityContextHolder.setContext(securityContext);
when(SecurityContextHolder.getContext().getAuthentication().getDetails()).thenReturn(mockedUser);
when(SecurityContextHolder.getContext().getAuthentication().getName()).thenReturn(mockedUser.getUsername());
}
Now those mocks work, if my code uses SecurityContextHolder.getContext().getAuthentication()
method of accessing the authentication, but not for the one automatically injected (probably because it is not yet mocked when the controller mock is created).
Any ideas how to mock the injected Authentication
so the code does not need to be changed? spring-security-test
and @MockWithUser
have the same result.
Relevant parts of the test look like this,
@RunWith(PowerMockRunner.class)
public class UserControllerTest {
@InjectMocks
UserController userController;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mockMvc = standaloneSetup(userController).build();
}
@Test
public void getUserDetails() {
mockSecurity();
mockMvc.perform(...).andExpect(...);
}
}
Edit as requested by pvpkiran the controller code
@RequestMapping(...)
public void getDetails(@PathVariable String id, Authentication auth) {
UserDetails loadedDetails = userService.getUserDetails(id);
if (!loadedDetails.getUserId().equals(auth.getName())) {
throw new Exception(...);
}
...
}
unit-testing spring-boot powermock spring-boot-test powermockrunner
i am using PowerMockRunner
in a spring-boot application for testing. Everything is working but when my controllers actions definition contain someControllerMethod(..., Authentication auth, ...)
. Then auth
is null and therefore some code is not working.
What i tried is to mock Authentication
and SecurityContext
. Came up with something like this
private void mockSecurity() {
Authentication authentication = mock(Authentication.class);
SecurityContext securityContext = mock(SecurityContext.class);
List<SimpleGrantedAuthority> authorities = Arrays.asList(new SimpleGrantedAuthority("USER"));
User mockedUser = new User("testuser", "passwordtest", authorities);
when(securityContext.getAuthentication()).thenReturn(authentication);
SecurityContextHolder.setContext(securityContext);
when(SecurityContextHolder.getContext().getAuthentication().getDetails()).thenReturn(mockedUser);
when(SecurityContextHolder.getContext().getAuthentication().getName()).thenReturn(mockedUser.getUsername());
}
Now those mocks work, if my code uses SecurityContextHolder.getContext().getAuthentication()
method of accessing the authentication, but not for the one automatically injected (probably because it is not yet mocked when the controller mock is created).
Any ideas how to mock the injected Authentication
so the code does not need to be changed? spring-security-test
and @MockWithUser
have the same result.
Relevant parts of the test look like this,
@RunWith(PowerMockRunner.class)
public class UserControllerTest {
@InjectMocks
UserController userController;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mockMvc = standaloneSetup(userController).build();
}
@Test
public void getUserDetails() {
mockSecurity();
mockMvc.perform(...).andExpect(...);
}
}
Edit as requested by pvpkiran the controller code
@RequestMapping(...)
public void getDetails(@PathVariable String id, Authentication auth) {
UserDetails loadedDetails = userService.getUserDetails(id);
if (!loadedDetails.getUserId().equals(auth.getName())) {
throw new Exception(...);
}
...
}
unit-testing spring-boot powermock spring-boot-test powermockrunner
unit-testing spring-boot powermock spring-boot-test powermockrunner
edited Jan 3 at 10:24
patman
asked Jan 3 at 10:16
patmanpatman
1,06131536
1,06131536
show your controller class/method where you have this Authentication used. Without that it is hard to comment
– pvpkiran
Jan 3 at 10:19
Edited. But i think the core problem has nothing to do with the controller code per se. Simply the injectedAuthentication
is null and shouldn't, rather it should be mocked.
– patman
Jan 3 at 10:26
checkt this out techdev.io/en/developer-blog/…
– pvpkiran
Jan 3 at 10:35
Thank you but it uses a different test runner and a different test configuration. So for me that is not applicable.
– patman
Jan 3 at 11:39
you are missing the point. But the idea is similar. Doesn't matter which runner u r using. Main thing ismockMvc.perform( get("/employees") .session(..)
– pvpkiran
Jan 3 at 13:23
add a comment |
show your controller class/method where you have this Authentication used. Without that it is hard to comment
– pvpkiran
Jan 3 at 10:19
Edited. But i think the core problem has nothing to do with the controller code per se. Simply the injectedAuthentication
is null and shouldn't, rather it should be mocked.
– patman
Jan 3 at 10:26
checkt this out techdev.io/en/developer-blog/…
– pvpkiran
Jan 3 at 10:35
Thank you but it uses a different test runner and a different test configuration. So for me that is not applicable.
– patman
Jan 3 at 11:39
you are missing the point. But the idea is similar. Doesn't matter which runner u r using. Main thing ismockMvc.perform( get("/employees") .session(..)
– pvpkiran
Jan 3 at 13:23
show your controller class/method where you have this Authentication used. Without that it is hard to comment
– pvpkiran
Jan 3 at 10:19
show your controller class/method where you have this Authentication used. Without that it is hard to comment
– pvpkiran
Jan 3 at 10:19
Edited. But i think the core problem has nothing to do with the controller code per se. Simply the injected
Authentication
is null and shouldn't, rather it should be mocked.– patman
Jan 3 at 10:26
Edited. But i think the core problem has nothing to do with the controller code per se. Simply the injected
Authentication
is null and shouldn't, rather it should be mocked.– patman
Jan 3 at 10:26
checkt this out techdev.io/en/developer-blog/…
– pvpkiran
Jan 3 at 10:35
checkt this out techdev.io/en/developer-blog/…
– pvpkiran
Jan 3 at 10:35
Thank you but it uses a different test runner and a different test configuration. So for me that is not applicable.
– patman
Jan 3 at 11:39
Thank you but it uses a different test runner and a different test configuration. So for me that is not applicable.
– patman
Jan 3 at 11:39
you are missing the point. But the idea is similar. Doesn't matter which runner u r using. Main thing is
mockMvc.perform( get("/employees") .session(..)
– pvpkiran
Jan 3 at 13:23
you are missing the point. But the idea is similar. Doesn't matter which runner u r using. Main thing is
mockMvc.perform( get("/employees") .session(..)
– pvpkiran
Jan 3 at 13:23
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%2f54020254%2fpowermock-mock-injected-authentication%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
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%2f54020254%2fpowermock-mock-injected-authentication%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
show your controller class/method where you have this Authentication used. Without that it is hard to comment
– pvpkiran
Jan 3 at 10:19
Edited. But i think the core problem has nothing to do with the controller code per se. Simply the injected
Authentication
is null and shouldn't, rather it should be mocked.– patman
Jan 3 at 10:26
checkt this out techdev.io/en/developer-blog/…
– pvpkiran
Jan 3 at 10:35
Thank you but it uses a different test runner and a different test configuration. So for me that is not applicable.
– patman
Jan 3 at 11:39
you are missing the point. But the idea is similar. Doesn't matter which runner u r using. Main thing is
mockMvc.perform( get("/employees") .session(..)
– pvpkiran
Jan 3 at 13:23