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 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
|
# Copyright 2018 Microsoft Corporation
#
# Licensed 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.
#
# Requires Python 2.6+ and Openssl 1.0+
#
import base64
import contextlib
import datetime
import json
import os.path
import sys
import unittest
from azurelinuxagent.common.protocol import hostplugin, restapi, wire
from azurelinuxagent.common import conf
from azurelinuxagent.common.errorstate import ErrorState
from azurelinuxagent.common.exception import HttpError, ResourceGoneError, ProtocolError
from azurelinuxagent.common.future import ustr, httpclient
from azurelinuxagent.common.osutil.default import UUID_PATTERN
from azurelinuxagent.common.protocol.hostplugin import API_VERSION, _VmSettingsErrorReporter, VmSettingsNotSupported, VmSettingsSupportStopped
from azurelinuxagent.common.protocol.extensions_goal_state import GoalStateSource
from azurelinuxagent.common.protocol.goal_state import GoalState
from azurelinuxagent.common.utils import restutil
from azurelinuxagent.common.version import AGENT_VERSION, AGENT_NAME
from tests.lib.mock_wire_protocol import mock_wire_protocol, wire_protocol_data, MockHttpResponse
from tests.lib.http_request_predicates import HttpRequestPredicates
from tests.lib.wire_protocol_data import DATA_FILE, DATA_FILE_NO_EXT
from tests.lib.tools import AgentTestCase, PY_VERSION_MAJOR, Mock, patch
hostplugin_status_url = "http://168.63.129.16:32526/status"
hostplugin_versions_url = "http://168.63.129.16:32526/versions"
health_service_url = 'http://168.63.129.16:80/HealthService'
hostplugin_logs_url = "http://168.63.129.16:32526/vmAgentLog"
sas_url = "http://sas_url"
wireserver_url = "168.63.129.16"
block_blob_type = 'BlockBlob'
page_blob_type = 'PageBlob'
api_versions = '["2015-09-01"]'
storage_version = "2014-02-14"
faux_status = "{ 'dummy' : 'data' }"
faux_status_b64 = base64.b64encode(bytes(bytearray(faux_status, encoding='utf-8')))
if PY_VERSION_MAJOR > 2:
faux_status_b64 = faux_status_b64.decode('utf-8')
class TestHostPlugin(HttpRequestPredicates, AgentTestCase):
def _init_host(self):
with mock_wire_protocol(DATA_FILE) as protocol:
host_plugin = wire.HostPluginProtocol(wireserver_url)
GoalState.update_host_plugin_headers(protocol.client)
self.assertTrue(host_plugin.health_service is not None)
return host_plugin
def _init_status_blob(self):
wire_protocol_client = wire.WireProtocol(wireserver_url).client
status_blob = wire_protocol_client.status_blob
status_blob.data = faux_status
status_blob.vm_status = restapi.VMStatus(message="Ready", status="Ready")
return status_blob
def _relax_timestamp(self, headers):
new_headers = []
for header in headers:
header_value = header['headerValue']
if header['headerName'] == 'x-ms-date':
timestamp = header['headerValue']
header_value = timestamp[:timestamp.rfind(":")]
new_header = {header['headerName']: header_value}
new_headers.append(new_header)
return new_headers
def _compare_data(self, actual, expected):
# Remove seconds from the timestamps for testing purposes, that level or granularity introduces test flakiness
actual['headers'] = self._relax_timestamp(actual['headers'])
expected['headers'] = self._relax_timestamp(expected['headers'])
for k in iter(expected.keys()):
if k == 'content' or k == 'requestUri':
if actual[k] != expected[k]:
print("Mismatch: Actual '{0}'='{1}', "
"Expected '{0}'='{2}'".format(k, actual[k], expected[k]))
return False
elif k == 'headers':
for h in expected['headers']:
if not (h in actual['headers']):
print("Missing Header: '{0}'".format(h))
return False
else:
print("Unexpected Key: '{0}'".format(k))
return False
return True
def _hostplugin_data(self, blob_headers, content=None):
headers = []
for name in iter(blob_headers.keys()):
headers.append({
'headerName': name,
'headerValue': blob_headers[name]
})
data = {
'requestUri': sas_url,
'headers': headers
}
if not content is None:
s = base64.b64encode(bytes(content))
if PY_VERSION_MAJOR > 2:
s = s.decode('utf-8')
data['content'] = s
return data
def _hostplugin_headers(self, goal_state):
return {
'x-ms-version': '2015-09-01',
'Content-type': 'application/json',
'x-ms-containerid': goal_state.container_id,
'x-ms-host-config-name': goal_state.role_config_name
}
def _validate_hostplugin_args(self, args, goal_state, exp_method, exp_url, exp_data):
args, kwargs = args
self.assertEqual(exp_method, args[0])
self.assertEqual(exp_url, args[1])
self.assertTrue(self._compare_data(json.loads(args[2]), exp_data))
headers = kwargs['headers']
self.assertEqual(headers['x-ms-containerid'], goal_state.container_id)
self.assertEqual(headers['x-ms-host-config-name'], goal_state.role_config_name)
@staticmethod
@contextlib.contextmanager
def create_mock_protocol():
data_file = DATA_FILE_NO_EXT.copy()
data_file["ext_conf"] = "wire/ext_conf_no_extensions-page_blob.xml"
with mock_wire_protocol(data_file) as protocol:
status = restapi.VMStatus(status="Ready", message="Guest Agent is running")
protocol.client.status_blob.set_vm_status(status)
# Also, they mock WireClient.update_goal_state() to verify how it is called
protocol.client.update_goal_state = Mock()
yield protocol
@patch("azurelinuxagent.common.protocol.healthservice.HealthService.report_host_plugin_versions")
@patch("azurelinuxagent.common.protocol.hostplugin.restutil.http_get")
@patch("azurelinuxagent.common.protocol.hostplugin.add_event")
def assert_ensure_initialized(self, patch_event, patch_http_get, patch_report_health,
response_body,
response_status_code,
should_initialize,
should_report_healthy):
host = hostplugin.HostPluginProtocol(endpoint='ws')
host.is_initialized = False
patch_http_get.return_value = MockResponse(body=response_body,
reason='reason',
status_code=response_status_code)
return_value = host.ensure_initialized()
self.assertEqual(return_value, host.is_available)
self.assertEqual(should_initialize, host.is_initialized)
init_events = [kwargs for _, kwargs in patch_event.call_args_list if kwargs['op'] == 'InitializeHostPlugin']
self.assertEqual(1, len(init_events), 'Expected exactly 1 InitializeHostPlugin event')
self.assertEqual(should_initialize, init_events[0]['is_success'])
self.assertEqual(1, patch_report_health.call_count)
self.assertEqual(should_report_healthy, patch_report_health.call_args[1]['is_healthy'])
actual_response = patch_report_health.call_args[1]['response']
if should_initialize:
self.assertEqual('', actual_response)
else:
self.assertTrue('HTTP Failed' in actual_response)
self.assertTrue(response_body in actual_response)
self.assertTrue(ustr(response_status_code) in actual_response)
def test_ensure_initialized(self):
"""
Test calls to ensure_initialized
"""
self.assert_ensure_initialized(response_body=api_versions, # pylint: disable=no-value-for-parameter
response_status_code=200,
should_initialize=True,
should_report_healthy=True)
self.assert_ensure_initialized(response_body='invalid ip', # pylint: disable=no-value-for-parameter
response_status_code=400,
should_initialize=False,
should_report_healthy=True)
self.assert_ensure_initialized(response_body='generic bad request', # pylint: disable=no-value-for-parameter
response_status_code=400,
should_initialize=False,
should_report_healthy=True)
self.assert_ensure_initialized(response_body='resource gone', # pylint: disable=no-value-for-parameter
response_status_code=410,
should_initialize=False,
should_report_healthy=True)
self.assert_ensure_initialized(response_body='generic error', # pylint: disable=no-value-for-parameter
response_status_code=500,
should_initialize=False,
should_report_healthy=False)
self.assert_ensure_initialized(response_body='upstream error', # pylint: disable=no-value-for-parameter
response_status_code=502,
should_initialize=False,
should_report_healthy=True)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol.ensure_initialized", return_value=True)
@patch("azurelinuxagent.common.protocol.wire.StatusBlob.upload", return_value=False)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol._put_page_blob_status")
def test_default_channel(self, patch_put, patch_upload, _):
"""
Status now defaults to HostPlugin. Validate that any errors on the public
channel are ignored. Validate that the default channel is never changed
as part of status upload.
"""
with self.create_mock_protocol() as wire_protocol:
wire.HostPluginProtocol.is_default_channel = False
wire_protocol.client.update_goal_state()
# act
wire_protocol.client.upload_status_blob()
# assert direct route is not called
self.assertEqual(0, patch_upload.call_count, "Direct channel was used")
# assert host plugin route is called
self.assertEqual(1, patch_put.call_count, "Host plugin was not used")
# assert update goal state is only called once
self.assertEqual(1, wire_protocol.client.update_goal_state.call_count, "Unexpected call count")
# ensure the correct url is used
self.assertEqual(sas_url, patch_put.call_args[0][0])
# ensure host plugin is not set as default
self.assertFalse(wire.HostPluginProtocol.is_default_channel)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol.ensure_initialized",
return_value=True)
@patch("azurelinuxagent.common.protocol.wire.StatusBlob.upload",
return_value=True)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol._put_page_blob_status",
side_effect=HttpError("503"))
def test_fallback_channel_503(self, patch_put, patch_upload, _):
"""
When host plugin returns a 503, we should fall back to the direct channel
"""
with self.create_mock_protocol() as wire_protocol:
wire.HostPluginProtocol.is_default_channel = False
wire_protocol.client.update_goal_state()
# act
wire_protocol.client.upload_status_blob()
# assert direct route is called
self.assertEqual(1, patch_upload.call_count, "Direct channel was not used")
# assert host plugin route is called
self.assertEqual(1, patch_put.call_count, "Host plugin was not used")
# assert update goal state is only called once
self.assertEqual(1, wire_protocol.client.update_goal_state.call_count, "Update goal state unexpected call count")
# ensure the correct url is used
self.assertEqual(sas_url, patch_put.call_args[0][0])
# ensure host plugin is not set as default
self.assertFalse(wire.HostPluginProtocol.is_default_channel)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol.ensure_initialized",
return_value=True)
@patch("azurelinuxagent.common.protocol.wire.StatusBlob.upload",
return_value=True)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol._put_page_blob_status",
side_effect=ResourceGoneError("410"))
@patch("azurelinuxagent.common.protocol.wire.WireClient.update_host_plugin_from_goal_state")
def test_fallback_channel_410(self, patch_refresh_host_plugin, patch_put, patch_upload, _):
"""
When host plugin returns a 410, we should force the goal state update and return
"""
with self.create_mock_protocol() as wire_protocol:
wire.HostPluginProtocol.is_default_channel = False
wire_protocol.client.update_goal_state()
# act
wire_protocol.client.upload_status_blob()
# assert direct route is not called
self.assertEqual(0, patch_upload.call_count, "Direct channel was used")
# assert host plugin route is called
self.assertEqual(1, patch_put.call_count, "Host plugin was not used")
# assert update goal state is called, then update_host_plugin_from_goal_state is called
self.assertEqual(1, wire_protocol.client.update_goal_state.call_count, "Update goal state unexpected call count")
self.assertEqual(1, patch_refresh_host_plugin.call_count, "Refresh host plugin unexpected call count")
# ensure the correct url is used
self.assertEqual(sas_url, patch_put.call_args[0][0])
# ensure host plugin is not set as default
self.assertFalse(wire.HostPluginProtocol.is_default_channel)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol.ensure_initialized",
return_value=True)
@patch("azurelinuxagent.common.protocol.wire.StatusBlob.upload",
return_value=False)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol._put_page_blob_status",
side_effect=HttpError("500"))
def test_fallback_channel_failure(self, patch_put, patch_upload, _):
"""
When host plugin returns a 500, and direct fails, we should raise a ProtocolError
"""
with self.create_mock_protocol() as wire_protocol:
wire.HostPluginProtocol.is_default_channel = False
wire_protocol.client.update_goal_state()
# act
self.assertRaises(wire.ProtocolError, wire_protocol.client.upload_status_blob)
# assert direct route is not called
self.assertEqual(1, patch_upload.call_count, "Direct channel was not used")
# assert host plugin route is called
self.assertEqual(1, patch_put.call_count, "Host plugin was not used")
# assert update goal state is called twice
self.assertEqual(1, wire_protocol.client.update_goal_state.call_count, "Update goal state unexpected call count")
# ensure the correct url is used
self.assertEqual(sas_url, patch_put.call_args[0][0])
# ensure host plugin is not set as default
self.assertFalse(wire.HostPluginProtocol.is_default_channel)
@patch("azurelinuxagent.common.event.add_event")
def test_put_status_error_reporting(self, patch_add_event):
"""
Validate the telemetry when uploading status fails
"""
wire.HostPluginProtocol.is_default_channel = False
with patch.object(wire.StatusBlob, "upload", return_value=False):
with self.create_mock_protocol() as wire_protocol:
wire_protocol_client = wire_protocol.client
put_error = wire.HttpError("put status http error")
with patch.object(restutil, "http_put", side_effect=put_error):
with patch.object(wire.HostPluginProtocol,
"ensure_initialized", return_value=True):
self.assertRaises(wire.ProtocolError, wire_protocol_client.upload_status_blob)
# The agent tries to upload via HostPlugin and that fails due to
# http_put having a side effect of "put_error"
#
# The agent tries to upload using a direct connection, and that succeeds.
self.assertEqual(1, wire_protocol_client.status_blob.upload.call_count) # pylint: disable=no-member
# The agent never touches the default protocol is this code path, so no change.
self.assertFalse(wire.HostPluginProtocol.is_default_channel)
# The agent never logs telemetry event for direct fallback
self.assertEqual(1, patch_add_event.call_count)
self.assertEqual('ReportStatus', patch_add_event.call_args[1]['op'])
self.assertTrue('Falling back to direct' in patch_add_event.call_args[1]['message'])
self.assertEqual(True, patch_add_event.call_args[1]['is_success'])
def test_validate_http_request_when_uploading_status(self):
"""Validate correct set of data is sent to HostGAPlugin when reporting VM status"""
with mock_wire_protocol(DATA_FILE) as protocol:
test_goal_state = protocol.client._goal_state
plugin = protocol.client.get_host_plugin()
status_blob = protocol.client.status_blob
status_blob.data = faux_status
status_blob.vm_status = restapi.VMStatus(message="Ready", status="Ready")
exp_method = 'PUT'
exp_url = hostplugin_status_url
exp_data = self._hostplugin_data(
status_blob.get_block_blob_headers(len(faux_status)),
bytearray(faux_status, encoding='utf-8'))
with patch.object(restutil, "http_request") as patch_http:
patch_http.return_value = Mock(status=httpclient.OK)
with patch.object(plugin, 'get_api_versions') as patch_api:
patch_api.return_value = API_VERSION
plugin.put_vm_status(status_blob, sas_url, block_blob_type)
self.assertTrue(patch_http.call_count == 2)
# first call is to host plugin
self._validate_hostplugin_args(
patch_http.call_args_list[0],
test_goal_state,
exp_method, exp_url, exp_data)
# second call is to health service
self.assertEqual('POST', patch_http.call_args_list[1][0][0])
self.assertEqual(health_service_url, patch_http.call_args_list[1][0][1])
def test_validate_block_blob(self):
with mock_wire_protocol(DATA_FILE) as protocol:
host_client = protocol.client.get_host_plugin()
self.assertFalse(host_client.is_initialized)
self.assertTrue(host_client.api_versions is None)
self.assertTrue(host_client.health_service is not None)
status_blob = protocol.client.status_blob
status_blob.data = faux_status
status_blob.type = block_blob_type
status_blob.vm_status = restapi.VMStatus(message="Ready", status="Ready")
exp_method = 'PUT'
exp_url = hostplugin_status_url
exp_data = self._hostplugin_data(
status_blob.get_block_blob_headers(len(faux_status)),
bytearray(faux_status, encoding='utf-8'))
with patch.object(restutil, "http_request") as patch_http:
patch_http.return_value = Mock(status=httpclient.OK)
with patch.object(wire.HostPluginProtocol,
"get_api_versions") as patch_get:
patch_get.return_value = api_versions
host_client.put_vm_status(status_blob, sas_url)
self.assertTrue(patch_http.call_count == 2)
# first call is to host plugin
self._validate_hostplugin_args(
patch_http.call_args_list[0],
protocol.get_goal_state(),
exp_method, exp_url, exp_data)
# second call is to health service
self.assertEqual('POST', patch_http.call_args_list[1][0][0])
self.assertEqual(health_service_url, patch_http.call_args_list[1][0][1])
def test_validate_page_blobs(self):
"""Validate correct set of data is sent for page blobs"""
with mock_wire_protocol(DATA_FILE) as protocol:
test_goal_state = protocol.get_goal_state()
host_client = protocol.client.get_host_plugin()
self.assertFalse(host_client.is_initialized)
self.assertTrue(host_client.api_versions is None)
status_blob = protocol.client.status_blob
status_blob.data = faux_status
status_blob.type = page_blob_type
status_blob.vm_status = restapi.VMStatus(message="Ready", status="Ready")
exp_method = 'PUT'
exp_url = hostplugin_status_url
page_status = bytearray(status_blob.data, encoding='utf-8')
page_size = int((len(page_status) + 511) / 512) * 512
page_status = bytearray(status_blob.data.ljust(page_size), encoding='utf-8')
page = bytearray(page_size)
page[0: page_size] = page_status[0: len(page_status)]
mock_response = MockResponse('', httpclient.OK)
with patch.object(restutil, "http_request",
return_value=mock_response) as patch_http:
with patch.object(wire.HostPluginProtocol,
"get_api_versions") as patch_get:
patch_get.return_value = api_versions
host_client.put_vm_status(status_blob, sas_url)
self.assertTrue(patch_http.call_count == 3)
# first call is to host plugin
exp_data = self._hostplugin_data(
status_blob.get_page_blob_create_headers(
page_size))
self._validate_hostplugin_args(
patch_http.call_args_list[0],
test_goal_state,
exp_method, exp_url, exp_data)
# second call is to health service
self.assertEqual('POST', patch_http.call_args_list[1][0][0])
self.assertEqual(health_service_url, patch_http.call_args_list[1][0][1])
# last call is to host plugin
exp_data = self._hostplugin_data(
status_blob.get_page_blob_page_headers(
0, page_size),
page)
exp_data['requestUri'] += "?comp=page"
self._validate_hostplugin_args(
patch_http.call_args_list[2],
test_goal_state,
exp_method, exp_url, exp_data)
def test_validate_http_request_for_put_vm_log(self):
def http_put_handler(url, *args, **kwargs): # pylint: disable=inconsistent-return-statements
if self.is_host_plugin_put_logs_request(url):
http_put_handler.args, http_put_handler.kwargs = args, kwargs
return MockResponse(body=b'', status_code=200)
http_put_handler.args, http_put_handler.kwargs = [], {}
with mock_wire_protocol(DATA_FILE, http_put_handler=http_put_handler) as protocol:
test_goal_state = protocol.get_goal_state()
expected_url = hostplugin.URI_FORMAT_PUT_LOG.format(wireserver_url, hostplugin.HOST_PLUGIN_PORT)
expected_headers = {'x-ms-version': '2015-09-01',
"x-ms-containerid": test_goal_state.container_id,
"x-ms-vmagentlog-deploymentid": test_goal_state.role_config_name.split(".")[0],
"x-ms-client-name": AGENT_NAME,
"x-ms-client-version": AGENT_VERSION}
host_client = protocol.client.get_host_plugin()
self.assertFalse(host_client.is_initialized, "Host plugin should not be initialized!")
content = b"test"
host_client.put_vm_log(content)
self.assertTrue(host_client.is_initialized, "Host plugin is not initialized!")
urls = protocol.get_tracked_urls()
self.assertEqual(expected_url, urls[0], "Unexpected request URL!")
self.assertEqual(content, http_put_handler.args[0], "Unexpected content for HTTP PUT request!")
headers = http_put_handler.kwargs['headers']
for k in expected_headers:
self.assertTrue(k in headers, "Header {0} not found in headers!".format(k))
self.assertEqual(expected_headers[k], headers[k], "Request headers don't match!")
# Special check for correlation id header value, check for pattern, not exact value
self.assertTrue("x-ms-client-correlationid" in headers.keys(), "Correlation id not found in headers!")
self.assertTrue(UUID_PATTERN.match(headers["x-ms-client-correlationid"]), "Correlation id is not in GUID form!")
def test_put_vm_log_should_raise_an_exception_when_request_fails(self):
def http_put_handler(url, *args, **kwargs): # pylint: disable=inconsistent-return-statements
if self.is_host_plugin_put_logs_request(url):
http_put_handler.args, http_put_handler.kwargs = args, kwargs
return MockResponse(body=ustr('Gone'), status_code=410)
http_put_handler.args, http_put_handler.kwargs = [], {}
with mock_wire_protocol(DATA_FILE, http_put_handler=http_put_handler) as protocol:
host_client = wire.HostPluginProtocol(wireserver_url)
GoalState.update_host_plugin_headers(protocol.client)
self.assertFalse(host_client.is_initialized, "Host plugin should not be initialized!")
with self.assertRaises(HttpError) as context_manager:
content = b"test"
host_client.put_vm_log(content)
self.assertIsInstance(context_manager.exception, HttpError)
self.assertIn("410", ustr(context_manager.exception))
self.assertIn("Gone", ustr(context_manager.exception))
def test_validate_get_extension_artifacts(self):
with mock_wire_protocol(DATA_FILE) as protocol:
test_goal_state = protocol.get_goal_state()
expected_url = hostplugin.URI_FORMAT_GET_EXTENSION_ARTIFACT.format(wireserver_url, hostplugin.HOST_PLUGIN_PORT)
expected_headers = {'x-ms-version': '2015-09-01',
"x-ms-containerid": test_goal_state.container_id,
"x-ms-host-config-name": test_goal_state.role_config_name,
"x-ms-artifact-location": sas_url}
host_client = protocol.client.get_host_plugin()
self.assertFalse(host_client.is_initialized)
self.assertTrue(host_client.api_versions is None)
self.assertTrue(host_client.health_service is not None)
with patch.object(wire.HostPluginProtocol, "get_api_versions", return_value=api_versions) as patch_get: # pylint: disable=unused-variable
actual_url, actual_headers = host_client.get_artifact_request(sas_url, use_verify_header=False)
self.assertTrue(host_client.is_initialized)
self.assertFalse(host_client.api_versions is None)
self.assertEqual(expected_url, actual_url)
for k in expected_headers:
self.assertTrue(k in actual_headers)
self.assertEqual(expected_headers[k], actual_headers[k])
def test_health(self):
host_plugin = self._init_host()
with patch("azurelinuxagent.common.utils.restutil.http_get") as patch_http_get:
patch_http_get.return_value = MockResponse('', 200)
result = host_plugin.get_health()
self.assertEqual(1, patch_http_get.call_count)
self.assertTrue(result)
patch_http_get.return_value = MockResponse('', 500)
result = host_plugin.get_health()
self.assertFalse(result)
patch_http_get.side_effect = IOError('client IO error')
try:
host_plugin.get_health()
self.fail('IO error expected to be raised')
except IOError:
# expected
pass
def test_ensure_health_service_called(self):
host_plugin = self._init_host()
with patch("azurelinuxagent.common.utils.restutil.http_get", return_value=MockHttpResponse(200)) as patch_http_get:
with patch("azurelinuxagent.common.protocol.healthservice.HealthService.report_host_plugin_versions") as patch_report_versions:
host_plugin.get_api_versions()
self.assertEqual(1, patch_http_get.call_count)
self.assertEqual(1, patch_report_versions.call_count)
def test_put_status_healthy_signal(self):
host_plugin = self._init_host()
with patch("azurelinuxagent.common.utils.restutil.http_get") as patch_http_get:
with patch("azurelinuxagent.common.utils.restutil.http_post") as patch_http_post:
with patch("azurelinuxagent.common.utils.restutil.http_put") as patch_http_put:
status_blob = self._init_status_blob()
# get_api_versions
patch_http_get.return_value = MockResponse(api_versions, 200)
# put status blob
patch_http_put.return_value = MockResponse(None, 201)
host_plugin.put_vm_status(status_blob=status_blob, sas_url=sas_url)
get_versions = [args for args in patch_http_get.call_args_list if args[0][0] == hostplugin_versions_url]
self.assertEqual(1, len(get_versions), "Expected exactly 1 GET on {0}".format(hostplugin_versions_url))
self.assertEqual(2, patch_http_put.call_count)
self.assertEqual(hostplugin_status_url, patch_http_put.call_args_list[0][0][0])
self.assertEqual(hostplugin_status_url, patch_http_put.call_args_list[1][0][0])
self.assertEqual(2, patch_http_post.call_count)
# signal for /versions
self.assertEqual(health_service_url, patch_http_post.call_args_list[0][0][0])
jstr = patch_http_post.call_args_list[0][0][1]
obj = json.loads(jstr)
self.assertEqual(1, len(obj['Observations']))
self.assertTrue(obj['Observations'][0]['IsHealthy'])
self.assertEqual('GuestAgentPluginVersions', obj['Observations'][0]['ObservationName'])
# signal for /status
self.assertEqual(health_service_url, patch_http_post.call_args_list[1][0][0])
jstr = patch_http_post.call_args_list[1][0][1]
obj = json.loads(jstr)
self.assertEqual(1, len(obj['Observations']))
self.assertTrue(obj['Observations'][0]['IsHealthy'])
self.assertEqual('GuestAgentPluginStatus', obj['Observations'][0]['ObservationName'])
def test_put_status_unhealthy_signal_transient(self):
host_plugin = self._init_host()
with patch("azurelinuxagent.common.utils.restutil.http_get") as patch_http_get:
with patch("azurelinuxagent.common.utils.restutil.http_post") as patch_http_post:
with patch("azurelinuxagent.common.utils.restutil.http_put") as patch_http_put:
status_blob = self._init_status_blob()
# get_api_versions
patch_http_get.return_value = MockResponse(api_versions, 200)
# put status blob
patch_http_put.return_value = MockResponse(None, 500)
with self.assertRaises(HttpError):
host_plugin.put_vm_status(status_blob=status_blob, sas_url=sas_url)
get_versions = [args for args in patch_http_get.call_args_list if args[0][0] == hostplugin_versions_url]
self.assertEqual(1, len(get_versions), "Expected exactly 1 GET on {0}".format(hostplugin_versions_url))
self.assertEqual(1, patch_http_put.call_count)
self.assertEqual(hostplugin_status_url, patch_http_put.call_args[0][0])
self.assertEqual(2, patch_http_post.call_count)
# signal for /versions
self.assertEqual(health_service_url, patch_http_post.call_args_list[0][0][0])
jstr = patch_http_post.call_args_list[0][0][1]
obj = json.loads(jstr)
self.assertEqual(1, len(obj['Observations']))
self.assertTrue(obj['Observations'][0]['IsHealthy'])
self.assertEqual('GuestAgentPluginVersions', obj['Observations'][0]['ObservationName'])
# signal for /status
self.assertEqual(health_service_url, patch_http_post.call_args_list[1][0][0])
jstr = patch_http_post.call_args_list[1][0][1]
obj = json.loads(jstr)
self.assertEqual(1, len(obj['Observations']))
self.assertTrue(obj['Observations'][0]['IsHealthy'])
self.assertEqual('GuestAgentPluginStatus', obj['Observations'][0]['ObservationName'])
def test_put_status_unhealthy_signal_permanent(self):
host_plugin = self._init_host()
with patch("azurelinuxagent.common.utils.restutil.http_get") as patch_http_get:
with patch("azurelinuxagent.common.utils.restutil.http_post") as patch_http_post:
with patch("azurelinuxagent.common.utils.restutil.http_put") as patch_http_put:
status_blob = self._init_status_blob()
# get_api_versions
patch_http_get.return_value = MockResponse(api_versions, 200)
# put status blob
patch_http_put.return_value = MockResponse(None, 500)
host_plugin.status_error_state.is_triggered = Mock(return_value=True)
with self.assertRaises(HttpError):
host_plugin.put_vm_status(status_blob=status_blob, sas_url=sas_url)
get_versions = [args for args in patch_http_get.call_args_list if args[0][0] == hostplugin_versions_url]
self.assertEqual(1, len(get_versions), "Expected exactly 1 GET on {0}".format(hostplugin_versions_url))
self.assertEqual(1, patch_http_put.call_count)
self.assertEqual(hostplugin_status_url, patch_http_put.call_args[0][0])
self.assertEqual(2, patch_http_post.call_count)
# signal for /versions
self.assertEqual(health_service_url, patch_http_post.call_args_list[0][0][0])
jstr = patch_http_post.call_args_list[0][0][1]
obj = json.loads(jstr)
self.assertEqual(1, len(obj['Observations']))
self.assertTrue(obj['Observations'][0]['IsHealthy'])
self.assertEqual('GuestAgentPluginVersions', obj['Observations'][0]['ObservationName'])
# signal for /status
self.assertEqual(health_service_url, patch_http_post.call_args_list[1][0][0])
jstr = patch_http_post.call_args_list[1][0][1]
obj = json.loads(jstr)
self.assertEqual(1, len(obj['Observations']))
self.assertFalse(obj['Observations'][0]['IsHealthy'])
self.assertEqual('GuestAgentPluginStatus', obj['Observations'][0]['ObservationName'])
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol.should_report", return_value=True)
@patch("azurelinuxagent.common.protocol.healthservice.HealthService.report_host_plugin_extension_artifact")
def test_report_fetch_health(self, patch_report_artifact, patch_should_report):
host_plugin = self._init_host()
host_plugin.report_fetch_health(uri='', is_healthy=True)
self.assertEqual(0, patch_should_report.call_count)
host_plugin.report_fetch_health(uri='http://169.254.169.254/extensionArtifact', is_healthy=True)
self.assertEqual(0, patch_should_report.call_count)
host_plugin.report_fetch_health(uri='http://168.63.129.16:32526/status', is_healthy=True)
self.assertEqual(0, patch_should_report.call_count)
self.assertEqual(None, host_plugin.fetch_last_timestamp)
host_plugin.report_fetch_health(uri='http://168.63.129.16:32526/extensionArtifact', is_healthy=True)
self.assertNotEqual(None, host_plugin.fetch_last_timestamp)
self.assertEqual(1, patch_should_report.call_count)
self.assertEqual(1, patch_report_artifact.call_count)
@patch("azurelinuxagent.common.protocol.hostplugin.HostPluginProtocol.should_report", return_value=True)
@patch("azurelinuxagent.common.protocol.healthservice.HealthService.report_host_plugin_status")
def test_report_status_health(self, patch_report_status, patch_should_report):
host_plugin = self._init_host()
self.assertEqual(None, host_plugin.status_last_timestamp)
host_plugin.report_status_health(is_healthy=True)
self.assertNotEqual(None, host_plugin.status_last_timestamp)
self.assertEqual(1, patch_should_report.call_count)
self.assertEqual(1, patch_report_status.call_count)
def test_should_report(self):
host_plugin = self._init_host()
error_state = ErrorState(min_timedelta=datetime.timedelta(minutes=5))
period = datetime.timedelta(minutes=1)
last_timestamp = None
# first measurement at 0s, should report
is_healthy = True
actual = host_plugin.should_report(is_healthy,
error_state,
last_timestamp,
period)
self.assertEqual(True, actual)
# second measurement at 30s, should not report
last_timestamp = datetime.datetime.utcnow() - datetime.timedelta(seconds=30)
actual = host_plugin.should_report(is_healthy,
error_state,
last_timestamp,
period)
self.assertEqual(False, actual)
# third measurement at 60s, should report
last_timestamp = datetime.datetime.utcnow() - datetime.timedelta(seconds=60)
actual = host_plugin.should_report(is_healthy,
error_state,
last_timestamp,
period)
self.assertEqual(True, actual)
# fourth measurement unhealthy, should report and increment counter
is_healthy = False
self.assertEqual(0, error_state.count)
actual = host_plugin.should_report(is_healthy,
error_state,
last_timestamp,
period)
self.assertEqual(1, error_state.count)
self.assertEqual(True, actual)
# fifth measurement, should not report and reset counter
is_healthy = True
last_timestamp = datetime.datetime.utcnow() - datetime.timedelta(seconds=30)
self.assertEqual(1, error_state.count)
actual = host_plugin.should_report(is_healthy,
error_state,
last_timestamp,
period)
self.assertEqual(0, error_state.count)
self.assertEqual(False, actual)
class TestHostPluginVmSettings(HttpRequestPredicates, AgentTestCase):
def test_it_should_raise_protocol_error_when_the_vm_settings_request_fails(self):
def http_get_handler(url, *_, **__):
if self.is_host_plugin_vm_settings_request(url):
return MockHttpResponse(httpclient.INTERNAL_SERVER_ERROR, body="TEST ERROR")
return None
with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol:
protocol.set_http_handlers(http_get_handler=http_get_handler)
with self.assertRaisesRegexCM(ProtocolError, r'GET vmSettings \[correlation ID: .* eTag: .*\]: \[HTTP Failed\] \[500: None].*TEST ERROR.*'):
protocol.client.get_host_plugin().fetch_vm_settings()
@staticmethod
def _fetch_vm_settings_ignoring_errors(protocol):
try:
protocol.client.get_host_plugin().fetch_vm_settings()
except (ProtocolError, VmSettingsNotSupported):
pass
def test_it_should_keep_track_of_errors_in_vm_settings_requests(self):
mock_response = None
def http_get_handler(url, *_, **__):
if self.is_host_plugin_vm_settings_request(url):
if isinstance(mock_response, Exception):
# E0702: Raising NoneType while only classes or instances are allowed (raising-bad-type) - Disabled: we never raise None
raise mock_response # pylint: disable=raising-bad-type
return mock_response
return None
with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS, http_get_handler=http_get_handler) as protocol:
mock_response = MockHttpResponse(httpclient.INTERNAL_SERVER_ERROR)
self._fetch_vm_settings_ignoring_errors(protocol)
mock_response = MockHttpResponse(httpclient.BAD_REQUEST)
self._fetch_vm_settings_ignoring_errors(protocol)
self._fetch_vm_settings_ignoring_errors(protocol)
mock_response = IOError("timed out")
self._fetch_vm_settings_ignoring_errors(protocol)
mock_response = httpclient.HTTPException()
self._fetch_vm_settings_ignoring_errors(protocol)
self._fetch_vm_settings_ignoring_errors(protocol)
# force the summary by resetting its period and calling update_goal_state
with patch("azurelinuxagent.common.protocol.hostplugin.add_event") as add_event:
mock_response = None # stop producing errors
protocol.client._host_plugin._vm_settings_error_reporter._next_period = datetime.datetime.now()
self._fetch_vm_settings_ignoring_errors(protocol)
summary_text = [kwargs["message"] for _, kwargs in add_event.call_args_list if kwargs["op"] == "VmSettingsSummary"]
self.assertEqual(1, len(summary_text), "Exactly 1 summary should have been produced. Got: {0} ".format(summary_text))
summary = json.loads(summary_text[0])
expected = {
"requests": 6 + 2, # two extra calls to update_goal_state (when creating the mock protocol and when forcing the summary)
"errors": 6,
"serverErrors": 1,
"clientErrors": 2,
"timeouts": 1,
"failedRequests": 2
}
self.assertEqual(expected, summary, "The count of errors is incorrect")
def test_it_should_limit_the_number_of_errors_it_reports(self):
with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol:
def http_get_handler(url, *_, **__):
if self.is_host_plugin_vm_settings_request(url):
return MockHttpResponse(httpclient.BAD_GATEWAY) # HostGAPlugin returns 502 for internal errors
return None
protocol.set_http_handlers(http_get_handler=http_get_handler)
def get_telemetry_messages():
return [kwargs["message"] for _, kwargs in add_event.call_args_list if kwargs["op"] == "VmSettings"]
with patch("azurelinuxagent.common.protocol.hostplugin.add_event") as add_event:
for _ in range(_VmSettingsErrorReporter._MaxErrors + 3):
self._fetch_vm_settings_ignoring_errors(protocol)
telemetry_messages = get_telemetry_messages()
self.assertEqual(_VmSettingsErrorReporter._MaxErrors, len(telemetry_messages), "The number of errors reported to telemetry is not the max allowed (got: {0})".format(telemetry_messages))
# Reset the error reporter and verify that additional errors are reported
protocol.client.get_host_plugin()._vm_settings_error_reporter._next_period = datetime.datetime.now()
self._fetch_vm_settings_ignoring_errors(protocol) # this triggers the reset
with patch("azurelinuxagent.common.protocol.hostplugin.add_event") as add_event:
self._fetch_vm_settings_ignoring_errors(protocol)
telemetry_messages = get_telemetry_messages()
self.assertEqual(1, len(telemetry_messages), "Expected additional errors to be reported to telemetry in the next period (got: {0})".format(telemetry_messages))
def test_it_should_stop_issuing_vm_settings_requests_when_api_is_not_supported(self):
with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol:
def http_get_handler(url, *_, **__):
if self.is_host_plugin_vm_settings_request(url):
return MockHttpResponse(httpclient.NOT_FOUND) # HostGAPlugin returns 404 if the API is not supported
return None
protocol.set_http_handlers(http_get_handler=http_get_handler)
def get_vm_settings_call_count():
return len([url for url in protocol.get_tracked_urls() if "vmSettings" in url])
self._fetch_vm_settings_ignoring_errors(protocol)
self.assertEqual(1, get_vm_settings_call_count(), "There should have been an initial call to vmSettings.")
self._fetch_vm_settings_ignoring_errors(protocol)
self._fetch_vm_settings_ignoring_errors(protocol)
self.assertEqual(1, get_vm_settings_call_count(), "Additional calls to update_goal_state should not have produced extra calls to vmSettings.")
# reset the vmSettings check period; this should restart the calls to the API
protocol.client._host_plugin._supports_vm_settings_next_check = datetime.datetime.now()
protocol.client.update_goal_state()
self.assertEqual(2, get_vm_settings_call_count(), "A second call to vmSettings was expecting after the check period has elapsed.")
def test_it_should_raise_when_the_vm_settings_api_stops_being_supported(self):
def http_get_handler(url, *_, **__):
if self.is_host_plugin_vm_settings_request(url):
return MockHttpResponse(httpclient.NOT_FOUND) # HostGAPlugin returns 404 if the API is not supported
return None
with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol:
host_ga_plugin = protocol.client.get_host_plugin()
# Do an initial call to ensure the API is supported
vm_settings, _ = host_ga_plugin.fetch_vm_settings()
# Now return NOT_FOUND to indicate the API is not supported
protocol.set_http_handlers(http_get_handler=http_get_handler)
with self.assertRaises(VmSettingsSupportStopped) as cm:
host_ga_plugin.fetch_vm_settings()
self.assertEqual(vm_settings.created_on_timestamp, cm.exception.timestamp)
def test_it_should_save_the_timestamp_of_the_most_recent_fast_track_goal_state(self):
with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol:
host_ga_plugin = protocol.client.get_host_plugin()
vm_settings, _ = host_ga_plugin.fetch_vm_settings()
state_file = os.path.join(conf.get_lib_dir(), "fast_track.json")
self.assertTrue(os.path.exists(state_file), "The timestamp was not saved (can't find {0})".format(state_file))
with open(state_file, "r") as state_file_:
state = json.load(state_file_)
self.assertEqual(vm_settings.created_on_timestamp, state["timestamp"], "{0} does not contain the expected timestamp".format(state_file))
# A fabric goal state should remove the state file
protocol.mock_wire_data.set_vm_settings_source(GoalStateSource.Fabric)
protocol.mock_wire_data.set_etag(888)
_ = host_ga_plugin.fetch_vm_settings()
self.assertFalse(os.path.exists(state_file), "{0} was not removed by a Fabric goal state".format(state_file))
class MockResponse:
def __init__(self, body, status_code, reason=''):
self.body = body
self.status = status_code
self.reason = reason
def read(self):
return self.body if sys.version_info[0] == 2 else bytes(self.body, encoding='utf-8')
if __name__ == '__main__':
unittest.main()
|