[PATCH python 2/2] event-test: Add storage pool lifecycle event tests

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 examples/event-test.py | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/examples/event-test.py b/examples/event-test.py
index f96c917..241369b 100755
--- a/examples/event-test.py
+++ b/examples/event-test.py
@@ -565,6 +565,23 @@ def myNetworkEventLifecycleCallback(conn, net, event, detail, opaque):
                                                                  netDetailToString(event, detail)))
 
 ##########################################################################
+# Storage pool events
+##########################################################################
+def storageEventToString(event):
+    storageEventStrings = ( "Defined",
+                            "Undefined",
+                            "Started",
+                            "Stopped",
+                            "Refreshed",
+    )
+    return storageEventStrings[event]
+
+def myStoragePoolEventLifecycleCallback(conn, pool, event, detail, opaque):
+    print("myStoragePoolEventLifecycleCallback: Storage pool %s %s %d" % (pool.name(),
+                                                                          storageEventToString(event),
+                                                                          detail))
+
+##########################################################################
 # Set up and run the program
 ##########################################################################
 
@@ -655,6 +672,7 @@ def main():
     vc.domainEventRegisterAny(None, libvirt.VIR_DOMAIN_EVENT_ID_DEVICE_REMOVAL_FAILED, myDomainEventDeviceRemovalFailedCallback, None)
 
     vc.networkEventRegisterAny(None, libvirt.VIR_NETWORK_EVENT_ID_LIFECYCLE, myNetworkEventLifecycleCallback, None)
+    vc.storagePoolEventRegisterAny(None, libvirt.VIR_STORAGE_POOL_EVENT_ID_LIFECYCLE, myStoragePoolEventLifecycleCallback, None)
 
     vc.setKeepAlive(5, 3)
 
-- 
2.5.5

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list



[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]