-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoption_data_test.go
49 lines (36 loc) · 1.38 KB
/
option_data_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
38
39
40
41
42
43
44
45
46
47
48
49
package logwrap
import (
"context"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"testing"
)
func TestField(t *testing.T) {
t.Run("the datum option inserts one key value", func(t *testing.T) {
mockImpl := MockImpl{}
mockImpl.On("Impl", mock.Anything, mock.Anything).Once()
expectedKey := "key"
expectedValue := "value"
logger := New(mockImpl.Impl)
logger.Log(context.Background(), "anything", Datum(expectedKey, expectedValue))
assert.True(t, mockImpl.AssertExpectations(t))
capturedMessage := mockImpl.Calls[0].Arguments.Get(1).(Message)
assert.Equal(t, expectedValue, capturedMessage.Data[expectedKey])
})
}
func TestFields(t *testing.T) {
t.Run("the data option inserts the map of key/values", func(t *testing.T) {
mockImpl := MockImpl{}
mockImpl.On("Impl", mock.Anything, mock.Anything).Once()
expectedKeyOne := "key1"
expectedValueOne := "value1"
expectedKeyTwo := "key2"
expectedValueTwo := "value2"
logger := New(mockImpl.Impl)
logger.Log(context.Background(), "anything", Data(List{expectedKeyOne: expectedValueOne, expectedKeyTwo: expectedValueTwo}))
assert.True(t, mockImpl.AssertExpectations(t))
capturedMessage := mockImpl.Calls[0].Arguments.Get(1).(Message)
assert.Equal(t, expectedValueOne, capturedMessage.Data[expectedKeyOne])
assert.Equal(t, expectedValueTwo, capturedMessage.Data[expectedKeyTwo])
})
}