Endpoint - CI/CD用語集の定義
エンドポイントは、1 つの API 操作を実行する特定の URL と HTTP メソッドの組み合わせです。
エンドポイントは、GET /users/{id} のように、操作を実行するために API が公開する特定の URL とメソッドの組み合わせです。CI での統合テストはエンドポイントを対象とし、その status とボディを検証します。
各エンドポイントはテスト可能な単位です。リクエストを与えると、定義された status と形状を返します。CI スイートはエンドポイントを列挙し、それぞれを契約と照合します。
関連ガイド
Route - CI/CD Glossary DefinitionRoute: A route is the rule that maps an incoming request path and method to the handler that serves it. Routi…
REST - CI/CD Glossary DefinitionREST: REST (Representational State Transfer) is an architectural style for APIs using HTTP methods, URLs as r…
Status Code - CI/CD Glossary DefinitionStatus Code: A status code is the three-digit HTTP number in a response that signals the result: 2xx success,…