forked from rgbkrk/libvirt-go
-
Notifications
You must be signed in to change notification settings - Fork 3
/
events_test.go
100 lines (85 loc) · 1.99 KB
/
events_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
package libvirt
import (
"testing"
"time"
)
func TestDomainEventRegister(t *testing.T) {
callbackId := -1
conn := buildTestConnection()
defer func() {
if callbackId >= 0 {
conn.DomainEventDeregister(callbackId)
}
conn.CloseConnection()
}()
nodom := VirDomain{}
defName := time.Now().String()
nbEvents := 0
callback := DomainEventCallback(
func(c *VirConnection, d *VirDomain, eventDetails interface{}, f func()) int {
if lifecycleEvent, ok := eventDetails.(DomainLifecycleEvent); ok {
if lifecycleEvent.Event == VIR_DOMAIN_EVENT_STARTED {
domName, _ := d.GetName()
if defName != domName {
t.Fatalf("Name was not '%s': %s", defName, domName)
}
}
} else {
t.Fatalf("event details isn't DomainLifecycleEvent")
}
f()
return 0
},
)
EventRegisterDefaultImpl()
callbackId = conn.DomainEventRegister(
VirDomain{},
VIR_DOMAIN_EVENT_ID_LIFECYCLE,
&callback,
func() {
nbEvents++
},
)
// Test a minimally valid xml
xml := `<domain type="test">
<name>` + defName + `</name>
<memory unit="KiB">8192</memory>
<os>
<type>hvm</type>
</os>
</domain>`
dom, err := conn.DomainCreateXML(xml, VIR_DOMAIN_NONE)
if err != nil {
t.Error(err)
return
}
// This is blocking as long as there is no message
EventRunDefaultImpl()
if nbEvents == 0 {
t.Fatal("At least one event was expected")
}
defer func() {
if dom != nodom {
dom.Destroy()
dom.Free()
}
}()
// Check that the internal context entry was added, and that there only is
// one.
goCallbackLock.Lock()
if len(goCallbacks) != 1 {
t.Error("goCallbacks should hold one entry")
}
goCallbackLock.Unlock()
// Deregister the event
if ret := conn.DomainEventDeregister(callbackId); ret < 0 {
t.Fatal("Event deregistration failed")
}
callbackId = -1 // Don't deregister twice
// Check that the internal context entries was removed
goCallbackLock.Lock()
if len(goCallbacks) > 0 {
t.Error("goCallbacks entry wasn't removed")
}
goCallbackLock.Unlock()
}