import boto3 import pytest from botocore.exceptions import ClientError from moto import mock_lambda from uuid import uuid4 from .utilities import get_test_zip_file1, get_role_name @mock_lambda @pytest.mark.parametrize("key", ["FunctionName", "FunctionArn"]) def test_create_function_url_config(key): client = boto3.client("lambda", "us-east-2") function_name = str(uuid4())[0:6] fxn = client.create_function( FunctionName=function_name, Runtime="python3.7", Role=get_role_name(), Handler="lambda_function.lambda_handler", Code={"ZipFile": get_test_zip_file1()}, ) name_or_arn = fxn[key] resp = client.create_function_url_config( AuthType="AWS_IAM", FunctionName=name_or_arn ) resp.should.have.key("FunctionArn").equals(fxn["FunctionArn"]) resp.should.have.key("AuthType").equals("AWS_IAM") resp.should.have.key("FunctionUrl") resp = client.get_function_url_config(FunctionName=name_or_arn) resp.should.have.key("FunctionArn").equals(fxn["FunctionArn"]) resp.should.have.key("AuthType").equals("AWS_IAM") resp.should.have.key("FunctionUrl") @mock_lambda def test_create_function_url_config_with_cors(): client = boto3.client("lambda", "us-east-2") function_name = str(uuid4())[0:6] fxn = client.create_function( FunctionName=function_name, Runtime="python3.7", Role=get_role_name(), Handler="lambda_function.lambda_handler", Code={"ZipFile": get_test_zip_file1()}, ) name_or_arn = fxn["FunctionName"] resp = client.create_function_url_config( AuthType="AWS_IAM", FunctionName=name_or_arn, Cors={ "AllowCredentials": True, "AllowHeaders": ["date", "keep-alive"], "AllowMethods": ["*"], "AllowOrigins": ["*"], "ExposeHeaders": ["date", "keep-alive"], "MaxAge": 86400, }, ) resp.should.have.key("Cors").equals( { "AllowCredentials": True, "AllowHeaders": ["date", "keep-alive"], "AllowMethods": ["*"], "AllowOrigins": ["*"], "ExposeHeaders": ["date", "keep-alive"], "MaxAge": 86400, } ) @mock_lambda def test_update_function_url_config_with_cors(): client = boto3.client("lambda", "us-east-2") function_name = str(uuid4())[0:6] fxn = client.create_function( FunctionName=function_name, Runtime="python3.7", Role=get_role_name(), Handler="lambda_function.lambda_handler", Code={"ZipFile": get_test_zip_file1()}, ) name_or_arn = fxn["FunctionName"] resp = client.create_function_url_config( AuthType="AWS_IAM", FunctionName=name_or_arn, Cors={ "AllowCredentials": True, "AllowHeaders": ["date", "keep-alive"], "AllowMethods": ["*"], "AllowOrigins": ["*"], "ExposeHeaders": ["date", "keep-alive"], "MaxAge": 86400, }, ) resp = client.update_function_url_config( FunctionName=name_or_arn, AuthType="NONE", Cors={"AllowCredentials": False} ) resp.should.have.key("Cors").equals({"AllowCredentials": False}) @mock_lambda @pytest.mark.parametrize("key", ["FunctionName", "FunctionArn"]) def test_delete_function_url_config(key): client = boto3.client("lambda", "us-east-2") function_name = str(uuid4())[0:6] fxn = client.create_function( FunctionName=function_name, Runtime="python3.7", Role=get_role_name(), Handler="lambda_function.lambda_handler", Code={"ZipFile": get_test_zip_file1()}, ) name_or_arn = fxn[key] client.create_function_url_config(AuthType="AWS_IAM", FunctionName=name_or_arn) client.delete_function_url_config(FunctionName=name_or_arn) # It no longer exists with pytest.raises(ClientError): client.get_function_url_config(FunctionName=name_or_arn)