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
|
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
import logging
import sys
import os
import json
import pytest
import uuid
from datetime import datetime, timedelta
from azure.core.exceptions import (
HttpResponseError,
ClientAuthenticationError,
ServiceRequestError
)
from msrest.serialization import UTC
import datetime as dt
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy
from azure_devtools.scenario_tests import ReplayableTest
from azure.core.credentials import AzureKeyCredential, AzureSasCredential
from azure.core.messaging import CloudEvent
from azure.core.serialization import NULL
from azure.eventgrid import EventGridPublisherClient, EventGridEvent, generate_sas
from azure.eventgrid._helpers import _cloud_event_to_generated
from eventgrid_preparer import (
EventGridPreparer,
)
class TestEventGridPublisherClientExceptions(AzureMgmtRecordedTestCase):
def create_eg_publisher_client(self, endpoint):
credential = self.get_credential(EventGridPublisherClient)
client = self.create_client_from_credential(EventGridPublisherClient, credential=credential, endpoint=endpoint)
return client
@EventGridPreparer()
@recorded_by_proxy
def test_raise_on_auth_error(self, variables, eventgrid_topic_endpoint):
akc_credential = AzureKeyCredential("bad credential")
client = EventGridPublisherClient(eventgrid_topic_endpoint, akc_credential)
eg_event = EventGridEvent(
subject="sample",
data={"sample": "eventgridevent"},
event_type="Sample.EventGrid.Event",
data_version="2.0"
)
with pytest.raises(ClientAuthenticationError, match="The request authorization key is not authorized for*"):
client.send(eg_event)
@EventGridPreparer()
@recorded_by_proxy
def test_raise_on_bad_resource(self, variables, eventgrid_topic_key):
akc_credential = AzureKeyCredential(eventgrid_topic_key)
client = EventGridPublisherClient("https://bad-resource.westus-1.eventgrid.azure.net/api/events", akc_credential)
eg_event = EventGridEvent(
subject="sample",
data={"sample": "eventgridevent"},
event_type="Sample.EventGrid.Event",
data_version="2.0"
)
with pytest.raises(HttpResponseError):
client.send(eg_event)
@EventGridPreparer()
@recorded_by_proxy
def test_raise_on_large_payload(self, variables, eventgrid_topic_endpoint):
client = self.create_eg_publisher_client(eventgrid_topic_endpoint)
path = os.path.abspath(os.path.join(os.path.abspath(__file__), "..", "./large_data.json"))
with open(path) as json_file:
data = json.load(json_file)
eg_event = EventGridEvent(
subject="sample",
data=data,
event_type="Sample.EventGrid.Event",
data_version="2.0"
)
with pytest.raises(HttpResponseError) as err:
client.send(eg_event)
assert "The maximum size (1536000) has been exceeded." in err.value.message
|