-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathviper_test.go
More file actions
129 lines (118 loc) · 2.56 KB
/
viper_test.go
File metadata and controls
129 lines (118 loc) · 2.56 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package config
import (
"github.com/stretchr/testify/assert"
"testing"
)
func Test_configureViper(t *testing.T) {
assert.Panics(t, func() {
configureViper("")
})
}
func Test_validateConfigFileExtension(t *testing.T) {
tests := []struct {
name string
filename string
wantErr bool
}{
{
name: "valid yaml extension",
filename: "config.yaml",
wantErr: false,
},
{
name: "valid yml extension",
filename: "config.yml",
wantErr: false,
},
{
name: "no extension (default sqlconfig)",
filename: "sqlconfig",
wantErr: false,
},
{
name: "no extension with path",
filename: "/home/user/.sqlcmd/sqlconfig",
wantErr: false,
},
{
name: "invalid txt extension",
filename: "config.txt",
wantErr: true,
},
{
name: "invalid json extension",
filename: "config.json",
wantErr: true,
},
{
name: "invalid xml extension",
filename: "config.xml",
wantErr: true,
},
{
name: "uppercase YAML extension",
filename: "config.YAML",
wantErr: false,
},
{
name: "uppercase YML extension",
filename: "config.YML",
wantErr: false,
},
{
name: "mixed case yaml extension",
filename: "config.Yaml",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateConfigFileExtension(tt.filename)
if tt.wantErr {
assert.Error(t, err, "Expected error for filename: %s", tt.filename)
assert.Contains(t, err.Error(), "Configuration files must use YAML format")
} else {
assert.NoError(t, err, "Expected no error for filename: %s", tt.filename)
}
})
}
}
func Test_configureViper_withInvalidExtension(t *testing.T) {
err := configureViper("myconfig.txt")
assert.Error(t, err)
assert.Contains(t, err.Error(), "Configuration files must use YAML format")
assert.Contains(t, err.Error(), ".txt")
}
func Test_configureViper_withValidExtensions(t *testing.T) {
testCases := []string{
"config.yaml",
"config.yml",
"sqlconfig",
"/path/to/config.yaml",
}
for _, filename := range testCases {
t.Run(filename, func(t *testing.T) {
err := configureViper(filename)
assert.NoError(t, err, "Expected no error for filename: %s", filename)
})
}
}
func Test_Load(t *testing.T) {
SetFileNameForTest(t)
Clean()
Load()
}
func TestNeg_Load(t *testing.T) {
filename = ""
assert.Panics(t, func() {
Load()
})
}
func TestNeg_Save(t *testing.T) {
filename = ""
assert.Panics(t, func() {
Save()
})
}