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
|
from unittest import SkipTest
import boto3
from moto import mock_aws, settings
from moto.apigatewaymanagementapi.models import apigatewaymanagementapi_backends
from moto.core.versions import is_werkzeug_2_3_x
from tests import DEFAULT_ACCOUNT_ID
# See our Development Tips on writing tests for hints on how to write good tests:
# http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html
@mock_aws
def test_delete_connection():
if settings.TEST_SERVER_MODE and not is_werkzeug_2_3_x():
# URL matching changed in 2.2.x - the root path '/@connections' cannot be found
# 2.1.x works, 2.2.x is broken, and 2.3.x (and 3.x) works again
# We could only skip 2.2.x - but only supporting >= 2.3.x is easier
raise SkipTest("Can't test this in older werkzeug versions")
client = boto3.client("apigatewaymanagementapi", region_name="eu-west-1")
# NO-OP
client.delete_connection(ConnectionId="anything")
@mock_aws
def test_get_connection():
if settings.TEST_SERVER_MODE and not is_werkzeug_2_3_x():
# URL matching changed between 2.2.x and 2.3.x
# 2.3.x has no problem matching the root path '/@connections', but 2.2.x refuses
raise SkipTest("Can't test this in older werkzeug versions")
client = boto3.client("apigatewaymanagementapi", region_name="us-east-2")
conn = client.get_connection(ConnectionId="anything")
assert "ConnectedAt" in conn
assert conn["Identity"] == {"SourceIp": "192.168.0.1", "UserAgent": "Moto Mocks"}
assert "LastActiveAt" in conn
@mock_aws
def test_post_to_connection():
if settings.TEST_SERVER_MODE and not is_werkzeug_2_3_x():
# URL matching changed between 2.2.x and 2.3.x
# 2.3.x has no problem matching the root path '/@connections', but 2.2.x refuses
raise SkipTest("Can't test this in older werkzeug versions")
client = boto3.client("apigatewaymanagementapi", region_name="ap-southeast-1")
client.post_to_connection(ConnectionId="anything", Data=b"my first bytes")
if not settings.TEST_SERVER_MODE:
backend = apigatewaymanagementapi_backends[DEFAULT_ACCOUNT_ID]["ap-southeast-1"]
assert backend.connections["anything"].data == b"my first bytes"
client.post_to_connection(ConnectionId="anything", Data=b"more bytes")
if not settings.TEST_SERVER_MODE:
backend = apigatewaymanagementapi_backends[DEFAULT_ACCOUNT_ID]["ap-southeast-1"]
assert backend.connections["anything"].data == b"my first bytesmore bytes"
@mock_aws
def test_post_to_connection_using_endpoint_url():
if not settings.TEST_DECORATOR_MODE:
raise SkipTest("Can only test this with decorators")
client = boto3.client(
"apigatewaymanagementapi",
"us-west-2",
endpoint_url="https://someapiid.execute-api.us-west-2.amazonaws.com/stage",
)
client.get_connection(ConnectionId="anything")
client.post_to_connection(ConnectionId="n/a", Data=b"some data")
|