[arvados] updated: 2.1.0-2865-g3d99c1541
git repository hosting
git at public.arvados.org
Fri Aug 26 15:26:08 UTC 2022
Summary of changes:
sdk/python/tests/test_keep_client.py | 28 +++++++++++-----------------
1 file changed, 11 insertions(+), 17 deletions(-)
via 3d99c1541a450411a847c1c2b87721a4c51b484e (commit)
from 124e87dbafd6c04c9937f45e90f2662c715bea90 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 3d99c1541a450411a847c1c2b87721a4c51b484e
Author: Tom Clegg <tom at curii.com>
Date: Fri Aug 26 11:25:47 2022 -0400
17344: Fix proxy detection test.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/sdk/python/tests/test_keep_client.py b/sdk/python/tests/test_keep_client.py
index 9e6ab2b2b..722b70b58 100644
--- a/sdk/python/tests/test_keep_client.py
+++ b/sdk/python/tests/test_keep_client.py
@@ -202,23 +202,6 @@ class KeepProxyTestCase(run_test_server.TestCaseWithServers):
'wrong content from Keep.get(md5("baz"))')
self.assertTrue(keep_client.using_proxy)
- @unittest.skip("https://dev.arvados.org/issues/17344#note-23")
- def test_KeepProxyTest2(self):
- # Don't instantiate the proxy directly, but set the X-External-Client
- # header. The API server should direct us to the proxy.
- arvados.config.settings()['ARVADOS_EXTERNAL_CLIENT'] = 'true'
- keep_client = arvados.KeepClient(api_client=self.api_client,
- proxy='', local_store='')
- baz_locator = keep_client.put('baz2')
- self.assertRegex(
- baz_locator,
- '^91f372a266fe2bf2823cb8ec7fda31ce\+4',
- 'wrong md5 hash from Keep.put("baz2"): ' + baz_locator)
- self.assertEqual(keep_client.get(baz_locator),
- b'baz2',
- 'wrong content from Keep.get(md5("baz2"))')
- self.assertTrue(keep_client.using_proxy)
-
def test_KeepProxyTestMultipleURIs(self):
# Test using ARVADOS_KEEP_SERVICES env var overriding any
# existing proxy setting and setting multiple proxies
@@ -255,6 +238,17 @@ class KeepClientServiceTestCase(unittest.TestCase, tutil.ApiClientMock):
self.assertEqual('100::1', service.hostname)
self.assertEqual(10, service.port)
+ def test_recognize_proxy_services_in_controller_response(self):
+ keep_client = arvados.KeepClient(api_client=self.mock_keep_services(
+ service_type='proxy', service_host='localhost', service_port=9, count=1))
+ try:
+ # this will fail, but it ensures we get the service
+ # discovery response
+ keep_client.put('baz2')
+ except:
+ pass
+ self.assertTrue(keep_client.using_proxy)
+
def test_insecure_disables_tls_verify(self):
api_client = self.mock_keep_services(count=1)
force_timeout = socket.timeout("timed out")
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list