-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig_test.go
76 lines (62 loc) · 1.47 KB
/
config_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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package astra
import (
"github.com/stretchr/testify/require"
"testing"
)
func TestConfig_Validate(t *testing.T) {
t.Run("valid full config", func(t *testing.T) {
config := &Config{
Title: "test",
Description: "test description",
Version: "0.0.1",
Contact: Contact{
Name: "John Doe",
URL: "https://www.google.com",
Email: "[email protected]",
},
License: License{
Name: "MIT",
URL: "https://opensource.org/licenses/MIT",
},
Secure: false,
Host: "localhost",
BasePath: "/base-path",
Port: 8000,
}
err := config.Validate()
require.NoError(t, err)
})
t.Run("valid config with defaults", func(t *testing.T) {
config := &Config{
Port: 8000,
}
err := config.Validate()
require.NoError(t, err)
require.Equal(t, "localhost", config.Host)
require.Equal(t, "/", config.BasePath)
})
t.Run("invalid config", func(t *testing.T) {
config := &Config{}
err := config.Validate()
require.Error(t, err)
require.Equal(t, ErrConfigPortRequired, err)
})
}
func TestService_SetConfig(t *testing.T) {
service := &Service{}
config := &Config{
Port: 8000,
}
service.SetConfig(config)
require.Equal(t, config, service.Config)
require.Equal(t, config.Port, service.Config.Port)
}
func TestWithConfig(t *testing.T) {
service := &Service{}
config := &Config{
Port: 8000,
}
WithConfig(config)(service)
require.Equal(t, config, service.Config)
require.Equal(t, config.Port, service.Config.Port)
}