View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.sra;
20  
21  import javax.net.ssl.SSLException;
22  import org.junit.jupiter.api.Test;
23  import org.springframework.beans.factory.annotation.Autowired;
24  import org.springframework.boot.actuate.endpoint.ApiVersion;
25  import org.springframework.http.HttpHeaders;
26  import org.springframework.test.web.reactive.server.WebTestClient;
27  
28  public class ActuatorTest extends AbstractTest {
29  
30      @Autowired
31      private WebTestClient webClient;
32  
33      @Test
34      public void health() throws SSLException {
35          webClient.get().uri("/actuator/health").
36                  exchange().expectStatus().isUnauthorized();
37  
38          webClient.get().uri("/actuator/health").
39                  header(HttpHeaders.AUTHORIZATION, basicAuthHeader()).
40                  exchange().
41                  expectStatus().isOk().
42                  expectHeader().valueEquals(HttpHeaders.CONTENT_TYPE, ApiVersion.V3.getProducedMimeType().toString());
43      }
44  
45      @Test
46      public void routes() throws SSLException {
47          webClient.get().uri("/actuator/gateway/routes").
48                  exchange().expectStatus().isUnauthorized();
49  
50          webClient.get().uri("/actuator/gateway/routes").
51                  header(HttpHeaders.AUTHORIZATION, basicAuthHeader()).
52                  exchange().expectStatus().isOk();
53      }
54  
55      @Test
56      public void requests() throws SSLException {
57          webClient.get().uri("/actuator/metrics/gateway.requests").
58                  exchange().expectStatus().isUnauthorized();
59  
60          webClient.get().uri("/actuator/metrics/gateway.requests").
61                  header(HttpHeaders.AUTHORIZATION, basicAuthHeader()).
62                  exchange().expectStatus().isNotFound();
63      }
64  }