File: test_exceptions.py

package info (click to toggle)
python-azure 20230112%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 749,544 kB
  • sloc: python: 6,815,827; javascript: 287; makefile: 195; xml: 109; sh: 105
file content (120 lines) | stat: -rw-r--r-- 5,657 bytes parent folder | download
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
# -------------------------------------------------------------------------
# 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
from devtools_testutils import AzureRecordedTestCase


class TestQueryExceptions(AzureRecordedTestCase):

    def test_logs_single_query_fatal_exception(self, recorded_test):
        client = self.create_client_from_credential(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.create_client_from_credential(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.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 = monitor_info['client_id'],
            client_secret = 'bad_secret',
            tenant_id = monitor_info['tenant_id']
        )
        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.create_client_from_credential(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.create_client_from_credential(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