mattermost/server/channels/app/slack_test.go
Andre Vasconcelos faa7d75b4e
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (shard 0) (push) Blocked by required conditions
Server CI / Postgres (shard 1) (push) Blocked by required conditions
Server CI / Postgres (shard 2) (push) Blocked by required conditions
Server CI / Postgres (shard 3) (push) Blocked by required conditions
Server CI / Merge Postgres Test Results (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Tools CI / check-style (mattermost-govet) (push) Waiting to run
Tools CI / Test (mattermost-govet) (push) Waiting to run
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-external-links (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
Improved processing of attachments (#35854)
2026-04-07 13:25:38 +03:00

112 lines
2.7 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package app
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/mattermost/mattermost/server/public/model"
)
func TestProcessSlackText(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic(t)
if th.App.ProcessSlackText(th.Context, "<!channel> foo <!channel>") != "@channel foo @channel" {
t.Fail()
}
if th.App.ProcessSlackText(th.Context, "<!here> bar <!here>") != "@here bar @here" {
t.Fail()
}
if th.App.ProcessSlackText(th.Context, "<!all> bar <!all>") != "@all bar @all" {
t.Fail()
}
userID := th.BasicUser.Id
username := th.BasicUser.Username
if th.App.ProcessSlackText(th.Context, "<@"+userID+"> hello") != "@"+username+" hello" {
t.Fail()
}
}
func TestProcessMessageAttachmentsWithNilEntries(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic(t)
attachments := []*model.MessageAttachment{
nil,
{
Pretext: "pretext",
Text: "text",
Title: "title",
},
nil,
{
Pretext: "pretext2",
Text: "text2",
},
}
result := th.App.ProcessMessageAttachments(th.Context, attachments)
require.Len(t, result, 2)
require.Equal(t, "pretext", result[0].Pretext)
require.Equal(t, "pretext2", result[1].Pretext)
}
func TestProcessSlackAnnouncement(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic(t)
userID := th.BasicUser.Id
username := th.BasicUser.Username
attachments := []*model.MessageAttachment{
{
Pretext: "<!channel> pretext <!here>",
Text: "<!channel> text <!here>",
Title: "<!channel> title <!here>",
Fields: []*model.MessageAttachmentField{
{
Title: "foo",
Value: "<!channel> bar <!here>",
Short: true,
},
},
},
{
Pretext: "<@" + userID + "> pretext",
Text: "<@" + userID + "> text",
Title: "<@" + userID + "> title",
Fields: []*model.MessageAttachmentField{
{
Title: "foo",
Value: "<@" + userID + "> bar",
Short: true,
},
},
},
}
attachments = th.App.ProcessMessageAttachments(th.Context, attachments)
if len(attachments) != 2 || len(attachments[0].Fields) != 1 || len(attachments[1].Fields) != 1 {
t.Fail()
}
if attachments[0].Pretext != "@channel pretext @here" ||
attachments[0].Text != "@channel text @here" ||
attachments[0].Title != "@channel title @here" ||
attachments[0].Fields[0].Value != "@channel bar @here" {
t.Fail()
}
if attachments[1].Pretext != "@"+username+" pretext" ||
attachments[1].Text != "@"+username+" text" ||
attachments[1].Title != "@"+username+" title" ||
attachments[1].Fields[0].Value != "@"+username+" bar" {
t.Fail()
}
}