-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
config_test.go
61 lines (53 loc) · 1.16 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
package velox
import (
"os"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestExpandEnvs(t *testing.T) {
tn := time.Now().Format(time.Kitchen)
token := "foobarbaz"
require.NoError(t, os.Setenv("TIME", tn))
require.NoError(t, os.Setenv("VERSION", "v2.10.5"))
require.NoError(t, os.Setenv("TOKEN", token))
c := &Config{
Roadrunner: map[string]string{"": ""},
Debug: &Debug{
Enabled: true,
},
GitHub: &CodeHosting{
BaseURL: nil,
Token: &Token{Token: "${TOKEN}"},
Plugins: map[string]*PluginConfig{"foo": {
Ref: "master",
Owner: "roadrunner-server",
Repo: "logger",
Replace: "",
},
},
},
GitLab: &CodeHosting{
BaseURL: nil,
Token: &Token{Token: "${TOKEN}"},
Plugins: map[string]*PluginConfig{"foo": {
Ref: "master",
Owner: "roadrunner-server",
Repo: "logger",
Replace: "",
},
},
},
Log: nil,
}
require.NoError(t, c.Validate())
assert.Equal(t, token, c.GitHub.Token.Token)
assert.Equal(t, token, c.GitLab.Token.Token)
}
func TestNils(t *testing.T) {
c := &Config{
Log: nil,
}
require.Error(t, c.Validate())
}