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
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE.txt in the project root for
# license information.
# -------------------------------------------------------------------------
from datetime import timedelta, datetime
import pytest
from azure.identity import ClientSecretCredential
from azure.core.exceptions import HttpResponseError
from azure.monitor.query import (
LogsQueryClient,
LogsBatchQuery,
LogsQueryError,
LogsQueryResult,
LogsQueryPartialResult,
LogsQueryStatus,
)
from base_testcase import AzureMonitorQueryLogsTestCase
class TestQueryExceptions(AzureMonitorQueryLogsTestCase):
def test_logs_single_query_fatal_exception(self, recorded_test):
client = self.get_client(LogsQueryClient, self.get_credential(LogsQueryClient))
with pytest.raises(HttpResponseError):
client.query_workspace("bad_workspace_id", "AppRequests", timespan=None)
def test_logs_single_query_partial_exception(self, recorded_test, monitor_info):
client = self.get_client(LogsQueryClient, self.get_credential(LogsQueryClient))
query = """let Weight = 92233720368547758;
range x from 1 to 3 step 1
| summarize percentilesw(x, Weight * 100, 50)"""
response = client.query_workspace(monitor_info["workspace_id"], query, timespan=timedelta(days=1))
assert response.__class__ == LogsQueryPartialResult
assert response.status == LogsQueryStatus.PARTIAL
assert response.partial_error is not None
assert response.partial_data is not None
assert response.partial_error.details is not None
assert response.partial_error.code == "PartialError"
assert response.partial_error.__class__ == LogsQueryError
def test_logs_resource_query_fatal_exception(self, recorded_test):
client = self.get_client(LogsQueryClient, self.get_credential(LogsQueryClient))
with pytest.raises(HttpResponseError):
client.query_resource("/bad/resource/id", "AzureActivity", timespan=None)
def test_logs_resource_query_partial_exception(self, recorded_test, monitor_info):
client = self.get_client(LogsQueryClient, self.get_credential(LogsQueryClient))
query = """let Weight = 92233720368547758;
range x from 1 to 3 step 1
| summarize percentilesw(x, Weight * 100, 50)"""
response = client.query_resource(monitor_info["metrics_resource_id"], query, timespan=timedelta(days=1))
assert response.__class__ == LogsQueryPartialResult
assert response.status == LogsQueryStatus.PARTIAL
assert response.partial_error is not None
assert response.partial_data is not None
assert response.partial_error.details is not None
assert response.partial_error.code == "PartialError"
assert response.partial_error.__class__ == LogsQueryError
def test_logs_batch_query_fatal_exception(self, recorded_test, monitor_info):
credential = ClientSecretCredential(
client_id="00000000-0000-0000-0000-000000000000",
client_secret="bad_secret",
tenant_id="00000000-0000-0000-0000-000000000000",
)
client = self.get_client(LogsQueryClient, credential)
requests = [
LogsBatchQuery(
query="AzureActivity | summarize count()",
timespan=timedelta(hours=1),
workspace_id=monitor_info["workspace_id"],
),
LogsBatchQuery(
query="""AppRequestsss | take 10""",
timespan=(datetime(2021, 6, 2), timedelta(days=1)),
workspace_id=monitor_info["workspace_id"],
),
LogsBatchQuery(
query="""let Weight = 92233720368547758;
range x from 1 to 3 step 1
| summarize percentilesw(x, Weight * 100, 50)""",
workspace_id=monitor_info["workspace_id"],
timespan=(datetime(2021, 6, 2), datetime(2021, 6, 3)),
include_statistics=True,
),
]
with pytest.raises(HttpResponseError):
responses = client.query_batch(requests)
@pytest.mark.live_test_only("Issues recording dynamic 'id' values in requests/responses")
def test_logs_batch_query_partial_exception(self, monitor_info):
client = self.get_client(LogsQueryClient, self.get_credential(LogsQueryClient))
requests = [
LogsBatchQuery(
query="AzureActivity | summarize count()",
timespan=timedelta(hours=1),
workspace_id=monitor_info["workspace_id"],
),
LogsBatchQuery(
query="""AppRequests | take 10""",
timespan=(datetime(2021, 6, 2), timedelta(days=1)),
workspace_id=monitor_info["workspace_id"],
),
LogsBatchQuery(
query="""let Weight = 92233720368547758;
range x from 1 to 3 step 1
| summarize percentilesw(x, Weight * 100, 50)""",
workspace_id=monitor_info["workspace_id"],
timespan=(datetime(2021, 6, 2), datetime(2021, 6, 3)),
include_statistics=True,
),
]
responses = client.query_batch(requests)
r1, r2, r3 = responses[0], responses[1], responses[2]
assert r1.__class__ == LogsQueryResult
assert r2.__class__ == LogsQueryResult
assert r3.__class__ == LogsQueryPartialResult
@pytest.mark.live_test_only("Issues recording dynamic 'id' values in requests/responses")
def test_logs_batch_query_non_fatal_exception(self, monitor_info):
client = self.get_client(LogsQueryClient, self.get_credential(LogsQueryClient))
requests = [
LogsBatchQuery(
query="AzureActivity | summarize count()",
timespan=timedelta(hours=1),
workspace_id=monitor_info["workspace_id"],
),
LogsBatchQuery(
query="""AppRequests | take 10""",
timespan=(datetime(2021, 6, 2), timedelta(days=1)),
workspace_id=monitor_info["workspace_id"],
),
LogsBatchQuery(
query="""Bad Query""",
workspace_id=monitor_info["workspace_id"],
timespan=(datetime(2021, 6, 2), datetime(2021, 6, 3)),
include_statistics=True,
),
]
responses = client.query_batch(requests)
r1, r2, r3 = responses[0], responses[1], responses[2]
assert r1.__class__ == LogsQueryResult
assert r2.__class__ == LogsQueryResult
assert r3.__class__ == LogsQueryError
|