* TestPool * Store infra * Store tests updates * Bump maximum concurrent postgres connections * More infra * channels/jobs * channels/app * channels/api4 * Protect i18n from concurrent access * Replace some use of os.Setenv * Remove debug * Lint fixes * Fix more linting * Fix test * Remove use of Setenv in drafts tests * Fix flaky TestWebHubCloseConnOnDBFail * Fix merge * [MM-62408] Add CI job to generate test coverage (#30284) * Add CI job to generate test coverage * Remove use of Setenv in drafts tests * Fix flaky TestWebHubCloseConnOnDBFail * Fix more Setenv usage * Fix more potential flakyness * Remove parallelism from flaky test * Remove conflicting env var * Fix * Disable parallelism * Test atomic covermode * Disable parallelism * Enable parallelism * Add upload coverage step * Fix codecov.yml * Add codecov.yml * Remove redundant workspace field * Add Parallel() util methods and refactor * Fix formatting * More formatting fixes * Fix reporting
75 строки
2.2 KiB
Go
75 строки
2.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package email
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
func TestProcessMessageAttachments(t *testing.T) {
|
|
mainHelper.Parallel(t)
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
|
|
post := &model.Post{
|
|
Message: "This is the message",
|
|
}
|
|
|
|
messageAttachments := []*model.SlackAttachment{
|
|
{
|
|
Color: "#FF0000",
|
|
Pretext: "message attachment 1 pretext",
|
|
AuthorName: "author name",
|
|
AuthorLink: "https://example.com/slack_attachment_1/author_link",
|
|
AuthorIcon: "https://example.com/slack_attachment_1/author_icon",
|
|
Title: "message attachment 1 title",
|
|
TitleLink: "https://example.com/slack_attachment_1/title_link",
|
|
Text: "message attachment 1 text",
|
|
ImageURL: "https://example.com/slack_attachment_1/image",
|
|
ThumbURL: "https://example.com/slack_attachment_1/thumb",
|
|
Fields: []*model.SlackAttachmentField{
|
|
{
|
|
Short: true,
|
|
Title: "message attachment 1 field 1 title",
|
|
Value: "message attachment 1 field 1 value",
|
|
},
|
|
{
|
|
Short: false,
|
|
Title: "message attachment 1 field 2 title",
|
|
Value: "message attachment 1 field 2 value",
|
|
},
|
|
{
|
|
Short: true,
|
|
Title: "message attachment 1 field 3 title",
|
|
Value: "message attachment 1 field 3 value",
|
|
},
|
|
{
|
|
Short: true,
|
|
Title: "message attachment 1 field 4 title",
|
|
Value: "message attachment 1 field 4 value",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Color: "#FF0000",
|
|
Pretext: "message attachment 2 pretext",
|
|
AuthorName: "author name 2",
|
|
Text: "message attachment 2 text",
|
|
},
|
|
}
|
|
|
|
model.ParseSlackAttachment(post, messageAttachments)
|
|
|
|
processedAttachmentsPost := ProcessMessageAttachments(post, "https://example.com")
|
|
require.NotNil(t, processedAttachmentsPost)
|
|
require.Len(t, processedAttachmentsPost, 2)
|
|
require.Equal(t, processedAttachmentsPost[0].Color, "#FF0000")
|
|
require.Equal(t, processedAttachmentsPost[0].FieldRows[0].Cells[0].Title, "message attachment 1 field 1 title")
|
|
require.Equal(t, processedAttachmentsPost[1].Color, "#FF0000")
|
|
}
|