UnitTest调用/swagger-ui.html导致springdoc-openapi的404

时间:2019-11-27 10:55:28

标签: java spring-boot swagger-ui openapi springfox

我正在尝试迁移到springdoc-openapi;除了能够运行mvn的单元测试外,其他所有功能都运行良好;以下maven命令的结果为404:

  • mvn -Dtest = SwaggerUITest测试-f TestSwaggerUi -P集成

Intellij没问题,因此我怀疑这是一个类加载问题。

我使用了下面示例中的代码,并添加了单元测试

Guthub代码: -https://github.com/eugenp/tutorials/tree/master/spring-boot-springdoc

对于单元测试,我添加到pom.xml中: (我使用保证检查一下swagger-ui页面是否存在)

   <dependency>
            <groupId>io.rest-assured</groupId>
            <artifactId>rest-assured</artifactId>
            <scope>test</scope>
            <version>3.0.2</version>
    </dependency>

测试本身:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class SwaggerUITest extends AbstractRestAssuredSetupClass {

    /**
     * Test successful swagger-UI call
     **/
    @Test
    public void getSwaggerUIPage() {
        givenAnAdministratorIsAuthenticated()
                .contentType(HTML)
                .get("/swagger-ui/index.html?url=/v3/api-docs")
                .then()
                .statusCode(OK.value());
    }
}

public abstract class AbstractRestAssuredSetupClass {

    @Value("${request.logging.enabled:true}")
    private boolean logRequests;
    @Value("${response.logging.enabled:true}")
    private boolean logResponses;
    @Value("${local.server.port}")
    private int port;

    @Before
    public void setUpRestAssured() {
        RestAssured.baseURI = "http://localhost:" + port;
        RestAssured.config = config().redirect(redirectConfig().followRedirects(false));
        if (logRequests) {
            RestAssured.filters(new RequestLoggingFilter());
        }
        if (logResponses) {
            RestAssured.filters(new ResponseLoggingFilter());
        }
    }

    protected RequestSpecification givenAnAdministratorIsAuthenticated() {
        return RestAssured.given().auth().preemptive().basic("user", "user");
    }
}

我还发现了一个有相同问题的人:https://github.com/springdoc/springdoc-openapi/issues/99

很遗憾,没有解决方案。我也可以回到springfox。 这样的问题导致我迁移:https://github.com/springfox/springfox/issues/2932

3 个答案:

答案 0 :(得分:1)

您可以看一下您从baeldung提到的样本。 我们已将其添加到演示中,并提供了UI的示例测试。 (SwaggerUnitTest)。它没有任何问题地通过了travis-CI。

您还可以查看测试:

答案 1 :(得分:0)

springdoc-openapi-ui升级到版本1.4.6后,该问题已解决

答案 2 :(得分:0)

也许您需要将此行添加到您的WebSecurityConfigs中:

.antMatchers("/v2/api-docs").permitAll()
.antMatchers("/swagger-ui.html").permitAll()
.antMatchers("/swagger-resources/**").permitAll()