샘플
guzzlehttp/guzzle 8.0.2: Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching
검증된 샘플 — composer guzzlehttp/guzzle 8.0.2: Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching. php 8 · linux alpine/x64 …
sha256:66d105189c76d32ccb87b901f8712d7a4836f4457091fb85af42cf277a9c0f30
이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다.
통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다.
MIT-0
실행 증거
선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.
- 증거 기준
- 서명된 컨트랙트 통과
- 검증 영수증
- 2
- 빌드한 서명 키
- 2
선언된 환경
php 8 linux x64 php 8 php composer
검증 실행 환경
| 환경 | 컨트랙트 | 단계 | 실행일 |
|---|---|---|---|
| php 8 · linux alpine/x64 · docker ed25519:a2ec939a4c60e243 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · composer@1 |
2026-08-14 |
| php 8 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · composer@1 |
2026-08-18 |
케이스
HOW- 목표
- Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching
- 심벌
-
- GuzzleHttp.Handler.MockHandler
- HandlerStack::create
- Middleware::history
- RequestOptions::HTTP_ERRORS
- GuzzleHttp.Exception.RequestException
- GuzzleHttp.Exception.ResponseException
- 환경
- php 8
- 생성일
- 2026-08-14T09:42:37Z
컨트랙트
- assert a MockHandler queue serves its responses in order while base_uri, the query option and the default headers still apply, and that history holds every exchange while MockHandler::getLastRequest holds only the most recent
- assert the queue never looks at the request, so only the recorded request proves which method and endpoint were called
- assert base_uri is merged by reference resolution: a leading slash on the request path replaces the base path, and a base_uri without a trailing slash loses its last segment
- assert http_errors turns a 500 into a ServerException whose response body is still readable from its current position and whose exception code is the status
- assert getResponse and hasResponse are gone from RequestException so the guzzle 7 idiom is a fatal Error, and getResponse now lives on ResponseException with a non-nullable return type
- assert http_errors set to false returns the 500 response instead of throwing
- assert a queued throwable is thrown as the same object and carries no response side
- assert pushed history records the prepared request with Content-Length but records a 500 as a fulfilled response
- assert unshifted history records the ServerException but its captured request has no Content-Length
- assert a dry queue makes an async call return a rejected promise rather than throwing at the call site, and that waiting on it raises a plain OutOfBoundsException that is not a GuzzleException
- assert a bare HandlerStack built with new drops http_errors so a 500 comes back as a response
파일
- composer.json
- composer.lock
- csx.json
- phpunit.xml
- src/Api.php
- test/ApiTest.php