Add runnable smoke-test clients for each SDK
CI / js (push) Successful in 18s
CI / go (push) Successful in 36s
CI / rust (push) Successful in 2m3s

Each package gets a small example program that exercises the real
client: with no ORIGIN_SERVICE_KEY set it runs against a local mock
check-in server, otherwise it checks in against ORIGIN_URL/Origin's
public endpoint. Wired into CI (mock mode) as a regression check, and
documented per README.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-01 15:38:37 +02:00
co-authored by Claude Sonnet 5
parent 2590e404f5
commit ac3c0f149c
9 changed files with 331 additions and 2 deletions
+11
View File
@@ -54,6 +54,17 @@ default. `Config` implements `Default`, so use struct-update syntax
`resolve_machine_id()` are exported standalone for callers that want the
detection logic without the HTTP client.
## Manual smoke test
```bash
cargo run --example testclient # single check-in, local mock server
cargo run --example testclient -- --watch # loops via run() until Ctrl-C
```
Set `ORIGIN_SERVICE_KEY` (and optionally `ORIGIN_URL`, `ORIGIN_TYPE`,
`ORIGIN_VERSION`, `ORIGIN_NAME`, `ORIGIN_SITE`, `ORIGIN_ENVIRONMENT`,
`ORIGIN_INTERVAL_HOURS`) to check in against a real endpoint instead.
## Platform notes
macOS/Windows machine-ID detection is compiled but not exercised by CI