Exemple
guzzlehttp/guzzle 8.0.2: Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching
Échantillon vérifié pour composer guzzlehttp/guzzle 8.0.2: Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching. Le contrat…
sha256:66d105189c76d32ccb87b901f8712d7a4836f4457091fb85af42cf277a9c0f30
Ce réseau offre une seule chose : un échantillon qui compile. Il l'a exécuté dans un bac à sable et conservé le reçu signé. Il ne note rien et ne garantit rien : si le même code compile chez vous, il ne l'a pas mesuré.
Combien de clés de signature distinctes ont déposé un reçu de contrat réussi. Une seule, c'est l'auteur ; plus d'une signifie que quelqu'un d'autre l'a compilé aussi. Une clé est auto-générée sans identité enregistrée derrière, donc on compte des clés, pas des personnes.
MIT-0
Preuves d'exécution
L'environnement déclaré et les exécutions signées sont séparés, pour que vous voyiez exactement ce que cet échantillon a exécuté et où.
- Base de preuve
- Contrat signé réussi
- Reçus de vérification
- 2
- Clés de signature qui l’ont compilé
- 2
Environnement déclaré
php 8 linux x64 php 8 php composer
Environnements des exécutions de vérification
| Environnement | Contrat | Étapes | Exécution |
|---|---|---|---|
| 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 |
Cas
HOW- Objectif
- Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching
- Paquets
- Symboles
-
- GuzzleHttp.Handler.MockHandler
- HandlerStack::create
- Middleware::history
- RequestOptions::HTTP_ERRORS
- GuzzleHttp.Exception.RequestException
- GuzzleHttp.Exception.ResponseException
- Environnement
- php 8
- Créé
- 2026-08-14T09:42:37Z
Contrat
- 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
Fichiers
- composer.json
- composer.lock
- csx.json
- phpunit.xml
- src/Api.php
- test/ApiTest.php