-
Notifications
You must be signed in to change notification settings - Fork 13
/
file_test.go
106 lines (86 loc) · 2.16 KB
/
file_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
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
// Copyright (c) 2017 Steven Roose <steven@stevenroose.org>.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package gonfig
import (
"io/ioutil"
"testing"
"github.com/stretchr/testify/require"
)
func TestParseFile_FileNotExist_Default(t *testing.T) {
require.NoError(t, parseFile(&setup{
configFilePath: "/doesntexist.conf",
}))
}
func TestParseFile_FileNotExist_Custom(t *testing.T) {
require.Error(t, parseFile(&setup{
configFilePath: "/doesntexist.conf",
customConfigFile: true,
}))
}
func TestParseFile_InvalidJSON(t *testing.T) {
file, err := ioutil.TempFile("", "gonfig")
require.NoError(t, err)
_, err = file.WriteString(`{
"key": "value",
}`)
require.NoError(t, err)
require.Error(t, parseFile(&setup{
configFilePath: file.Name(),
conf: &Conf{
FileDecoder: DecoderJSON,
},
}))
}
func TestParseFile_InvalidYAML(t *testing.T) {
file, err := ioutil.TempFile("", "gonfig")
require.NoError(t, err)
_, err = file.WriteString("test: \"value\n")
require.NoError(t, err)
require.Error(t, parseFile(&setup{
configFilePath: file.Name(),
conf: &Conf{
FileDecoder: DecoderYAML,
},
}))
}
func TestParseFile_InvalidTOML(t *testing.T) {
file, err := ioutil.TempFile("", "gonfig")
require.NoError(t, err)
_, err = file.WriteString("test = value\n")
require.NoError(t, err)
require.Error(t, parseFile(&setup{
configFilePath: file.Name(),
conf: &Conf{
FileDecoder: DecoderTOML,
},
}))
}
func TestParseFile_InvalidAny(t *testing.T) {
file, err := ioutil.TempFile("", "gonfig")
require.NoError(t, err)
_, err = file.WriteString("&$_@")
require.NoError(t, err)
require.Error(t, parseFile(&setup{
configFilePath: file.Name(),
conf: &Conf{
FileDecoder: DecoderTryAll,
},
}))
}
func TestParseFile_MultiDecoder(t *testing.T) {
file, err := ioutil.TempFile("", "gonfig")
require.NoError(t, err)
_, err = file.WriteString("test = \"value\"\n")
require.NoError(t, err)
require.NoError(t, parseFile(&setup{
configFilePath: file.Name(),
conf: &Conf{
FileDecoder: NewMultiFileDecoder([]FileDecoderFn{
DecoderJSON,
DecoderYAML,
DecoderTOML,
}),
},
}))
}