35 lines
592 B
Markdown
35 lines
592 B
Markdown
# Tests - sdk_relay
|
|
|
|
## Catégories
|
|
|
|
- Unitaires: tests de fonctions/méthodes
|
|
- Intégration: interaction HTTP/WS
|
|
- Connectivité: accès réseau et ports
|
|
- Externes: tests contre nœuds externes (ex: dev3)
|
|
- Performance: charge et latence
|
|
|
|
## Commandes
|
|
|
|
```bash
|
|
# Tous les tests Rust
|
|
cargo test --all
|
|
|
|
# Lint et format
|
|
cargo clippy -- -D warnings
|
|
cargo fmt -- --check
|
|
|
|
# Scripts (si présents)
|
|
./tests/run_all_tests.sh
|
|
```
|
|
|
|
## Rapports
|
|
|
|
- logs: `tests/logs/`
|
|
- reports: `tests/reports/`
|
|
|
|
## Bonnes pratiques
|
|
|
|
- Tests déterministes
|
|
- Données de test isolées
|
|
- Nettoyage après exécution
|