7 changed files with 100 additions and 7 deletions
@ -0,0 +1,50 @@
@@ -0,0 +1,50 @@
|
||||
/* |
||||
* Copyright 2013-2020 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 org.springframework.cloud.gateway.filter; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.SpringBootConfiguration; |
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.cloud.gateway.test.BaseWebClientTests; |
||||
import org.springframework.context.annotation.Import; |
||||
import org.springframework.test.context.ActiveProfiles; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT; |
||||
|
||||
@SpringBootTest(webEnvironment = RANDOM_PORT) |
||||
@ActiveProfiles("forwardstatic") |
||||
public class ForwardRoutingFilterStaticIntegrationTests extends BaseWebClientTests { |
||||
|
||||
@Test |
||||
public void gatewayRequestsMeterFilterHasTags() { |
||||
testClient.get().uri("/mydocs").exchange().expectStatus().isOk().expectBody(String.class) |
||||
.consumeWith(result -> { |
||||
assertThat(result.getResponseBody()).contains("Docs 123"); |
||||
}); |
||||
} |
||||
|
||||
@EnableAutoConfiguration |
||||
@SpringBootConfiguration |
||||
@Import(DefaultTestConfig.class) |
||||
public static class CustomConfig { |
||||
|
||||
} |
||||
|
||||
} |
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
spring: |
||||
cloud: |
||||
gateway: |
||||
routes: |
||||
- uri: forward:/docs.html |
||||
id: static_docs_route |
||||
predicates: |
||||
- Path=/mydocs |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
<!-- |
||||
~ Copyright 2013-2023 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. |
||||
--> |
||||
|
||||
<html> |
||||
<body> |
||||
<h1>Docs 123</h1> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue