-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python Wrapper - Support TLS insecure #3375
Open
GilboaAWS
wants to merge
5
commits into
valkey-io:main
Choose a base branch
from
GilboaAWS:expose_tls_insecure
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4a44dd9
expose TlsMode::Insecure client option for the python wrapper using a…
GilboaAWS e251981
moved to general tls configuration class
GilboaAWS b648521
Added integ test for tls insecure against tls cluster
GilboaAWS 5377318
Address lint issues
GilboaAWS c7ab1b5
addressed comments
GilboaAWS File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import asyncio | ||
from typing import AsyncGenerator | ||
|
||
import pytest | ||
from glide.config import ProtocolVersion | ||
from glide.glide_client import TGlideClient | ||
from tests.conftest import create_client | ||
from tests.utils.cluster import ValkeyCluster | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why we need this? |
||
def event_loop(): | ||
"""A module-scoped event loop for async tests in this file only.""" | ||
loop = asyncio.new_event_loop() | ||
yield loop | ||
loop.close() | ||
|
||
|
||
@pytest.fixture(scope="module", autouse=True) | ||
async def tls_clusters(): | ||
tls_valkey_cluster = ValkeyCluster( | ||
tls=True, cluster_mode=True, shard_count=3, replica_count=0 | ||
) | ||
tls_valkey_standalone = ValkeyCluster( | ||
tls=True, cluster_mode=False, shard_count=1, replica_count=0 | ||
) | ||
|
||
yield (tls_valkey_cluster, tls_valkey_standalone) | ||
|
||
del tls_valkey_cluster | ||
del tls_valkey_standalone | ||
|
||
|
||
@pytest.fixture | ||
def tls_insecure(request) -> bool: | ||
# If the test has param'd tls_insecure, use it | ||
# Otherwise default to False | ||
return getattr(request, "param", False) | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
async def glide_tls_client( | ||
request, | ||
tls_clusters, # we get (cluster_mode=True, cluster_mode=False) ValkeyClusters as a tuple | ||
cluster_mode: bool, # this is coming from @pytest.mark.parametrize | ||
protocol: ProtocolVersion, | ||
tls_insecure: bool, | ||
) -> "AsyncGenerator[TGlideClient, None]": | ||
""" | ||
Return a GlideClusterClient that connects to either the cluster or standalone, | ||
depending on the cluster_mode param. | ||
""" | ||
(tls_valkey_cluster, tls_valkey_standalone) = tls_clusters | ||
|
||
if cluster_mode: | ||
chosen_cluster = tls_valkey_cluster | ||
else: | ||
chosen_cluster = tls_valkey_standalone | ||
|
||
client = await create_client( | ||
request, | ||
cluster_mode=cluster_mode, | ||
valkey_cluster=chosen_cluster, | ||
protocol=protocol, | ||
use_tls=True, | ||
tls_insecure=tls_insecure, | ||
) | ||
yield client | ||
await client.close() | ||
|
||
|
||
@pytest.mark.asyncio | ||
class TestTls: | ||
@pytest.mark.parametrize("cluster_mode", [True, False]) | ||
@pytest.mark.parametrize("protocol", [ProtocolVersion.RESP2, ProtocolVersion.RESP3]) | ||
@pytest.mark.parametrize("tls_insecure", [True], indirect=True) | ||
async def test_tls_insecure(self, glide_tls_client: TGlideClient): | ||
""" | ||
This test verifies that the Glide client can connect to a TLS-enabled Valkey instance while skipping | ||
certificate validation. By parametrizing tls_insecure=True, we confirm that the client can successfully | ||
ping the cluster without strict cert checks. | ||
""" | ||
result = await glide_tls_client.ping() | ||
|
||
assert result == b"PONG" |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would make more sense to send TlsAdvancedConfiguration