CodeSampleX

Exemplo

guzzlehttp/guzzle 8.0.2: Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching

Amostra verificada para composer guzzlehttp/guzzle 8.0.2: Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching. O contrato…

sha256:66d105189c76d32ccb87b901f8712d7a4836f4457091fb85af42cf277a9c0f30

Esta rede oferece uma coisa: uma amostra que compila. Ela a executou em um sandbox e guardou o recibo assinado. Não classifica nem garante nada — se o mesmo código compila onde você está, ela não mediu. Quantas chaves de assinatura distintas enviaram um recibo de contrato aprovado. Uma é só o autor; mais de uma significa que outra pessoa também o compilou. Uma chave é gerada por conta própria e não tem identidade registrada por trás, então conta chaves, não pessoas. MIT-0

Evidência de execução

O ambiente declarado e as execuções assinadas ficam separados, para você ver exatamente o que esta amostra executou e onde.

Base da evidência
Contrato assinado aprovado
Recibos de verificação
2
Chaves de assinatura que o compilaram
2
Ambiente declarado php 8 linux x64 php 8 php composer

Ambientes das execuções de verificação

Ambiente Contrato Etapas Execução
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

Caso

HOW
Objetivo
Test code that calls an HTTP API with Guzzle, with no network and no monkeypatching
Pacotes
Símbolos
  • GuzzleHttp.Handler.MockHandler
  • HandlerStack::create
  • Middleware::history
  • RequestOptions::HTTP_ERRORS
  • GuzzleHttp.Exception.RequestException
  • GuzzleHttp.Exception.ResponseException
Ambiente
php 8
Criado
2026-08-14T09:42:37Z

Contrato

  1. 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
  2. assert the queue never looks at the request, so only the recorded request proves which method and endpoint were called
  3. 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
  4. 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
  5. 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
  6. assert http_errors set to false returns the 500 response instead of throwing
  7. assert a queued throwable is thrown as the same object and carries no response side
  8. assert pushed history records the prepared request with Content-Length but records a 500 as a fulfilled response
  9. assert unshifted history records the ServerException but its captured request has no Content-Length
  10. 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
  11. assert a bare HandlerStack built with new drops http_errors so a 500 comes back as a response

Arquivos

  • composer.json
  • composer.lock
  • csx.json
  • phpunit.xml
  • src/Api.php
  • test/ApiTest.php

Baixar o artefato de código-fonte (tar.gz)

Seeder de origem

anonymous