1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
import unittest
import libvirt
class TestLibvirtStorage(unittest.TestCase):
def setUp(self):
self.conn = libvirt.open("test:///default")
self.pool = self.conn.storagePoolLookupByName("default-pool")
def tearDown(self):
self.pool = None
self.conn = None
def testAttr(self):
self.assertEqual(self.pool.name(), "default-pool")
def testVol(self):
volxml = '''<volume type="file">
<name>raw.img</name>
<allocation unit="M">10</allocation>
<capacity unit="M">1000</capacity>
</volume>'''
vol = self.pool.createXML(volxml)
|