Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add sqs event builder (#13) #221

Closed
wants to merge 3 commits into from
Closed

Conversation

Luis-Henrique
Copy link
Contributor

@Luis-Henrique Luis-Henrique commented Aug 15, 2024

  • feat: add sqs event builder

  • refactor: update sqs class to use a generic event

  • refactor: update code

Contain

  • New feature

Details

  • add sqs event builder

* feat: add sqs event builder

* refactor: update sqs class to use a generic event

* refactor: update code
@@ -50,3 +55,49 @@ async def test_event(self):
self.assertEqual(event["requestContext"]["path"], "/ping/pong")
self.assertEqual(event["requestContext"]["httpMethod"], "GET")
self.assertEqual(event["requestContext"]["protocol"], "HTTP/1.1")


class TestSQS(unittest.IsolatedAsyncioTestCase):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Não me parece que nestes testes é necessário o suporte a coroutine, troca pela classe TestCase.

"data": "aGVsbG8=",
"attributes": {"foo": "bar"},
"messageId": "10519041647717348",
"publishTime": "2024-02-22T15:45:31.346Z",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Esse timestamp está sendo referenciado em mais de um lugar do teste, acho melhor armazenar em uma variável e utilizar a variável onde o timestamp é necessário. Desta forma se for necessário ajustar o timestamp basta ajustar a variável.


self.assertIsInstance(event, dict)
record = event["Records"][0]
self.assertEqual(record["messageId"], "10519041647717348")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Como você está tentando comparar com um valor que estava na mensagem enviado ao PubSub referencie o valor no dicionário de origem para ter certeza que é o mesmo da origem. Ex.:

self.assertEqual(record["messageId"], data["message"]["messageId"])

O mesmo vale para as demais verificações, sempre compare com um valor salvo em uma variável de origem para evitar de ter que ficar buscando de onde vem a informação que está comparando, e se houver mudança nos dados de entrada não precisaria alterar nas verificações de saída.

@julianolf julianolf closed this Aug 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants