feat: Add Database Tests for Container Images - Postgres, Redis, Valkey, Memcached#18001
Open
MadhurAggarwal wants to merge 7 commits into
Open
feat: Add Database Tests for Container Images - Postgres, Redis, Valkey, Memcached#18001MadhurAggarwal wants to merge 7 commits into
MadhurAggarwal wants to merge 7 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds container runtime coverage for four datastore packages.
Changes:
- Adds version and core functionality tests for Valkey, Redis compatibility, PostgreSQL, and Memcached.
- Adds Dockerfiles installing each datastore package.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
test_valkey/test_valkey.py |
Tests Valkey startup, version, and list operations. |
test_valkey/Dockerfile |
Installs Valkey. |
test_redis/test_redis.py |
Tests Redis-compatible commands and list operations. |
test_redis/Dockerfile |
Installs the Redis compatibility package. |
test_postgres/test_postgres.py |
Tests PostgreSQL initialization, connectivity, and SQL operations. |
test_postgres/Dockerfile |
Installs PostgreSQL client and server. |
test_memcached/test_memcached.py |
Tests Memcached startup and set/get behavior. |
test_memcached/Dockerfile |
Installs Memcached and Ncat. |
…d better readability
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.
Add Container Runtime Tests for 4 DataStores
Each added test contains:
PR Testing:
Locally built a container image and tested using azldev tool:
Also run ruff formatting tests:
