Add testcontainers for integration testing #256
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.
Summary
Adds testcontainers support for running integration tests without manual Docker setup. Tests automatically spin up a Qdrant container and clean up after completion.
Changes
New Files
tests/test_utils.rs- Qdrant container setup with tmpfs for fast in-memory testingtests/integration.rs- Integration tests using containerized QdrantModified Files
Cargo.toml- Added testcontainers 0.26 dev-dependencysrc/lib.rs- Marked legacy integration test as#[ignore]src/qdrant_client/collection.rs- Marked legacy integration test as#[ignore]src/qdrant_client/query.rs- Marked legacy integration test as#[ignore]Features
QDRANT_VERSIONenv varUsage
Test Plan