-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
84 lines (67 loc) · 1.65 KB
/
config.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
package main
import (
"errors"
"flag"
"fmt"
"io/ioutil"
"os"
"gopkg.in/yaml.v2"
)
type Config struct {
Verifier string `yaml:"verifier"`
TestPath string `yaml:"testpath"`
}
type ConfigReader interface {
Read(path string) ([]byte, error)
}
type FileConfigReader struct {
}
func (f FileConfigReader) Read(path string) ([]byte, error) {
return readFile(path)
}
func readFile(path string) ([]byte, error) {
bytes, err := ioutil.ReadFile(path)
return bytes, err
}
func FileExists(path string) error {
if _, err := os.Stat(path); err != nil {
return err
}
return nil
}
func LoadConfig(path string, cfReader ConfigReader) (Config, error) {
if err := FileExists(path); err != nil {
fmt.Println("error in LoadConfig : could not find file" + path)
return Config{}, err
}
payload, err := cfReader.Read(path)
if err != nil {
fmt.Println("error reading file at " + path)
return Config{}, err
}
config, err := ParseConfigFile(payload)
if err != nil {
fmt.Println("error parsing config file ")
return Config{}, err
}
return config, err
}
func ParseConfigFile(payload []byte) (Config, error) {
config := Config{}
err := yaml.Unmarshal(payload, &config)
if config.Verifier == "" {
return config, errors.New("error: field 'verifier' not found in config.yml")
}
if config.TestPath == "" {
return config, errors.New("error: field 'testpath' not found in config.yml")
}
return config, err
}
func ParseConfigPath() (string, error) {
configpath := flag.String("config", "REQUIRED", "Config file path")
flag.Parse()
if *configpath == "REQUIRED" {
return "ERROR", errors.New("error: --config is a required argument.")
}
return *configpath, nil
}