domainsnapshotxml2xmltest: Add test case for empty driver element

Commit 5a66c667ff fixed a NULL dereference
if the disk driver element was empty. Add a test for this case.
This commit is contained in:
Peter Krempa 2013-12-03 12:04:43 +01:00
parent a686115cba
commit 2cb2abc04d
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<domainsnapshot>
<name>asdf</name>
<description>adsf</description>
<disks>
<disk name='vda' snapshot='external'>
<source file='/tmp/foo'/>
<driver/>
</disk>
</disks>
</domainsnapshot>

View File

@ -0,0 +1,9 @@
<domainsnapshot>
<name>asdf</name>
<description>adsf</description>
<disks>
<disk name='vda' snapshot='external'>
<source file='/tmp/foo'/>
</disk>
</disks>
</domainsnapshot>

View File

@ -220,6 +220,7 @@ mymain(void)
DO_TEST_INOUT("external_vm", NULL, false, false);
DO_TEST_INOUT("noparent", "9d37b878-a7cc-9f9a-b78f-49b3abad25a8", false, false);
DO_TEST_INOUT("disk_snapshot", NULL, false, false);
DO_TEST_INOUT("disk_driver_name_null", NULL, false, false);
DO_TEST_IN("name_and_description", NULL);
DO_TEST_IN("description_only", NULL);