Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
func TestProcessSlackText(t *testing.T) {
|
|
mainHelper.Parallel(t)
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
|
|
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 TestProcessSlackAnnouncement(t *testing.T) {
|
|
mainHelper.Parallel(t)
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
|
|
userID := th.BasicUser.Id
|
|
username := th.BasicUser.Username
|
|
|
|
attachments := []*model.SlackAttachment{
|
|
{
|
|
Pretext: "<!channel> pretext <!here>",
|
|
Text: "<!channel> text <!here>",
|
|
Title: "<!channel> title <!here>",
|
|
Fields: []*model.SlackAttachmentField{
|
|
{
|
|
Title: "foo",
|
|
Value: "<!channel> bar <!here>",
|
|
Short: true,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Pretext: "<@" + userID + "> pretext",
|
|
Text: "<@" + userID + "> text",
|
|
Title: "<@" + userID + "> title",
|
|
Fields: []*model.SlackAttachmentField{
|
|
{
|
|
Title: "foo",
|
|
Value: "<@" + userID + "> bar",
|
|
Short: true,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
attachments = th.App.ProcessSlackAttachments(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()
|
|
}
|
|
}
|