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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
package bsdp
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/u-root/uio/uio"
)
func TestBootImageIDToBytes(t *testing.T) {
b := BootImageID{
IsInstall: true,
ImageType: BootImageTypeMacOSX,
Index: 0x1000,
}
actual := uio.ToBigEndian(b)
expected := []byte{0x81, 0, 0x10, 0}
require.Equal(t, expected, actual)
b.IsInstall = false
actual = uio.ToBigEndian(b)
expected = []byte{0x01, 0, 0x10, 0}
require.Equal(t, expected, actual)
}
func TestBootImageIDFromBytes(t *testing.T) {
b := BootImageID{
IsInstall: false,
ImageType: BootImageTypeMacOSX,
Index: 0x1000,
}
var newBootImage BootImageID
require.NoError(t, uio.FromBigEndian(&newBootImage, uio.ToBigEndian(b)))
require.Equal(t, b, newBootImage)
b = BootImageID{
IsInstall: true,
ImageType: BootImageTypeMacOSX,
Index: 0x1011,
}
require.NoError(t, uio.FromBigEndian(&newBootImage, uio.ToBigEndian(b)))
require.Equal(t, b, newBootImage)
}
func TestBootImageIDFromBytesFail(t *testing.T) {
serialized := []byte{0x81, 0, 0x10} // intentionally left short
var deserialized BootImageID
require.Error(t, uio.FromBigEndian(&deserialized, serialized))
}
func TestBootImageIDString(t *testing.T) {
b := BootImageID{IsInstall: false, ImageType: BootImageTypeMacOSX, Index: 1001}
require.Equal(t, "[1001] uninstallable macOS image", b.String())
}
/*
* BootImage
*/
func TestBootImageToBytes(t *testing.T) {
b := BootImage{
ID: BootImageID{
IsInstall: true,
ImageType: BootImageTypeMacOSX,
Index: 0x1000,
},
Name: "bsdp-1",
}
expected := []byte{
0x81, 0, 0x10, 0, // boot image ID
6, // len(Name)
98, 115, 100, 112, 45, 49, // byte-encoding of Name
}
actual := uio.ToBigEndian(b)
require.Equal(t, expected, actual)
b = BootImage{
ID: BootImageID{
IsInstall: false,
ImageType: BootImageTypeMacOSX,
Index: 0x1010,
},
Name: "bsdp-21",
}
expected = []byte{
0x1, 0, 0x10, 0x10, // boot image ID
7, // len(Name)
98, 115, 100, 112, 45, 50, 49, // byte-encoding of Name
}
actual = uio.ToBigEndian(b)
require.Equal(t, expected, actual)
}
func TestBootImageFromBytes(t *testing.T) {
input := []byte{
0x1, 0, 0x10, 0x10, // boot image ID
7, // len(Name)
98, 115, 100, 112, 45, 50, 49, // byte-encoding of Name
}
var b BootImage
require.NoError(t, uio.FromBigEndian(&b, input))
expectedBootImage := BootImage{
ID: BootImageID{
IsInstall: false,
ImageType: BootImageTypeMacOSX,
Index: 0x1010,
},
Name: "bsdp-21",
}
require.Equal(t, expectedBootImage, b)
}
func TestBootImageFromBytesOnlyBootImageID(t *testing.T) {
// Only a BootImageID, nothing else.
input := []byte{0x1, 0, 0x10, 0x10}
var b BootImage
require.Error(t, uio.FromBigEndian(&b, input))
}
func TestBootImageFromBytesShortBootImage(t *testing.T) {
input := []byte{
0x1, 0, 0x10, 0x10, // boot image ID
7, // len(Name)
98, 115, 100, 112, 45, 50, // Name bytes (intentionally off-by-one)
}
var b BootImage
require.Error(t, uio.FromBigEndian(&b, input))
}
func TestBootImageString(t *testing.T) {
b := BootImage{
ID: BootImageID{
IsInstall: false,
ImageType: BootImageTypeMacOSX,
Index: 0x1010,
},
Name: "bsdp-21",
}
require.Equal(t, "bsdp-21 [4112] uninstallable macOS image", b.String())
}
|