> ## Documentation Index
> Fetch the complete documentation index at: https://docs.instructorphp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Errors testing

## Failure classes

TypeSafe HTTP failures are normalized into Decision-specific exceptions:

| Condition                                             | Exception                         | Retriable by default |
| ----------------------------------------------------- | --------------------------------- | -------------------- |
| HTTP `401` or `403`                                   | `DecisionAuthenticationException` | No                   |
| HTTP `429`                                            | `DecisionRateLimitException`      | Yes                  |
| HTTP `408`, `5xx`, missing status, or network failure | `DecisionTransientException`      | Yes                  |
| Other HTTP `4xx`                                      | `DecisionInvalidRequestException` | No                   |
| Malformed or inconsistent success payload             | `DecisionResponseException`       | No                   |

All five extend `DecisionProviderException`, which exposes `statusCode`, `retryAfter`, and `isRetriable()`.

```php theme={null}
use Cognesy\Polyglot\Decision\Exceptions\DecisionAuthenticationException;
use Cognesy\Polyglot\Decision\Exceptions\DecisionProviderException;

try {
    $answers = $decision->get();
} catch (DecisionAuthenticationException $error) {
    // Correct credentials or configuration; retrying will not help.
} catch (DecisionProviderException $error) {
    if (! $error->isRetriable()) {
        // Reject or repair the request.
    }
}
// @doctest id="8fcf"
```

Construction and local invariant failures use `InvalidArgumentException`. Examples include empty question IDs, duplicate IDs, an executable request with no questions, a Choice with no options, a Score with fewer than two levels, unsupported JSON values, and incomplete configuration.

Provider exception messages deliberately exclude request bodies, response bodies, API keys, state, and question content. Preserve that boundary in application logs.

## Deterministic test seams

Choose the shallowest seam that covers the behavior under test:

* Implement `CanProcessDecisionRequest` as an in-memory fake for application logic, facade behavior, pending execution, retries, and lifecycle events.
* Inject an HTTP client backed by `MockHttpDriver` to exercise the TypeSafe request and response adapters, headers, payload shape, error classification, and provider request IDs.
* Use the live smoke only to verify real credentials and provider compatibility.

Inject a fake driver directly through a runtime:

```php theme={null}
use Cognesy\Polyglot\Decision\Decision;
use Cognesy\Polyglot\Decision\DecisionRuntime;

$runtime = new DecisionRuntime(
    driver: $fakeDecisionDriver,
    events: $events,
    defaultModel: 'test-model',
);

$answers = Decision::fromRuntime($runtime)
    ->with(input: 'test state', questions: $questions)
    ->get();
// @doctest id="fff4"
```

For adapter tests, pass the configured mock client through `DecisionRuntime::fromConfig(..., httpClient: $httpClient)`. No ordinary unit or feature test should require `TYPESAFE_API_KEY`.

## Opt-in live smoke

The repository includes one bounded live integration test:

```bash theme={null}
POLYGLOT_TYPESAFE_LIVE=1 php vendor/bin/pest packages/polyglot/tests/Integration/TypesafeLiveTest.php
# @doctest id="ad87"
```

The test is skipped unless explicitly enabled, fails clearly when enabled without `TYPESAFE_API_KEY`, and emits only safe endpoint, model, count, and usage evidence.
