Add a test that allows not providing a parent in the input XML, but still
being able to create finding a VPORT capable NPIV HBA.
Signed-off-by: John Ferlan <jferlan(a)redhat.com>
---
tests/fchosttest.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/tests/fchosttest.c b/tests/fchosttest.c
index 715571e..15cda75 100644
--- a/tests/fchosttest.c
+++ b/tests/fchosttest.c
@@ -44,6 +44,15 @@ static const char test7_xml[] =
" </capability>"
"</device>";
+/* virNodeDeviceCreateXML without "<parent>" to find the vport capable
HBA */
+static const char test8_xml[] =
+"<device>"
+" <capability type='scsi_host'>"
+" <capability type='fc_host'>"
+" </capability>"
+" </capability>"
+"</device>";
+
/* Test virIsVHBACapable */
static int
test1(const void *data ATTRIBUTE_UNUSED)
@@ -270,6 +279,9 @@ mymain(void)
if (virTestRun("manageVHBAByNodeDevice-by-parent", manageVHBAByNodeDevice,
test7_xml) < 0)
ret = -1;
+ if (virTestRun("manageVHBAByNodeDevice-no-parent", manageVHBAByNodeDevice,
+ test8_xml) < 0)
+ ret = -1;
cleanup:
VIR_FREE(fchost_prefix);
--
2.7.4