├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── evaluate-pr.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── Ziggurat.sln ├── docker-compose.yml ├── docs ├── icon.png └── icon.svg ├── runsettings.xml ├── samples ├── Sample.Cap.Mongo │ ├── Consumer.cs │ ├── ConsumerService.cs │ ├── Models.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── Sample.Cap.Mongo.csproj │ ├── appsettings.json │ └── sample.http └── Sample.Cap.SqlServer │ ├── Consumers │ └── OrderCreatedConsumer.cs │ ├── Controllers │ └── OrderController.cs │ ├── Domain │ ├── Models │ │ └── Order.cs │ └── Services │ │ └── OrderCreatedConsumerService.cs │ ├── Dtos │ └── OrderCreatedMessage.cs │ ├── Infrastructure │ ├── ExampleDbContext.cs │ └── Middlewares │ │ └── OrderCreatedValidationMiddleware.cs │ ├── Migrations │ ├── 20220615195223_InitialCreate.Designer.cs │ ├── 20220615195223_InitialCreate.cs │ └── ExampleDbContextModelSnapshot.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── Sample.Cap.SqlServer.csproj │ ├── Startup.cs │ ├── appsettings.json │ └── sample.http ├── scripts ├── mongo-init-replica-set.sh ├── start-sonarcloud.sh ├── start-tests.sh └── wait-for-it.sh ├── src ├── Directory.Build.props ├── Directory.Packages.props ├── Ziggurat.CapAdapter │ ├── BootstrapFilter.cs │ └── Ziggurat.CapAdapter.csproj ├── Ziggurat.MongoDB │ ├── CleanerOptionsExtensions.cs │ ├── MessageTracking.cs │ ├── MiddlewareOptionsExtensions.cs │ ├── MongoDbStorage.cs │ ├── Ziggurat.MongoDB.csproj │ └── ZigguratMongoDbOptions.cs ├── Ziggurat.SqlServer │ ├── CleanerOptionsExtensions.cs │ ├── EntityFrameworkStorage.cs │ ├── MessageTracking.cs │ ├── MiddlewareOptionsExtensions.cs │ ├── ModelBuilderExtensions.cs │ └── Ziggurat.SqlServer.csproj └── Ziggurat │ ├── Cleaner.cs │ ├── IConsumerService.cs │ ├── IMessage.cs │ ├── Idempotency │ ├── IStorage.cs │ └── IdempotencyMiddleware.cs │ ├── Internal │ └── LoggerExtensions.cs │ ├── Logging │ └── LoggingMiddleware.cs │ ├── MiddlewareOptions.cs │ ├── PipelineHandler.cs │ ├── Properties │ └── InternalsVisibleTo.cs │ ├── ServiceCollectionExtensions.cs │ └── Ziggurat.csproj └── tests ├── Directory.Build.props ├── Directory.Packages.props ├── Ziggurat.MongoDB.Tests ├── CleanerOptionsExtensionsTests.cs ├── MiddlewareOptionsExtensionsTests.cs ├── MongoDbStorageTests.cs ├── Support │ ├── TestFixture.cs │ └── TestMessage.cs ├── Ziggurat.MongoDB.Tests.csproj └── ZigguratMongoDbOptionsTests.cs ├── Ziggurat.SqlServer.Tests ├── CleanerOptionsExtensionsTests.cs ├── EntityFrameworkStorageTests.cs ├── MiddlewareOptionsExtensionsTests.cs ├── Support │ ├── OtherEntity.cs │ ├── TestContextWithoutMessages.cs │ ├── TestDbContext.cs │ ├── TestFixture.cs │ └── TestMessage.cs └── Ziggurat.SqlServer.Tests.csproj └── Ziggurat.Tests ├── CleanerTests.cs ├── IdempotencyMiddlewareTests.cs ├── LoggingMiddlewareTests.cs ├── PipelineTests.cs └── Ziggurat.Tests.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/evaluate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/.github/workflows/evaluate-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/README.md -------------------------------------------------------------------------------- /Ziggurat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/Ziggurat.sln -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/docs/icon.svg -------------------------------------------------------------------------------- /runsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/runsettings.xml -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/Consumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/Consumer.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/ConsumerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/ConsumerService.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/Models.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/Program.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/README.md -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/Sample.Cap.Mongo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/Sample.Cap.Mongo.csproj -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.Mongo/appsettings.json -------------------------------------------------------------------------------- /samples/Sample.Cap.Mongo/sample.http: -------------------------------------------------------------------------------- 1 | POST http://localhost:5136/ -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Consumers/OrderCreatedConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Consumers/OrderCreatedConsumer.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Controllers/OrderController.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Domain/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Domain/Models/Order.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Domain/Services/OrderCreatedConsumerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Domain/Services/OrderCreatedConsumerService.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Dtos/OrderCreatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Dtos/OrderCreatedMessage.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Infrastructure/ExampleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Infrastructure/ExampleDbContext.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Infrastructure/Middlewares/OrderCreatedValidationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Infrastructure/Middlewares/OrderCreatedValidationMiddleware.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Migrations/20220615195223_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Migrations/20220615195223_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Migrations/20220615195223_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Migrations/20220615195223_InitialCreate.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Migrations/ExampleDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Migrations/ExampleDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Program.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/README.md -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Sample.Cap.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Sample.Cap.SqlServer.csproj -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/Startup.cs -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/samples/Sample.Cap.SqlServer/appsettings.json -------------------------------------------------------------------------------- /samples/Sample.Cap.SqlServer/sample.http: -------------------------------------------------------------------------------- 1 | POST http://localhost:5000/order 2 | Content-Type: application/json 3 | 4 | { 5 | "Number": "123" 6 | } 7 | -------------------------------------------------------------------------------- /scripts/mongo-init-replica-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/scripts/mongo-init-replica-set.sh -------------------------------------------------------------------------------- /scripts/start-sonarcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/scripts/start-sonarcloud.sh -------------------------------------------------------------------------------- /scripts/start-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/scripts/start-tests.sh -------------------------------------------------------------------------------- /scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Ziggurat.CapAdapter/BootstrapFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.CapAdapter/BootstrapFilter.cs -------------------------------------------------------------------------------- /src/Ziggurat.CapAdapter/Ziggurat.CapAdapter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.CapAdapter/Ziggurat.CapAdapter.csproj -------------------------------------------------------------------------------- /src/Ziggurat.MongoDB/CleanerOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.MongoDB/CleanerOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat.MongoDB/MessageTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.MongoDB/MessageTracking.cs -------------------------------------------------------------------------------- /src/Ziggurat.MongoDB/MiddlewareOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.MongoDB/MiddlewareOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat.MongoDB/MongoDbStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.MongoDB/MongoDbStorage.cs -------------------------------------------------------------------------------- /src/Ziggurat.MongoDB/Ziggurat.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.MongoDB/Ziggurat.MongoDB.csproj -------------------------------------------------------------------------------- /src/Ziggurat.MongoDB/ZigguratMongoDbOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.MongoDB/ZigguratMongoDbOptions.cs -------------------------------------------------------------------------------- /src/Ziggurat.SqlServer/CleanerOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.SqlServer/CleanerOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat.SqlServer/EntityFrameworkStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.SqlServer/EntityFrameworkStorage.cs -------------------------------------------------------------------------------- /src/Ziggurat.SqlServer/MessageTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.SqlServer/MessageTracking.cs -------------------------------------------------------------------------------- /src/Ziggurat.SqlServer/MiddlewareOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.SqlServer/MiddlewareOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat.SqlServer/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.SqlServer/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat.SqlServer/Ziggurat.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat.SqlServer/Ziggurat.SqlServer.csproj -------------------------------------------------------------------------------- /src/Ziggurat/Cleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Cleaner.cs -------------------------------------------------------------------------------- /src/Ziggurat/IConsumerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/IConsumerService.cs -------------------------------------------------------------------------------- /src/Ziggurat/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/IMessage.cs -------------------------------------------------------------------------------- /src/Ziggurat/Idempotency/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Idempotency/IStorage.cs -------------------------------------------------------------------------------- /src/Ziggurat/Idempotency/IdempotencyMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Idempotency/IdempotencyMiddleware.cs -------------------------------------------------------------------------------- /src/Ziggurat/Internal/LoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Internal/LoggerExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat/Logging/LoggingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Logging/LoggingMiddleware.cs -------------------------------------------------------------------------------- /src/Ziggurat/MiddlewareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/MiddlewareOptions.cs -------------------------------------------------------------------------------- /src/Ziggurat/PipelineHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/PipelineHandler.cs -------------------------------------------------------------------------------- /src/Ziggurat/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/Ziggurat/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Ziggurat/Ziggurat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/src/Ziggurat/Ziggurat.csproj -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Directory.Packages.props -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/CleanerOptionsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/CleanerOptionsExtensionsTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/MiddlewareOptionsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/MiddlewareOptionsExtensionsTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/MongoDbStorageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/MongoDbStorageTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/Support/TestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/Support/TestFixture.cs -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/Support/TestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/Support/TestMessage.cs -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/Ziggurat.MongoDB.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/Ziggurat.MongoDB.Tests.csproj -------------------------------------------------------------------------------- /tests/Ziggurat.MongoDB.Tests/ZigguratMongoDbOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.MongoDB.Tests/ZigguratMongoDbOptionsTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/CleanerOptionsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/CleanerOptionsExtensionsTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/EntityFrameworkStorageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/EntityFrameworkStorageTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/MiddlewareOptionsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/MiddlewareOptionsExtensionsTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/Support/OtherEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/Support/OtherEntity.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/Support/TestContextWithoutMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/Support/TestContextWithoutMessages.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/Support/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/Support/TestDbContext.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/Support/TestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/Support/TestFixture.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/Support/TestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/Support/TestMessage.cs -------------------------------------------------------------------------------- /tests/Ziggurat.SqlServer.Tests/Ziggurat.SqlServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.SqlServer.Tests/Ziggurat.SqlServer.Tests.csproj -------------------------------------------------------------------------------- /tests/Ziggurat.Tests/CleanerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.Tests/CleanerTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.Tests/IdempotencyMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.Tests/IdempotencyMiddlewareTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.Tests/LoggingMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.Tests/LoggingMiddlewareTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.Tests/PipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.Tests/PipelineTests.cs -------------------------------------------------------------------------------- /tests/Ziggurat.Tests/Ziggurat.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelpadovezi/Ziggurat/HEAD/tests/Ziggurat.Tests/Ziggurat.Tests.csproj --------------------------------------------------------------------------------