forked from spring-projects/spring-authorization-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefaultAuthorizationServerApplicationTests.java
More file actions
176 lines (148 loc) · 6.64 KB
/
DefaultAuthorizationServerApplicationTests.java
File metadata and controls
176 lines (148 loc) · 6.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
* Copyright 2020-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample;
import org.htmlunit.Page;
import org.htmlunit.WebClient;
import org.htmlunit.WebResponse;
import org.htmlunit.html.HtmlButton;
import org.htmlunit.html.HtmlElement;
import org.htmlunit.html.HtmlInput;
import org.htmlunit.html.HtmlPage;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.HttpStatus;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.web.util.UriComponentsBuilder;
import java.io.IOException;
import java.net.URL;
import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.httpBasic;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
/**
* Integration tests for the sample Authorization Server.
*
* @author Daniel Garnier-Moiroux
*/
@ExtendWith(SpringExtension.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureMockMvc
public class DefaultAuthorizationServerApplicationTests {
private static final String REDIRECT_URI = "http://127.0.0.1:8080/login/oauth2/code/messaging-client-oidc";
private static final String AUTHORIZATION_REQUEST = UriComponentsBuilder
.fromPath("/oauth2/authorize")
.queryParam("response_type", "code")
.queryParam("client_id", "messaging-client")
.queryParam("scope", "openid")
.queryParam("state", "some-state")
.queryParam("redirect_uri", REDIRECT_URI)
.toUriString();
@Autowired
private WebClient webClient;
@Autowired
private MockMvc mockMvc;
@BeforeEach
public void setUp() {
this.webClient.getOptions().setThrowExceptionOnFailingStatusCode(true);
this.webClient.getOptions().setRedirectEnabled(true);
this.webClient.getCookieManager().clearCookies(); // log out
}
@Test
public void whenLoginSuccessfulThenDisplayNotFoundError() throws IOException {
HtmlPage page = this.webClient.getPage("/");
assertLoginPage(page);
this.webClient.getOptions().setThrowExceptionOnFailingStatusCode(false);
WebResponse signInResponse = signIn(page, "user1", "password").getWebResponse();
assertThat(signInResponse.getStatusCode()).isEqualTo(HttpStatus.NOT_FOUND.value()); // there is no "default" index page
}
@Test
public void whenLoginFailsThenDisplayBadCredentials() throws IOException {
HtmlPage page = this.webClient.getPage("/");
HtmlPage loginErrorPage = signIn(page, "user1", "wrong-password");
HtmlElement alert = loginErrorPage.querySelector("div[role=\"alert\"]");
assertThat(alert).isNotNull();
assertThat(alert.getTextContent()).isEqualTo("Invalid credentials");
}
@Test
public void whenNotLoggedInAndRequestingTokenThenRedirectsToLogin() throws IOException {
HtmlPage page = this.webClient.getPage(AUTHORIZATION_REQUEST);
assertLoginPage(page);
}
@Test
public void whenLoggingInAndRequestingTokenThenRedirectsToClientApplication() throws Exception {
// Log in
this.webClient.getOptions().setThrowExceptionOnFailingStatusCode(false);
this.webClient.getOptions().setRedirectEnabled(false);
signIn(this.webClient.getPage("/login"), "user1", "password");
// Request token
WebResponse response = this.webClient.getPage(AUTHORIZATION_REQUEST).getWebResponse();
assertThat(response.getStatusCode()).isEqualTo(HttpStatus.MOVED_PERMANENTLY.value());
String location = response.getResponseHeaderValue("location");
assertThat(location).startsWith(REDIRECT_URI);
assertThat(location).contains("code=");
// ==============================================================================================
// The following token request should be performed by the client application,
// eg: a web application, a mobile app, etc.
// ==============================================================================================
// get code parameter value form location
String query = new URL(location).getQuery();
String[] kAndV = query.split("&");
String code = null;
for (String kv : kAndV) {
if (kv.startsWith("code=")) {
code = kv.replace("code=", "");
break;
}
}
assertThat(code).isNotNull();
// Request token with code
mockMvc.perform(post("/oauth2/token")
// for OAuth2AuthorizationCodeAuthenticationConverter
.formField("grant_type", "authorization_code")
.formField("client_id", "messaging-client")
.formField("code", code)
.formField("redirect_uri", REDIRECT_URI)
// for BasicAuthenticationFilter
.with(httpBasic("messaging-client","secret")))
.andDo(print())
.andExpect(status().isOk())
.andExpect(jsonPath("$.access_token").exists());
}
private static <P extends Page> P signIn(HtmlPage page, String username, String password) throws IOException {
HtmlInput usernameInput = page.querySelector("input[name=\"username\"]");
HtmlInput passwordInput = page.querySelector("input[name=\"password\"]");
HtmlButton signInButton = page.querySelector("button");
usernameInput.type(username);
passwordInput.type(password);
return signInButton.click();
}
private static void assertLoginPage(HtmlPage page) {
assertThat(page.getUrl().toString()).endsWith("/login");
HtmlInput usernameInput = page.querySelector("input[name=\"username\"]");
HtmlInput passwordInput = page.querySelector("input[name=\"password\"]");
HtmlButton signInButton = page.querySelector("button");
assertThat(usernameInput).isNotNull();
assertThat(passwordInput).isNotNull();
assertThat(signInButton.getTextContent()).isEqualTo("Sign in");
}
}