github.com/blend/go-sdk@v1.20220411.3/slack/message_option_test.go (about)

     1  /*
     2  
     3  Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved
     4  Use of this source code is governed by a MIT license that can be found in the LICENSE file.
     5  
     6  */
     7  
     8  package slack
     9  
    10  import (
    11  	"testing"
    12  
    13  	"github.com/blend/go-sdk/assert"
    14  )
    15  
    16  func TestMessageOptions(t *testing.T) {
    17  	assert := assert.New(t)
    18  
    19  	message := Message{
    20  		Text: "this is only a test",
    21  	}
    22  
    23  	assert.Empty(message.Channel)
    24  	message = ApplyMessageOptions(message, OptMessageChannel("#foo"))
    25  	assert.Equal("#foo", message.Channel)
    26  
    27  	assert.Empty(message.IconURL)
    28  	message = ApplyMessageOptions(message, OptMessageIconURL("https://foo.bar.com/icon.png"))
    29  	assert.Equal("https://foo.bar.com/icon.png", message.IconURL)
    30  
    31  	assert.Empty(message.IconEmoji)
    32  	message = ApplyMessageOptions(message, OptMessageIconEmoji(":fire:"))
    33  	assert.Equal(":fire:", message.IconEmoji)
    34  
    35  	assert.Empty(message.Username)
    36  	message = ApplyMessageOptions(message, OptMessageUsername("example-stringdog"))
    37  	assert.Equal("example-stringdog", message.Username)
    38  }