Files
mattermost/model/slack_attachment_test.go
2021-07-21 16:38:39 +02:00

45 lines
909 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestParseSlackAttachment(t *testing.T) {
t.Run("empty list", func(t *testing.T) {
post := &Post{}
attachments := []*SlackAttachment{}
ParseSlackAttachment(post, attachments)
expectedPost := &Post{
Type: PostTypeSlackAttachment,
Props: map[string]interface{}{
"attachments": []*SlackAttachment{},
},
}
assert.Equal(t, expectedPost, post)
})
t.Run("list with nil", func(t *testing.T) {
post := &Post{}
attachments := []*SlackAttachment{
nil,
}
ParseSlackAttachment(post, attachments)
expectedPost := &Post{
Type: PostTypeSlackAttachment,
Props: map[string]interface{}{
"attachments": []*SlackAttachment{},
},
}
assert.Equal(t, expectedPost, post)
})
}