forked from fsamin/go-wsqueue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmessage_test.go
37 lines (32 loc) · 918 Bytes
/
message_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package wsqueue
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewMessageShouldBeString(t *testing.T) {
data := "test message"
msg, err := newMessage(data)
assert.NoError(t, err)
assert.NotNil(t, msg)
assert.Equal(t, msg.ContentType(), "string")
}
func TestNewMessageShouldBeJSON(t *testing.T) {
data := map[string]interface{}{
"data": "test message",
}
msg, err := newMessage(data)
assert.NoError(t, err)
assert.NotNil(t, msg)
assert.Equal(t, msg.ContentType(), "application/json")
assert.Equal(t, msg.ApplicationType(), "map[string]interface {}")
}
func TestNewMessageShouldBeJSONEvenIfPointer(t *testing.T) {
data := map[string]interface{}{
"data": "test message",
}
msg, err := newMessage(&data)
assert.NoError(t, err)
assert.NotNil(t, msg)
assert.Equal(t, msg.ContentType(), "application/json")
assert.Equal(t, msg.ApplicationType(), "map[string]interface {}")
}