forked from u-root/u-root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_test.go
108 lines (96 loc) · 2.76 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
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
// Copyright 2017-2020 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"
"github.com/u-root/u-root/pkg/mount"
"github.com/u-root/u-root/pkg/mount/block"
)
// fakeDevices returns a list of fake block devices and a pool of mount points.
// The pool is pre-populated so that Mount is never called.
func fakeDevices() (block.BlockDevices, *mount.Pool, error) {
// For some reason, Glob("testdata_new/*/") does not work here.
files, err := ioutil.ReadDir("testdata_new")
if err != nil {
return nil, nil, err
}
dirs := []string{}
for _, f := range files {
if f.IsDir() {
dirs = append(dirs, filepath.Join("testdata_new", f.Name()))
}
}
devices := block.BlockDevices{}
mountPool := &mount.Pool{}
for _, dir := range dirs {
// TODO: Also add LABEL to BlockDev
fsUUID, _ := ioutil.ReadFile(filepath.Join(dir, "UUID"))
devices = append(devices, &block.BlockDev{
Name: dir,
FSType: "test",
FsUUID: strings.TrimSpace(string(fsUUID)),
})
mountPool.Add(&mount.MountPoint{
Path: dir,
Device: dir,
FSType: "test",
})
}
return devices, mountPool, nil
}
// 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) {
devices, mountPool, err := fakeDevices()
if err != nil {
t.Fatal(err)
}
imgs, err := ParseLocalConfig(context.Background(), configPath, devices, mountPool)
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)
}
devices, mountPool, err := fakeDevices()
if err != nil {
t.Fatal(err)
}
imgs, err := ParseLocalConfig(context.Background(), configPath, devices, mountPool)
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)
}
})
}
}