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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
|
# --------------------------------------------------------------------------
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the ""Software""), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# --------------------------------------------------------------------------
import base64
import datetime
import json
import re
import types
import pickle
import platform
try:
from unittest import mock
except ImportError:
import mock
import pytest
from requests import Request, Response
from azure.core.polling import LROPoller
from azure.core.exceptions import DecodeError, HttpResponseError
from azure.core import PipelineClient
from azure.core.pipeline import PipelineResponse, Pipeline, PipelineContext
from azure.core.pipeline.transport import HttpTransport
from azure.core.polling.base_polling import LROBasePolling, OperationResourcePolling
from azure.core.pipeline.policies._utils import _FixedOffset
from utils import request_and_responses_product, REQUESTS_TRANSPORT_RESPONSES, create_transport_response, HTTP_REQUESTS
from azure.core.pipeline._tools import is_rest
from rest_client import MockRestClient
class SimpleResource:
"""An implementation of Python 3 SimpleNamespace.
Used to deserialize resource objects from response bodies where
no particular object type has been specified.
"""
def __init__(self, **kwargs):
self.__dict__.update(kwargs)
def __repr__(self):
keys = sorted(self.__dict__)
items = ("{}={!r}".format(k, self.__dict__[k]) for k in keys)
return "{}({})".format(type(self).__name__, ", ".join(items))
def __eq__(self, other):
return self.__dict__ == other.__dict__
class BadEndpointError(Exception):
pass
TEST_NAME = "foo"
RESPONSE_BODY = {"properties": {"provisioningState": "InProgress"}}
ASYNC_BODY = json.dumps({"status": "Succeeded"})
ASYNC_URL = "http://dummyurlFromAzureAsyncOPHeader_Return200"
LOCATION_BODY = json.dumps({"name": TEST_NAME})
LOCATION_URL = "http://dummyurlurlFromLocationHeader_Return200"
RESOURCE_BODY = json.dumps({"name": TEST_NAME})
RESOURCE_URL = "http://subscriptions/sub1/resourcegroups/g1/resourcetype1/resource1"
ERROR = "http://dummyurl_ReturnError"
POLLING_STATUS = 200
CLIENT = PipelineClient("http://example.org")
CLIENT.http_request_type = None
CLIENT.http_response_type = None
def mock_run(client_self, request, **kwargs):
return TestBasePolling.mock_update(
client_self.http_request_type, client_self.http_response_type, request.url, request.headers
)
CLIENT._pipeline.run = types.MethodType(mock_run, CLIENT)
@pytest.fixture
def client():
# The poller itself don't use it, so we don't need something functional
return PipelineClient("https://baseurl")
@pytest.fixture
def pipeline_client_builder():
"""Build a client that use the "send" callback as final transport layer
send will receive "request" and kwargs as any transport layer
"""
def create_client(send_cb):
class TestHttpTransport(HttpTransport):
def open(self):
pass
def close(self):
pass
def __exit__(self, *args, **kwargs):
pass
def send(self, request, **kwargs):
return send_cb(request, **kwargs)
return PipelineClient("http://example.org/", pipeline=Pipeline(transport=TestHttpTransport()))
return create_client
@pytest.fixture
def deserialization_cb():
def cb(pipeline_response):
return json.loads(pipeline_response.http_response.text())
return cb
@pytest.fixture
def polling_response():
def _callback(http_response, headers={}):
polling = LROBasePolling()
response = Response()
response.headers = headers
response.status_code = 200
response = create_transport_response(
http_response,
None,
response,
)
polling._pipeline_response = PipelineResponse(None, response, PipelineContext(None))
polling._initial_response = polling._pipeline_response
return polling
return _callback
@pytest.mark.parametrize("http_response", REQUESTS_TRANSPORT_RESPONSES)
def test_base_polling_continuation_token(client, polling_response, http_response):
polling = polling_response(http_response)
continuation_token = polling.get_continuation_token()
assert isinstance(continuation_token, str)
polling_args = LROBasePolling.from_continuation_token(
continuation_token,
deserialization_callback="deserialization_callback",
client=client,
)
new_polling = LROBasePolling()
new_polling.initialize(*polling_args)
@pytest.mark.parametrize("http_response", REQUESTS_TRANSPORT_RESPONSES)
def test_delay_extraction_int(polling_response, http_response):
polling = polling_response(http_response, {"Retry-After": "10"})
assert polling._extract_delay() == 10
@pytest.mark.skipif(
platform.python_implementation() == "PyPy",
reason="https://stackoverflow.com/questions/11146725/isinstance-and-mocking",
)
@pytest.mark.parametrize("http_response", REQUESTS_TRANSPORT_RESPONSES)
def test_delay_extraction_httpdate(polling_response, http_response):
polling = polling_response(http_response, {"Retry-After": "Mon, 20 Nov 1995 19:12:08 -0500"})
from datetime import datetime as basedatetime
now_mock_datetime = datetime.datetime(1995, 11, 20, 18, 12, 8, tzinfo=_FixedOffset(-5 * 60))
with mock.patch("datetime.datetime") as mock_datetime:
mock_datetime.now.return_value = now_mock_datetime
mock_datetime.side_effect = lambda *args, **kw: basedatetime(*args, **kw)
assert polling._extract_delay() == 60 * 60 # one hour in seconds
assert str(mock_datetime.now.call_args[0][0]) == "<FixedOffset -5.0>"
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_post(pipeline_client_builder, deserialization_cb, http_request, http_response):
# Test POST LRO with both Location and Operation-Location
# The initial response contains both Location and Operation-Location, a 202 and no Body
initial_response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
202,
{
"location": "http://example.org/location",
"operation-location": "http://example.org/async_monitor",
},
"",
)
def send(request, **kwargs):
assert request.method == "GET"
if request.url == "http://example.org/location":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"location_result": True}
).http_response
elif request.url == "http://example.org/async_monitor":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"status": "Succeeded"}
).http_response
else:
pytest.fail("No other query allowed")
client = pipeline_client_builder(send)
# LRO options with Location final state
poll = LROPoller(client, initial_response, deserialization_cb, LROBasePolling(0))
result = poll.result()
assert result["location_result"] == True
# Location has no body
def send(request, **kwargs):
assert request.method == "GET"
if request.url == "http://example.org/location":
response = TestBasePolling.mock_send(http_request, http_response, "GET", 200, body=None).http_response
return response
elif request.url == "http://example.org/async_monitor":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"status": "Succeeded"}
).http_response
else:
pytest.fail("No other query allowed")
client = pipeline_client_builder(send)
poll = LROPoller(client, initial_response, deserialization_cb, LROBasePolling(0))
result = poll.result()
assert result is None
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_post_resource_location(pipeline_client_builder, deserialization_cb, http_request, http_response):
# ResourceLocation
# The initial response contains both Location and Operation-Location, a 202 and no Body
initial_response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
202,
{
"operation-location": "http://example.org/async_monitor",
},
"",
)
def send(request, **kwargs):
assert request.method == "GET"
if request.url == "http://example.org/resource_location":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"location_result": True}
).http_response
elif request.url == "http://example.org/async_monitor":
return TestBasePolling.mock_send(
http_request,
http_response,
"GET",
200,
body={"status": "Succeeded", "resourceLocation": "http://example.org/resource_location"},
).http_response
else:
pytest.fail("No other query allowed")
client = pipeline_client_builder(send)
poll = LROPoller(client, initial_response, deserialization_cb, LROBasePolling(0))
result = poll.result()
assert result["location_result"] == True
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_post_direct_success(pipeline_client_builder, deserialization_cb, http_request, http_response):
# ResourceLocation
# The initial response contains both Location and Operation-Location, a 202 and a success body
initial_response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
202,
{
"operation-location": "http://example.org/async_monitor",
},
{"status": "succeeded"},
)
def send(request, **kwargs):
pytest.fail("No requests allowed")
client = pipeline_client_builder(send)
poll = LROPoller(client, initial_response, deserialization_cb, LROBasePolling(0))
result = poll.result()
assert result["status"] == "succeeded"
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_post_fail(pipeline_client_builder, deserialization_cb, http_request, http_response):
# ResourceLocation
# The initial response contains both Location and Operation-Location, a 202 and a success body
initial_response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
500,
{"status": "failed"},
)
def send(request, **kwargs):
pytest.fail("No requests allowed")
client = pipeline_client_builder(send)
with pytest.raises(HttpResponseError):
poll = LROPoller(client, initial_response, deserialization_cb, LROBasePolling(0))
result = poll.result()
class TestBasePolling(object):
convert = re.compile("([a-z0-9])([A-Z])")
@staticmethod
def mock_send(http_request, http_response, method, status, headers=None, body=RESPONSE_BODY):
if headers is None:
headers = {}
response = Response()
response._content_consumed = True
# "requests" never returns None for content. Make sure it's empty bytes at worst
# In [4]: r=requests.get("https://httpbin.org/status/200")
# In [5]: r.content
# Out[5]: b''
response._content = json.dumps(body).encode("ascii") if body is not None else b""
response.request = Request()
response.request.method = method
response.request.url = RESOURCE_URL
response.request.headers = {"x-ms-client-request-id": "67f4dd4e-6262-45e1-8bed-5c45cf23b6d9"}
response.status_code = status
response.headers = headers
response.headers.update({"content-type": "application/json; charset=utf8"})
response.reason = "OK"
if is_rest(http_request):
request = http_request(
response.request.method,
response.request.url,
headers=response.request.headers,
content=body,
)
else:
request = CLIENT._request(
response.request.method,
response.request.url,
None, # params
response.request.headers,
body,
None, # form_content
None, # stream_content
)
response = create_transport_response(
http_response,
request,
response,
)
if is_rest(response):
response._body()
return PipelineResponse(request, response, None) # context
@staticmethod
def mock_update(http_request, http_response, url, headers=None):
response = Response()
response._content_consumed = True
response.request = mock.create_autospec(Request)
response.request.method = "GET"
response.headers = headers or {}
response.headers.update({"content-type": "application/json; charset=utf8"})
response.reason = "OK"
if url == ASYNC_URL:
response.request.url = url
response.status_code = POLLING_STATUS
response._content = ASYNC_BODY.encode("ascii")
response.randomFieldFromPollAsyncOpHeader = None
elif url == LOCATION_URL:
response.request.url = url
response.status_code = POLLING_STATUS
response._content = LOCATION_BODY.encode("ascii")
response.randomFieldFromPollLocationHeader = None
elif url == ERROR:
raise BadEndpointError("boom")
elif url == RESOURCE_URL:
response.request.url = url
response.status_code = POLLING_STATUS
response._content = RESOURCE_BODY.encode("ascii")
else:
raise Exception("URL does not match")
request = http_request(
response.request.method,
response.request.url,
)
response = create_transport_response(
http_response,
request,
response,
)
# Make sure body is loaded if this is "rest"
if is_rest(response):
response._body()
return PipelineResponse(request, response, None) # context
@staticmethod
def mock_outputs(pipeline_response):
response = pipeline_response.http_response
try:
body = json.loads(response.text())
except ValueError:
raise DecodeError("Impossible to deserialize")
body = {TestBasePolling.convert.sub(r"\1_\2", k).lower(): v for k, v in body.items()}
properties = body.setdefault("properties", {})
if "name" in body:
properties["name"] = body["name"]
if properties:
properties = {TestBasePolling.convert.sub(r"\1_\2", k).lower(): v for k, v in properties.items()}
del body["properties"]
body.update(properties)
resource = SimpleResource(**body)
else:
raise DecodeError("Impossible to deserialize")
resource = SimpleResource(**body)
return resource
@staticmethod
def mock_deserialization_no_body(pipeline_response):
"""Use this mock when you don't expect a return (last body irrelevant)"""
return None
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_long_running_put(self, http_request, http_response):
# TODO: Test custom header field
# Test throw on non LRO related status code
response = TestBasePolling.mock_send(http_request, http_response, "PUT", 1000, {})
CLIENT.http_request_type = http_request
CLIENT.http_response_type = http_response
with pytest.raises(HttpResponseError):
LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
# Test with no polling necessary
response_body = {"properties": {"provisioningState": "Succeeded"}, "name": TEST_NAME}
response = TestBasePolling.mock_send(http_request, http_response, "PUT", 201, {}, response_body)
def no_update_allowed(url, headers=None):
raise ValueError("Should not try to update")
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert not hasattr(poll._polling_method._pipeline_response, "randomFieldFromPollAsyncOpHeader")
# Test polling from operation-location header
response = TestBasePolling.mock_send(http_request, http_response, "PUT", 201, {"operation-location": ASYNC_URL})
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert not hasattr(poll._polling_method._pipeline_response, "randomFieldFromPollAsyncOpHeader")
# Test polling location header
response = TestBasePolling.mock_send(http_request, http_response, "PUT", 201, {"location": LOCATION_URL})
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollLocationHeader
is None
)
# Test polling initial payload invalid (SQLDb)
response_body = {} # Empty will raise
response = TestBasePolling.mock_send(
http_request, http_response, "PUT", 201, {"location": LOCATION_URL}, response_body
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollLocationHeader
is None
)
# Test fail to poll from operation-location header
response = TestBasePolling.mock_send(http_request, http_response, "PUT", 201, {"operation-location": ERROR})
with pytest.raises(BadEndpointError):
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
# Test fail to poll from location header
response = TestBasePolling.mock_send(http_request, http_response, "PUT", 201, {"location": ERROR})
with pytest.raises(BadEndpointError):
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_long_running_patch(self, http_request, http_response):
CLIENT.http_request_type = http_request
CLIENT.http_response_type = http_response
# Test polling from location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"PATCH",
202,
{"location": LOCATION_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollLocationHeader
is None
)
# Test polling from operation-location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"PATCH",
202,
{"operation-location": ASYNC_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert not hasattr(poll._polling_method._pipeline_response, "randomFieldFromPollAsyncOpHeader")
# Test polling from location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"PATCH",
200,
{"location": LOCATION_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollLocationHeader
is None
)
# Test polling from operation-location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"PATCH",
200,
{"operation-location": ASYNC_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert not hasattr(poll._polling_method._pipeline_response, "randomFieldFromPollAsyncOpHeader")
# Test fail to poll from operation-location header
response = TestBasePolling.mock_send(http_request, http_response, "PATCH", 202, {"operation-location": ERROR})
with pytest.raises(BadEndpointError):
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
# Test fail to poll from location header
response = TestBasePolling.mock_send(http_request, http_response, "PATCH", 202, {"location": ERROR})
with pytest.raises(BadEndpointError):
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_long_running_delete(self, http_request, http_response):
# Test polling from operation-location header
response = TestBasePolling.mock_send(
http_request, http_response, "DELETE", 202, {"operation-location": ASYNC_URL}, body=""
)
CLIENT.http_request_type = http_request
CLIENT.http_response_type = http_response
poll = LROPoller(CLIENT, response, TestBasePolling.mock_deserialization_no_body, LROBasePolling(0))
poll.wait()
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollAsyncOpHeader
is None
)
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_long_running_post_legacy(self, http_request, http_response):
# Former oooooold tests to refactor one day to something more readable
# Test polling from operation-location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
201,
{"operation-location": ASYNC_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
CLIENT.http_request_type = http_request
CLIENT.http_response_type = http_response
poll = LROPoller(CLIENT, response, TestBasePolling.mock_deserialization_no_body, LROBasePolling(0))
poll.wait()
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollAsyncOpHeader
is None
)
# Test polling from operation-location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
202,
{"operation-location": ASYNC_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_deserialization_no_body, LROBasePolling(0))
poll.wait()
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollAsyncOpHeader
is None
)
# Test polling from location header
response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
202,
{"location": LOCATION_URL},
body={"properties": {"provisioningState": "Succeeded"}},
)
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
assert poll.result().name == TEST_NAME
assert (
poll._polling_method._pipeline_response.http_response.internal_response.randomFieldFromPollLocationHeader
is None
)
# Test fail to poll from operation-location header
response = TestBasePolling.mock_send(http_request, http_response, "POST", 202, {"operation-location": ERROR})
with pytest.raises(BadEndpointError):
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
# Test fail to poll from location header
response = TestBasePolling.mock_send(http_request, http_response, "POST", 202, {"location": ERROR})
with pytest.raises(BadEndpointError):
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0)).result()
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_long_running_negative(self, http_request, http_response):
global LOCATION_BODY
global POLLING_STATUS
CLIENT.http_request_type = http_request
CLIENT.http_response_type = http_response
# Test LRO PUT throws for invalid json
LOCATION_BODY = "{"
response = TestBasePolling.mock_send(http_request, http_response, "POST", 202, {"location": LOCATION_URL})
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
with pytest.raises(DecodeError):
poll.result()
LOCATION_BODY = "{'\"}"
response = TestBasePolling.mock_send(http_request, http_response, "POST", 202, {"location": LOCATION_URL})
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
with pytest.raises(DecodeError):
poll.result()
LOCATION_BODY = "{"
POLLING_STATUS = 203
response = TestBasePolling.mock_send(http_request, http_response, "POST", 202, {"location": LOCATION_URL})
poll = LROPoller(CLIENT, response, TestBasePolling.mock_outputs, LROBasePolling(0))
with pytest.raises(HttpResponseError) as error: # TODO: Node.js raises on deserialization
poll.result()
assert error.value.continuation_token == base64.b64encode(pickle.dumps(response)).decode("ascii")
LOCATION_BODY = json.dumps({"name": TEST_NAME})
POLLING_STATUS = 200
@pytest.mark.parametrize("http_request,http_response", request_and_responses_product(REQUESTS_TRANSPORT_RESPONSES))
def test_post_final_state_via(self, pipeline_client_builder, deserialization_cb, http_request, http_response):
# Test POST LRO with both Location and Operation-Location
CLIENT.http_request_type = http_request
CLIENT.http_response_type = http_response
# The initial response contains both Location and Operation-Location, a 202 and no Body
initial_response = TestBasePolling.mock_send(
http_request,
http_response,
"POST",
202,
{
"location": "http://example.org/location",
"operation-location": "http://example.org/async_monitor",
},
"",
)
def send(request, **kwargs):
assert request.method == "GET"
if request.url == "http://example.org/location":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"location_result": True}
).http_response
elif request.url == "http://example.org/async_monitor":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"status": "Succeeded"}
).http_response
else:
pytest.fail("No other query allowed")
client = pipeline_client_builder(send)
# Test 1, LRO options with Location final state
poll = LROPoller(
client, initial_response, deserialization_cb, LROBasePolling(0, lro_options={"final-state-via": "location"})
)
result = poll.result()
assert result["location_result"] == True
# Test 2, LRO options with Operation-Location final state
poll = LROPoller(
client,
initial_response,
deserialization_cb,
LROBasePolling(0, lro_options={"final-state-via": "operation-location"}),
)
result = poll.result()
assert result["status"] == "Succeeded"
# Test 3, "do the right thing" and use Location by default
poll = LROPoller(client, initial_response, deserialization_cb, LROBasePolling(0))
result = poll.result()
assert result["location_result"] == True
# Test 4, location has no body
def send(request, **kwargs):
assert request.method == "GET"
if request.url == "http://example.org/location":
return TestBasePolling.mock_send(http_request, http_response, "GET", 200, body=None).http_response
elif request.url == "http://example.org/async_monitor":
return TestBasePolling.mock_send(
http_request, http_response, "GET", 200, body={"status": "Succeeded"}
).http_response
else:
pytest.fail("No other query allowed")
client = pipeline_client_builder(send)
poll = LROPoller(
client, initial_response, deserialization_cb, LROBasePolling(0, lro_options={"final-state-via": "location"})
)
result = poll.result()
assert result is None
@pytest.mark.parametrize("http_request", HTTP_REQUESTS)
def test_final_get_via_location(port, http_request, deserialization_cb):
client = MockRestClient(port)
request = http_request(
"PUT",
"http://localhost:{}/polling/polling-with-options".format(port),
)
request.set_json_body({"hello": "world!"})
initial_response = client._client._pipeline.run(request)
poller = LROPoller(
client._client,
initial_response,
deserialization_cb,
LROBasePolling(0, lro_options={"final-state-via": "location"}),
)
result = poller.result()
assert result == {"returnedFrom": "locationHeaderUrl"}
# THIS TEST WILL BE REMOVED SOON
"""Weird test, but we are temporarily adding back the POST check in OperationResourcePolling
get_final_get_url. With the test added back, we should not exit on final state via checks and
continue through the rest of the code. Since the rest of the code requires inspection of pipeline_response
and since I don't want to bother with adding a pipeline response object, just check that we get
past the final state via checks
"""
@pytest.mark.parametrize("http_request", HTTP_REQUESTS)
def test_post_check_patch(http_request):
algorithm = OperationResourcePolling(lro_options={"final-state-via": "azure-async-operation"})
algorithm._request = http_request("PUT", "http://fakeurl.com")
with pytest.raises(AttributeError) as ex:
algorithm.get_final_get_url(None)
assert "'NoneType' object has no attribute 'http_response'" in str(ex.value)
|