Skip to content

Commit

Permalink
🧪 test: adicionando teste do endpoint LISTAR_LICITACOES_QUANTIDADE_ANUAL
Browse files Browse the repository at this point in the history
  • Loading branch information
thaleseuflauzino committed Aug 12, 2024
1 parent 357b2c4 commit f2b0445
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions backend/server/app/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,20 @@ def test_listar_licitacoes_quantidade_mensal(self):
]
# Verificar o conteúdo da resposta
self.assertEqual(response.data, expected_data)

# TESTE DO ENDPOINT LISTAR_LICITACOES_QUANTIDADE_ANUAL
def test_listar_licitacoes_quantidade_anual(self):
# Fazer uma requisição GET para o endpoint
response = self.client.get(reverse('listar_licitacoes_quantidade_anual'))
# Verificar se o status da resposta é 200 OK
self.assertEqual(response.status_code, status.HTTP_200_OK)
# Dados esperados
expected_data = [
{'ano': 2023, 'total_licitacoes': 30},
{'ano': 2024, 'total_licitacoes': 0}
]
# Verificar o conteúdo da resposta
self.assertEqual(response.data, expected_data)

# TESTE DO ENDPOINT LICITACAO_MAIOR_VALOR
def test_licitacao_maior_valor(self):
Expand Down

0 comments on commit f2b0445

Please sign in to comment.