-
Notifications
You must be signed in to change notification settings - Fork 4
/
configs_test.go
52 lines (43 loc) · 1.38 KB
/
configs_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
52
package limacharlie
import (
"testing"
"github.com/stretchr/testify/suite"
)
const (
testConfig = `
oid: 11111111-2222-3333-4444-555555555555
api_key: 31111111-2222-3333-4444-555555555555
env:
ttt:
oid: 41111111-2222-3333-4444-555555555555
uid: 51111111-2222-3333-4444-555555555555
api_key: 61111111-2222-3333-4444-555555555555
vvv:
oid: 71111111-2222-3333-4444-555555555555
uid: 81111111-2222-3333-4444-555555555555
api_key: 91111111-2222-3333-4444-555555555555`
)
type ConfigsTestSuite struct {
suite.Suite
}
func TestConfigSuite(t *testing.T) {
suite.Run(t, new(ConfigsTestSuite))
}
func (s *ConfigsTestSuite) TestFromConfigStringDefault() {
o := ClientOptions{}
s.NoError(o.FromConfigString([]byte(testConfig), ""))
s.Equal(o.OID, "11111111-2222-3333-4444-555555555555")
s.Equal(o.UID, "")
s.Equal(o.APIKey, "31111111-2222-3333-4444-555555555555")
s.NoError(o.FromConfigString([]byte(testConfig), "default"))
s.Equal(o.OID, "11111111-2222-3333-4444-555555555555")
s.Equal(o.UID, "")
s.Equal(o.APIKey, "31111111-2222-3333-4444-555555555555")
}
func (s *ConfigsTestSuite) TestFromConfigStringFromEnvironment() {
o := ClientOptions{}
s.NoError(o.FromConfigString([]byte(testConfig), "vvv"))
s.Equal(o.OID, "71111111-2222-3333-4444-555555555555")
s.Equal(o.UID, "81111111-2222-3333-4444-555555555555")
s.Equal(o.APIKey, "91111111-2222-3333-4444-555555555555")
}