forked from TrenchBoot/u-root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
64 lines (54 loc) · 1.56 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
// Copyright 2017-2018 the u-root Authors. All rights reserved
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package grub
import (
"context"
"io/ioutil"
"path/filepath"
"strings"
"testing"
"github.com/u-root/u-root/pkg/boot/boottest"
)
// Enable this to generate new configs.
func DISABLEDTestGenerateConfigs(t *testing.T) {
tests, err := filepath.Glob("testdata_new/*.json")
if err != nil {
t.Error("Failed to find test config files:", err)
}
for _, test := range tests {
configPath := strings.TrimRight(test, ".json")
t.Run(configPath, func(t *testing.T) {
imgs, err := ParseLocalConfig(context.Background(), configPath)
if err != nil {
t.Fatalf("Failed to parse %s: %v", test, err)
}
if err := boottest.ToJSONFile(imgs, test); err != nil {
t.Errorf("failed to generate file: %v", err)
}
})
}
}
func TestConfigs(t *testing.T) {
// find all saved configs
tests, err := filepath.Glob("testdata_new/*.json")
if err != nil {
t.Error("Failed to find test config files:", err)
}
for _, test := range tests {
configPath := strings.TrimRight(test, ".json")
t.Run(configPath, func(t *testing.T) {
want, err := ioutil.ReadFile(test)
if err != nil {
t.Errorf("Failed to read test json '%v':%v", test, err)
}
imgs, err := ParseLocalConfig(context.Background(), configPath)
if err != nil {
t.Fatalf("Failed to parse %s: %v", test, err)
}
if err := boottest.CompareImagesToJSON(imgs, want); err != nil {
t.Errorf("ParseLocalConfig(): %v", err)
}
})
}
}