28 lines
745 B
Python
28 lines
745 B
Python
from aws_lambda_powertools.utilities.typing import LambdaContext
|
|
from layercake.dynamodb import DynamoDBPersistenceLayer, KeyPair
|
|
|
|
import events.append_user_id as app
|
|
|
|
|
|
def test_append_user_id(
|
|
dynamodb_seeds,
|
|
dynamodb_persistence_layer: DynamoDBPersistenceLayer,
|
|
lambda_context: LambdaContext,
|
|
):
|
|
event = {
|
|
'detail': {
|
|
'new_image': {
|
|
'id': '9omWNKymwU5U4aeun6mWzZ',
|
|
'cpf': '07879819908',
|
|
'email': 'sergio@somosbeta.com.br',
|
|
}
|
|
}
|
|
}
|
|
|
|
assert app.lambda_handler(event, lambda_context) # type: ignore
|
|
|
|
r = dynamodb_persistence_layer.collection.get_item(
|
|
KeyPair('9omWNKymwU5U4aeun6mWzZ', '0')
|
|
)
|
|
assert 'user_id' in r
|