mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-30 08:57:39 +00:00
3041c28758
python3-google-auth refreshed for 2.55.2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
99 lines
4.3 KiB
Diff
99 lines
4.3 KiB
Diff
From 2bb8c964f31ba0413a818f5b99d668b54e83cfa3 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Thu, 20 Nov 2025 17:47:43 -0800
|
|
Subject: [PATCH] python3-google-auth: Skip mTLS tests in ptest environment
|
|
|
|
Mutual TLS tests require SSL certificates and proper crypto library
|
|
setup that is not available in the isolated ptest environment.
|
|
|
|
Skip all TestMutualTlsAdapter, TestMutualTlsOffloadAdapter, and
|
|
TestMakeMutualTlsHttp tests as they require:
|
|
- Valid SSL client certificates
|
|
- Server certificates for mTLS handshake
|
|
- Proper certificate chains and CAs
|
|
|
|
These tests verify mTLS functionality which is not feasible to test
|
|
in the embedded ptest runtime without external certificate infrastructure.
|
|
|
|
Upstream-Status: Inappropriate [ptest environment limitation]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
tests/transport/test_requests.py | 6 ++++++
|
|
tests/transport/test_urllib3.py | 2 ++
|
|
2 files changed, 8 insertions(+)
|
|
|
|
diff --git a/tests/transport/test_requests.py b/tests/transport/test_requests.py
|
|
index f14ccea..6a1cc55 100644
|
|
--- a/tests/transport/test_requests.py
|
|
+++ b/tests/transport/test_requests.py
|
|
@@ -178,6 +178,7 @@ class TimeTickAdapterStub(AdapterStub):
|
|
class TestMutualTlsAdapter(object):
|
|
@mock.patch.object(requests.adapters.HTTPAdapter, "init_poolmanager")
|
|
@mock.patch.object(requests.adapters.HTTPAdapter, "proxy_manager_for")
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_success(self, mock_proxy_manager_for, mock_init_poolmanager):
|
|
adapter = google.auth.transport.requests._MutualTlsAdapter(
|
|
pytest.public_cert_bytes, pytest.private_key_bytes
|
|
@@ -189,6 +190,7 @@ class TestMutualTlsAdapter(object):
|
|
adapter.proxy_manager_for()
|
|
mock_proxy_manager_for.assert_called_with(ssl_context=adapter._ctx_proxymanager)
|
|
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_invalid_cert_or_key(self):
|
|
with pytest.raises(exceptions.MutualTLSChannelError):
|
|
google.auth.transport.requests._MutualTlsAdapter(
|
|
@@ -408,6 +410,7 @@ class TestAuthorizedSession(object):
|
|
"https://{}/".format(default_host)
|
|
)
|
|
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_configure_mtls_channel_with_callback(self):
|
|
mock_callback = mock.Mock()
|
|
mock_callback.return_value = (
|
|
@@ -432,6 +435,7 @@ class TestAuthorizedSession(object):
|
|
@mock.patch(
|
|
"google.auth.transport._mtls_helper.get_client_cert_and_key", autospec=True
|
|
)
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_configure_mtls_channel_with_metadata(self, mock_get_client_cert_and_key):
|
|
mock_get_client_cert_and_key.return_value = (
|
|
True,
|
|
@@ -888,6 +892,7 @@ class TestMutualTlsOffloadAdapter(object):
|
|
google.auth.transport._custom_tls_signer.CustomTlsSigner,
|
|
"attach_to_ssl_context",
|
|
)
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_success(
|
|
self,
|
|
mock_attach_to_ssl_context,
|
|
@@ -921,6 +926,7 @@ class TestMutualTlsOffloadAdapter(object):
|
|
google.auth.transport._custom_tls_signer.CustomTlsSigner,
|
|
"attach_to_ssl_context",
|
|
)
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_success_should_use_provider(
|
|
self,
|
|
mock_attach_to_ssl_context,
|
|
diff --git a/tests/transport/test_urllib3.py b/tests/transport/test_urllib3.py
|
|
index 3367403..88d0963 100644
|
|
--- a/tests/transport/test_urllib3.py
|
|
+++ b/tests/transport/test_urllib3.py
|
|
@@ -94,12 +94,14 @@ class ResponseStub(object):
|
|
|
|
|
|
class TestMakeMutualTlsHttp(object):
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_success(self):
|
|
http = google.auth.transport.urllib3._make_mutual_tls_http(
|
|
pytest.public_cert_bytes, pytest.private_key_bytes
|
|
)
|
|
assert isinstance(http, urllib3.PoolManager)
|
|
|
|
+ @pytest.mark.skip(reason="mTLS requires certificates not available in ptest")
|
|
def test_crypto_error(self):
|
|
with pytest.raises(exceptions.MutualTLSChannelError):
|
|
google.auth.transport.urllib3._make_mutual_tls_http(
|
|
--
|
|
2.43.0
|
|
|