ふくしま

ソフトウェアエンジニア

2022-07-20から1日間の記事一覧

caused by: java.lang.IllegalStateException: Mapped port can only be obtained after the container is started が起きた話

起こった問題 Testcontainers を使用していて、 caused by: java.lang.IllegalStateException: Mapped port can only be obtained after the container is started が起きて、コンテナが起動できなかった。 解決策 なんてことはない。テストクラスの上に @Te…

SpringGraphQL のテストで Tesetcontainers を使った話

モチベーション Sprig GraphQL はサーバに対して、ドキュメントを実行するテストを書ける。 公式ドキュメントのコード例。 WebTestClient client = WebTestClient.bindToServer() .baseUrl("http://localhost:8080/graphql") .build(); HttpGraphQlTester te…