Skip to main content

Send real-time notifications to Slack with the results of your tests

Project description

RobotSlackNotification

Seu navegador não suporta a tag HTML5 video.

🇧🇷 Descrição

RobotSlackNotification é uma biblioteca para o Robot Framework que envia notificações em tempo real para um canal do Slack com o status e os resultados dos testes automatizados. Ideal para execuções integradas com pipelines de CI/CD, como GitHub Actions, GitLab CI, Jenkins, entre outros.

Principais Funcionalidades

  • Envia mensagem principal com resumo dos testes (executados, sucesso, falha, pulados)
  • Atualiza a mensagem principal conforme a execução avança
  • Envia detalhes de falhas em threads da mensagem principal
  • Permite menção automática a grupos do Slack (User Groups) configurados por suite

⚙️ Configuração do Projeto

1. Instale a biblioteca

Use o Poetry ou pip:

poetry add robotframework-slacknotification
# ou
pip install robotframework-slacknotification

2. Configure o arquivo .env

Crie um arquivo .env na raiz do projeto o API TOKEN do Slack e o ID do seu Canal:

SLACK_API_TOKEN=xoxb-seu-token-do-slack
SLACK_CHANNEL=ID_DO_CANAL
  • O token deve ser do tipo "Bot User OAuth Token" e ter os escopos:
    • chat:write
    • chat:write.public
    • usergroups:read (para menções automáticas a grupos)

3. (Opcional) Configure os grupos de menção por suite

Crie um arquivo chamado slack_groups_config.py na raiz do seu projeto de testes, conforme o exemplo abaixo:

SUITE_SLACK_GROUPS = {
    "Nome da Suite 1": ["grupo_dev", "grupo_qa"],
    "Nome da Suite 2": ["grupo_ops"],
}
  • O nome da suite, deve ser igual ao exibido no log do Robot Framework
  • Os nomes dos grupos devem ser os "handles" dos User Groups do Slack (sem o @).
  • O arquivo é opcional. Se não existir, nenhuma menção será feita.

4. (Opcional) Suporte a múltiplos idiomas

A biblioteca suporta mensagens em três idiomas:

  • Inglês (padrão) = en
  • Português-BR = pt-br
  • Espanhol = es

Basta passar o argumento language ao importar a biblioteca no seu teste Robot:

Library    RobotSlackNotification
    ...    language=pt-br

ou

Library    RobotSlackNotification
    ...    language=es

Se não informar, o padrão será inglês (en).

Todos os textos das mensagens, labels e alertas serão enviados no idioma escolhido.

5. Adicione a biblioteca no seu teste Robot

Exemplo completo de uso:

Library    RobotSlackNotification
    ...    test_title=Seu Título de Teste
    ...    environment=HML
    ...    cicd_url=https://github.com/sua-org/seu-repo/actions/runs/123456789
    ...    language=pt-br
  • test_title (opcional): Título do teste. Se não informado, usa o nome da suite por padrão.
  • environment (opcional): Ambiente de execução. Se não informado, não aparece na mensagem.
  • cicd_url (opcional): URL completa do pipeline.
  • language (opcional): Idioma das mensagens. Padrão é inglês (en).

🛠️ Configuração no Slack

  1. Crie um app no Slack:

    • https://api.slack.com/apps → "Create New App" → "From scratch"
    • Adicione os escopos: chat:write, chat:write.public, usergroups:read
    • Instale o app no workspace e copie o token do bot (xoxb-...)
  2. Crie User Groups (Grupos de Usuários):

    • Acesse https://app.slack.com/user-groups
    • Crie grupos como @grupo_dev, @grupo_qa, etc.
    • O handle do grupo (ex: grupo_dev) é o que você usará no arquivo de configuração.
  3. Adicione o bot ao canal desejado.


🚨 Como funcionam as menções automáticas

  • No final da execução de cada suite, se houver falhas e grupos configurados para aquela suite, será enviada uma mensagem na thread da mensagem principal, marcando os grupos.
  • Exemplo de mensagem automática:
    @grupo_dev @grupo_qa podem verificar?
    

🇺🇸 English

RobotSlackNotification is a Robot Framework library that sends real-time notifications to a Slack channel with the status and results of your automated tests. Perfect for executions integrated with CI/CD pipelines like GitHub Actions, GitLab CI, Jenkins, and others.

Main Features

  • Sends a main message with a summary of test results (executed, passed, failed, skipped)
  • Updates the main message as execution progresses
  • Sends failure details in threads under the main message
  • Allows automatic mention of Slack User Groups per suite

⚙️ Project Setup

1. Install the library

Use Poetry or pip:

poetry add robotframework-slacknotification
# or
pip install robotframework-slacknotification

2. Configure the .env file

Create a .env file in the project root with your Slack API Token and Channel ID:

SLACK_API_TOKEN=xoxb-your-slack-token
SLACK_CHANNEL=YOUR_CHANNEL_ID
  • The token must be a "Bot User OAuth Token" with scopes:
    • chat:write
    • chat:write.public
    • usergroups:read (for automatic group mentions)

3. (Optional) Configure group mentions per suite

Create a file named slack_groups_config.py in your test project root, as shown below:

SUITE_SLACK_GROUPS = {
    "Suite Name 1": ["grupo_dev", "grupo_qa"],
    "Suite Name 2": ["grupo_ops"],
}
  • The suite name must match exactly what is shown in the Robot Framework log
  • Group names must be the User Group handles from Slack (without @)
  • The file is optional. If it doesn't exist, no group will be mentioned.

4. (Optional) Multi-language support

The library supports messages in three languages:

  • English (default) = en
  • Portuguese-BR = pt-br
  • Spanish = es

Just pass the language argument when importing the library in your Robot test:

Library    RobotSlackNotification
    ...    language=pt-br

or

Library    RobotSlackNotification
    ...    language=es

If not specified, the default is English (en).

All message texts, labels, and alerts will be sent in the selected language.

5. Add the library to your Robot test

Full usage example:

Library    RobotSlackNotification
    ...    test_title=Your Test Title
    ...    environment=HML
    ...    cicd_url=https://github.com/your-org/your-repo/actions/runs/123456789
    ...    language=en
  • test_title (optional): Test title. If not provided, the suite name will be used by default.
  • environment (optional): Execution environment. If not provided, it will not appear in the message.
  • cicd_url (optional): Full pipeline run URL.
  • language (optional): Message language. Default is English (en).

🛠️ Slack Setup

  1. Create a Slack app:

    • https://api.slack.com/apps → "Create New App" → "From scratch"
    • Add scopes: chat:write, chat:write.public, usergroups:read
    • Install the app in your workspace and copy the bot token (xoxb-...)
  2. Create User Groups:

  3. Add the bot to the desired channel.


🚨 How automatic mentions work

  • At the end of each suite, if there are failures and groups configured for that suite, a message will be sent in the thread of the main message, mentioning the groups.
  • Example of automatic message:
    @grupo_dev @grupo_qa can check?
    

Licença / License

Este projeto está licenciado sob a licença Apache 2.0.
This project is licensed under the Apache 2.0 license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robotframework_slacknotification-0.1.0.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file robotframework_slacknotification-0.1.0.tar.gz.

File metadata

File hashes

Hashes for robotframework_slacknotification-0.1.0.tar.gz
Algorithm Hash digest
SHA256 df0f5b882adc12bd04fcb25ff8dc0aa3e4da3cbcb929176fdb7250f8860d2661
MD5 94972289e77d4d95086e7e75510c8b26
BLAKE2b-256 3ab65227b45ac866fedbfbf7870276d556b5b5b59634703de012c3276162bf1f

See more details on using hashes here.

File details

Details for the file robotframework_slacknotification-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for robotframework_slacknotification-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 022602df33c766a27396780935114fdca4b1cbb40fbab47e9eec0b3d69f86b7c
MD5 152cc2471491534f440345ded88b873c
BLAKE2b-256 e0f669cdfd3bfdfd53305f877e5fd2c4e83f72fc3a4a020552eeaa366e46cd29

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page