-
Notifications
You must be signed in to change notification settings - Fork 42.1k
Expand file tree
/
Copy pathSampleWebSecureCustomApplicationTests.java
More file actions
105 lines (92 loc) · 3.43 KB
/
Copy pathSampleWebSecureCustomApplicationTests.java
File metadata and controls
105 lines (92 loc) · 3.43 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
/*
* Copyright 2012-present 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 smoketest.web.secure.custom;
import java.net.URI;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.http.client.ClientHttpRequestFactoryBuilder;
import org.springframework.boot.http.client.HttpClientSettings;
import org.springframework.boot.http.client.HttpRedirects;
import org.springframework.boot.resttestclient.autoconfigure.AutoConfigureRestTestClient;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.client.EntityExchangeResult;
import org.springframework.test.web.servlet.client.RestTestClient;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Basic integration tests for demo application.
*
* @author Dave Syer
* @author Scott Frederick
*/
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
@AutoConfigureRestTestClient
class SampleWebSecureCustomApplicationTests {
@Autowired
private RestTestClient rest;
@LocalServerPort
private int port;
private RestTestClient nonFollowingRedirect() {
return RestTestClient
.bindToServer(ClientHttpRequestFactoryBuilder.detect()
.build(HttpClientSettings.defaults().withRedirects(HttpRedirects.DONT_FOLLOW)))
.baseUrl("http://localhost:" + this.port)
.build();
}
@Test
void testHome() {
EntityExchangeResult<String> result = nonFollowingRedirect().get()
.uri("/")
.accept(MediaType.TEXT_HTML)
.exchange()
.returnResult(String.class);
assertThat(result.getStatus()).isEqualTo(HttpStatus.FOUND);
URI location = result.getResponseHeaders().getLocation();
assertThat(location).isNotNull();
assertThat(location.toString()).isEqualTo("/login");
}
@Test
void testLoginPage() {
this.rest.get()
.uri("/login")
.accept(MediaType.TEXT_HTML)
.exchangeSuccessfully()
.expectBody(String.class)
.value((body) -> assertThat(body).contains("<title>Login</title>"));
}
@Test
void testLogin() {
MultiValueMap<String, String> form = new LinkedMultiValueMap<>();
form.set("username", "user");
form.set("password", "password");
EntityExchangeResult<String> result = nonFollowingRedirect().post()
.uri("/login")
.contentType(MediaType.APPLICATION_FORM_URLENCODED)
.accept(MediaType.TEXT_HTML)
.body(form)
.exchange()
.returnResult(String.class);
assertThat(result.getStatus()).isEqualTo(HttpStatus.FOUND);
URI location = result.getResponseHeaders().getLocation();
assertThat(location).isNotNull();
assertThat(location.toString()).isEqualTo("/");
}
}