-
Notifications
You must be signed in to change notification settings - Fork 60
/
hsm_test.go
51 lines (47 loc) · 1.01 KB
/
hsm_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
50
51
package conversation
import (
"github.com/stretchr/testify/assert"
"reflect"
"testing"
"time"
)
func TestLocalizableParameter(t *testing.T) {
now := time.Now()
tt := []struct {
name string
got *HSMLocalizableParameter
expect *HSMLocalizableParameter
}{
{
name: "default",
got: DefaultLocalizableHSMParameter("foo"),
expect: &HSMLocalizableParameter{
Default: "foo",
},
},
{
name: "currency",
got: CurrencyLocalizableHSMParameter("EUR 12.34", "EUR", int64(12340)),
expect: &HSMLocalizableParameter{
Default: "EUR 12.34",
Currency: &HSMLocalizableParameterCurrency{
Code: "EUR",
Amount: int64(12340),
},
},
},
{
name: "date time",
got: DateTimeLocalizableHSMParameter("baz", now),
expect: &HSMLocalizableParameter{
Default: "baz",
DateTime: &now,
},
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
assert.Truef(t, reflect.DeepEqual(tc.got, tc.expect), "got %v, expected %v", tc.got, tc.expect)
})
}
}