forked from TrenchBoot/u-root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry_test.go
49 lines (44 loc) · 2.07 KB
/
entry_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
// Copyright 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 (
"bytes"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestWriteTo(t *testing.T) {
env := &EnvFile{map[string]string{
"kernel": "bzImage",
"initrd": "initramfs.cpio",
}}
buf := &bytes.Buffer{}
_, err := env.WriteTo(buf)
if err != nil {
t.Errorf("env.WriteTo(%v) error %v", env, err)
}
gotFile := buf.String()
wantFile := `# GRUB Environment Block
initrd=initramfs.cpio
kernel=bzImage
##################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################`
if diff := cmp.Diff(wantFile, gotFile); diff != "" {
t.Errorf("env.WriteTo(%v) diff(-want, +got) = \n%s", env, diff)
}
}
func TestParseEnvFile(t *testing.T) {
file := `kernel=bzImage
initrd=initramfs.cpio
`
gotEnv, err := ParseEnvFile(bytes.NewBufferString(file))
if err != nil {
t.Errorf("ParseEnvFile(%q) error %v", file, err)
}
wantEnv := &EnvFile{map[string]string{
"kernel": "bzImage",
"initrd": "initramfs.cpio",
}}
if diff := cmp.Diff(wantEnv, gotEnv); diff != "" {
t.Errorf("ParseEnvFile(%q) diff(-want, +got) = \n%s", file, diff)
}
}