Files
wehub-resource-sync a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:33:42 +08:00

77 lines
2.1 KiB
Go

package contracts
import "testing"
func TestOpenAPI_YAML_RequestResponseAndStatus(t *testing.T) {
src := []byte(`openapi: 3.0.0
info:
title: Users
version: "1.0"
paths:
/users:
post:
summary: Create user
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateUserReq'
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/UserResp'
'400':
description: Bad request
components:
schemas:
CreateUserReq:
type: object
UserResp:
type: object
`)
cs := (&OpenAPIExtractor{}).Extract("api/users.yaml", src, nil, nil)
c := findContract(t, cs, "http::POST::/users", RoleProvider)
assertMetaString(t, c, "request_type", "CreateUserReq")
assertMetaString(t, c, "response_type", "UserResp")
assertMetaInts(t, c, "status_codes", []int{201, 400})
assertMetaString(t, c, "schema_source", "extracted")
}
func TestOpenAPI_YAML_NoBodies_SchemaSourceNone(t *testing.T) {
src := []byte(`openapi: 3.0.0
paths:
/health:
get:
responses:
'200':
description: OK
`)
cs := (&OpenAPIExtractor{}).Extract("api/health.yaml", src, nil, nil)
c := findContract(t, cs, "http::GET::/health", RoleProvider)
assertMetaString(t, c, "schema_source", "none")
assertMetaInts(t, c, "status_codes", []int{200})
}
func TestOpenAPI_JSON_RequestResponse(t *testing.T) {
src := []byte(`{
"openapi": "3.0.0",
"paths": {
"/users": {
"post": {
"requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CreateUserReq" } } } },
"responses": { "201": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserResp" } } } } }
}
}
}
}`)
cs := (&OpenAPIExtractor{}).Extract("api/users.json", src, nil, nil)
c := findContract(t, cs, "http::POST::/users", RoleProvider)
assertMetaString(t, c, "request_type", "CreateUserReq")
assertMetaString(t, c, "response_type", "UserResp")
}