-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvsockdevice_test.go
48 lines (37 loc) · 1013 Bytes
/
vsockdevice_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
package qcli
import "testing"
var (
deviceVSOCKString = "-device vhost-vsock-pci,disable-modern=true,id=vhost-vsock-pci0,guest-cid=4,romfile=efi-virtio.rom"
)
func TestAppendVSOCK(t *testing.T) {
vsockDevice := VSOCKDevice{
ID: "vhost-vsock-pci0",
ContextID: 4,
VHostFD: nil,
DisableModern: true,
ROMFile: romfile,
}
if vsockDevice.Transport.isVirtioCCW(nil) {
vsockDevice.DevNo = DevNo
}
testAppend(vsockDevice, deviceVSOCKString, t)
}
func TestVSOCKValid(t *testing.T) {
vsockDevice := VSOCKDevice{
ID: "vhost-vsock-pci0",
ContextID: MinimalGuestCID - 1,
VHostFD: nil,
DisableModern: true,
}
if err := vsockDevice.Valid(); err == nil {
t.Fatalf("VSOCK Context ID is not valid")
}
vsockDevice.ContextID = MaxGuestCID + 1
if err := vsockDevice.Valid(); err == nil {
t.Fatalf("VSOCK Context ID is not valid")
}
vsockDevice.ID = ""
if err := vsockDevice.Valid(); err == nil {
t.Fatalf("VSOCK ID is not valid")
}
}