stabilize tests

This commit is contained in:
master
2026-02-01 21:37:40 +02:00
parent 55744f6a39
commit 5d5e80b2e4
6435 changed files with 33984 additions and 13802 deletions

View File

@@ -8,40 +8,40 @@ The Router module provides transport-agnostic microservice communication with a
```
src/Router/
├── StellaOps.Gateway.WebService/ # HTTP ingress gateway
├── __Libraries/
│ ├── StellaOps.Router.Gateway/ # Gateway core logic
│ ├── StellaOps.Router.Common/ # Shared models, enums
│ ├── StellaOps.Router.Config/ # YAML configuration
│ ├── StellaOps.Router.AspNet/ # ASP.NET integration
│ ├── StellaOps.Microservice/ # Microservice SDK
│ ├── StellaOps.Microservice.AspNetCore/ # ASP.NET hosting
│ ├── StellaOps.Microservice.SourceGen/ # Compile-time generator
│ ├── StellaOps.Messaging/ # Queue abstractions
│ ├── StellaOps.Messaging.Transport.InMemory/
│ ├── StellaOps.Messaging.Transport.Valkey/
│ ├── StellaOps.Messaging.Transport.Postgres/
│ ├── StellaOps.Router.Transport.InMemory/
│ ├── StellaOps.Router.Transport.Tcp/
│ ├── StellaOps.Router.Transport.Tls/
│ ├── StellaOps.Router.Transport.RabbitMq/
│ ├── StellaOps.Router.Transport.Udp/
│ └── StellaOps.Router.Transport.Messaging/
├── __Tests/
│ ├── __Libraries/
│ │ └── StellaOps.Router.Testing/ # Test fixtures
│ ├── StellaOps.Gateway.WebService.Tests/
│ ├── StellaOps.Microservice.Tests/
│ ├── StellaOps.Microservice.SourceGen.Tests/
│ ├── StellaOps.Router.Common.Tests/
│ ├── StellaOps.Router.Config.Tests/
│ ├── StellaOps.Router.Integration.Tests/
│ ├── StellaOps.Router.Transport.*.Tests/
│ └── StellaOps.Messaging.Transport.*.Tests/
└── examples/
├── Examples.OrderService/
├── Examples.NotificationService/
└── Examples.MultiTransport.Gateway/
????????? StellaOps.Gateway.WebService/ # HTTP ingress gateway
????????? __Libraries/
??? ????????? StellaOps.Router.Gateway/ # Gateway core logic
??? ????????? StellaOps.Router.Common/ # Shared models, enums
??? ????????? StellaOps.Router.Config/ # YAML configuration
??? ????????? StellaOps.Router.AspNet/ # ASP.NET integration
??? ????????? StellaOps.Microservice/ # Microservice SDK
??? ????????? StellaOps.Microservice.AspNetCore/ # ASP.NET hosting
??? ????????? StellaOps.Microservice.SourceGen/ # Compile-time generator
??? ????????? StellaOps.Messaging/ # Queue abstractions
??? ????????? StellaOps.Messaging.Transport.InMemory/
??? ????????? StellaOps.Messaging.Transport.Valkey/
??? ????????? StellaOps.Messaging.Transport.Postgres/
??? ????????? StellaOps.Router.Transport.InMemory/
??? ????????? StellaOps.Router.Transport.Tcp/
??? ????????? StellaOps.Router.Transport.Tls/
??? ????????? StellaOps.Router.Transport.RabbitMq/
??? ????????? StellaOps.Router.Transport.Udp/
??? ????????? StellaOps.Router.Transport.Messaging/
????????? __Tests/
??? ????????? __Libraries/
??? ??? ????????? StellaOps.Router.Testing/ # Test fixtures
??? ????????? StellaOps.Gateway.WebService.Tests/
??? ????????? StellaOps.Microservice.Tests/
??? ????????? StellaOps.Microservice.SourceGen.Tests/
??? ????????? StellaOps.Router.Common.Tests/
??? ????????? StellaOps.Router.Config.Tests/
??? ????????? StellaOps.Router.Integration.Tests/
??? ????????? StellaOps.Router.Transport.*.Tests/
??? ????????? StellaOps.Messaging.Transport.*.Tests/
????????? examples/
????????? Examples.OrderService/
????????? Examples.NotificationService/
????????? Examples.MultiTransport.Gateway/
```
## Key Components
@@ -178,6 +178,7 @@ dotnet run --project src/Router/examples/Examples.OrderService/
## Documentation
- `/docs/modules/router/README.md` - Product overview
- `/docs/modules/router/guides/ARCHITECTURE.md` - Technical architecture
- `/docs/modules/router/architecture.md` - Technical architecture
- `/docs/modules/router/guides/GETTING_STARTED.md` - Tutorial
- `/docs/modules/router/examples/` - Example documentation