Implement the tor_family_identity resource

This commit is contained in:
Abel Luck 2025-06-06 10:51:40 +02:00
parent 0951242b32
commit ec57a47ba2
22 changed files with 558 additions and 67 deletions

View file

@ -38,6 +38,14 @@ make lint
# Run acceptance tests (creates real resources)
make testacc
# Run e2e tests
make clean build e2e/tor-family # Run the tor-family test with latest binary
make clean build e2e/obfs4 # Run the obfs4 e2e test with latest binary
make e2e # Run all e2e tests
# Important: Always use 'make clean build' before e2e tests to ensure
# the test uses the latest provider binary
```
## Project Structure
@ -49,6 +57,7 @@ make testacc
│ ├── provider/ # Provider configuration examples
│ └── resources/ # Resource examples
├── docs/ # Generated documentation
├── e2e-tests/ # End-to-end tests
```
## Security Considerations