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

Fix "message too large" exception #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

eduardokhattab
Copy link

@eduardokhattab eduardokhattab commented Apr 19, 2023

Descrição

Esse Pull Request valida o tamanho da mensagem enviada antes de atribuir ao respectivo chat. Ocorre que, atualmente, se enviarmos uma mensagem maior que o aceito pelo modelo da OpenAI, vamos receber uma exceção no código, um panic do tipo:

panic: runtime error: index out of range [0] with length 0 [recovered]
         panic: runtime error: index out of range [0] with length 0

Mudanças

  • fix panic index out of range
  • teste unitário para validar comportamento implementado
  • uso da lib "testify" para auxiliar nos testes
  • criação de uma task no Makefile para executar os testes no docker
  • retornar status corretos para HTTP (400/Bad Request) e GRPC (3/INVALID_ARGUMENT)

Como Reproduzir

Há três formas de reproduzirmos esse comportamento

  1. através da mensagem inicial definida na env var INITIAL_CHAT_MESSAGE
  2. através da requisição do usuário, seja nosso HTTP Server ou GRPC Server
  3. através do teste unitário criado

Se a mensagem for grande demais, vamos estourar o panic:

# subindo a app
make migrate
docker-compose up -d
docker-compose exec chatservice bash

# executando a app no container
go run cmd/chatservice/main.go

# enviando a requisição HTTP
curl --request POST \
  --url http://localhost:8081/chat \
  --header 'authorization: 123456' \
  --header 'content-type: application/json' \
  --header 'user-agent: vscode-restclient' \
  --data '{"user_id": "1","user_message": "<MENSAGEM GRANDE AQUI>"}'

# ou enviando a requisição GRPC
  # faça pelo postman ou pelo grpcurl
  # go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
grpcurl -d '{"user_id": "1", "user_message": "MENSAGEM GRANDE AQUI"}' -plaintext -H authorization:123456 \
localhost:50052 pb.ChatService/ChatStream

# ou executar os testes unitários
make tests

@dannevesdantas
Copy link
Contributor

Top!

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