Add integration tests and Service Bus emulator setup#13
Merged
Conversation
Introduces a new IntegrationTests project with a basic smoke test for DotQueue, adds configuration for Azure Service Bus emulator and Azure SQL Edge via docker-compose, and updates the solution file to include the new test project. This enables local integration testing against a Service Bus emulator.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces integration testing infrastructure for DotQueue by adding Azure Service Bus emulator support and docker-compose orchestration. The changes enable local testing against emulated Azure services rather than requiring cloud resources.
Key changes:
- Adds Service Bus emulator configuration with queues, topics, and subscriptions
- Creates docker-compose setup with Azure SQL Edge and Service Bus emulator
- Introduces new integration test project with smoke test for message handling
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| servicebus-emulator/config.json | Service Bus emulator configuration defining namespaces, queues, topics and subscriptions |
| docker-compose.yml | Container orchestration for SQL Edge and Service Bus emulator services |
| DotQueue/DotQueue.sln | Solution file updated to include new integration test project |
| DotQueue/DotQueue.csproj | Version bump from 1.0.5 to 1.0.6 |
| DotQueue.IntegrationTests/IntegrationTests/Test.cs | Integration test with smoke test for message sending and receiving |
| DotQueue.IntegrationTests/IntegrationTests/IntegrationTests.csproj | Project file for integration tests with required dependencies |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
dastraus007
approved these changes
Sep 21, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces a new IntegrationTests project with a basic smoke test for DotQueue, adds configuration for Azure Service Bus emulator and Azure SQL Edge via docker-compose, and updates the solution file to include the new test project. This enables local integration testing against a Service Bus emulator.