1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import warnings
import pytest
import requests
import urllib3
from elastic_transport import Transport
@pytest.mark.parametrize("node_class", ["urllib3", "requests"])
def test_simple_request(node_class, https_server_ip_node_config):
# when testing minimum urllib3 and requests dependencies, we disable
# the deprecation warning for ssl.match_hostname()
silence_ssl_deprecation = (
node_class == "urllib3" and urllib3.__version__ == "1.26.2"
) or (node_class == "requests" and requests.__version__ == "2.26.0")
with warnings.catch_warnings():
warnings.simplefilter("error")
if silence_ssl_deprecation:
warnings.filterwarnings(
"ignore", ".*match_hostname.*deprecated", DeprecationWarning
)
t = Transport([https_server_ip_node_config], node_class=node_class)
resp, data = t.perform_request("GET", "/foobar")
assert resp.status == 200
assert data == {"foo": "bar"}
|