#!/usr/bin/env python # -*- coding: utf-8 -*- # $Id: tdAppliance1.py $ """ VirtualBox Validation Kit - IAppliance Test #1 """ __copyright__ = \ """ Copyright (C) 2010-2023 Oracle and/or its affiliates. This file is part of VirtualBox base platform packages, as available from https://www.virtualbox.org. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, in version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, see . The contents of this file may alternatively be used under the terms of the Common Development and Distribution License Version 1.0 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included in the VirtualBox distribution, in which case the provisions of the CDDL are applicable instead of those of the GPL. You may elect to license modified versions of this file under the terms and conditions of either the GPL or the CDDL or both. SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 """ __version__ = "$Revision: 155244 $" # Standard Python imports. import os import sys import tarfile # Only the main script needs to modify the path. try: __file__ except: __file__ = sys.argv[0] g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) sys.path.append(g_ksValidationKitDir) # Validation Kit imports. from testdriver import base; from testdriver import reporter; from testdriver import vboxwrappers; class SubTstDrvAppliance1(base.SubTestDriverBase): """ Sub-test driver for IAppliance Test #1. """ def __init__(self, oTstDrv): base.SubTestDriverBase.__init__(self, oTstDrv, 'appliance', 'Applicance'); def testIt(self): """ Execute the sub-testcase. """ fRc = True; # Import a set of simple OVAs. # Note! Manifests generated by ovftool 4.0.0 does not include the ovf, while the ones b 4.1.0 does. for sOva in ( # t1 is a plain VM without any disks, ovftool 4.0 export from fusion 'tdAppliance1-t1.ova', # t2 is a plain VM with one disk. Both 4.0 and 4.1.0 exports. 'tdAppliance1-t2.ova', 'tdAppliance1-t2-ovftool-4.1.0.ova', # t3 is a VM with one gzipped disk and selecting SHA256 on the ovftool cmdline (--compress=9 --shaAlgorithm=sha256). 'tdAppliance1-t3.ova', 'tdAppliance1-t3-ovftool-4.1.0.ova', # t4 is a VM with with two gzipped disk, SHA256 and a (self) signed manifest (--privateKey=./tdAppliance1-t4.pem). 'tdAppliance1-t4.ova', 'tdAppliance1-t4-ovftool-4.1.0.ova', # t5 is a VM with with one gzipped disk, SHA1 and a manifest signed by a valid (2016) DigiCert code signing cert. 'tdAppliance1-t5.ova', 'tdAppliance1-t5-ovftool-4.1.0.ova', # t6 is a VM with with one gzipped disk, SHA1 and a manifest signed by a certificate issued by the t4 certificate, # thus it should be impossible to establish a trusted path to a root CA. 'tdAppliance1-t6.ova', 'tdAppliance1-t6-ovftool-4.1.0.ova', # t7 is based on tdAppliance1-t2-ovftool-4.1.0.ova and has modified to have an invalid InstanceID as well as an # extra readme file. It was tarred up using bsdtar 2.4.12 on windows, so it uses a slightly different tar format and # have different file attributes. 'tdAppliance1-t7-bad-instance.ova', ): reporter.testStart(sOva); try: fRc = self.testImportOva(os.path.join(g_ksValidationKitDir, 'tests', 'api', sOva)) and fRc; fRc = self.testImportOvaAsOvf(os.path.join(g_ksValidationKitDir, 'tests', 'api', sOva)) and fRc; except: reporter.errorXcpt(); fRc = False; fRc = reporter.testDone() and fRc; ## @todo more stuff return fRc; # # Test execution helpers. # def testImportOva(self, sOva): """ xxx """ oVirtualBox = self.oTstDrv.oVBoxMgr.getVirtualBox(); # # Import it as OVA. # try: oAppliance = oVirtualBox.createAppliance(); except: return reporter.errorXcpt('IVirtualBox::createAppliance failed'); try: oProgress = vboxwrappers.ProgressWrapper(oAppliance.read(sOva), self.oTstDrv.oVBoxMgr, self.oTstDrv, 'read "%s"' % (sOva,)); except: return reporter.errorXcpt('IAppliance::read("%s") failed' % (sOva,)); oProgress.wait(); if oProgress.logResult() is False: return False; try: oAppliance.interpret(); except: return reporter.errorXcpt('IAppliance::interpret() failed on "%s"' % (sOva,)); # try: oProgress = vboxwrappers.ProgressWrapper(oAppliance.importMachines([]), self.oTstDrv.oVBoxMgr, self.oTstDrv, 'importMachines "%s"' % (sOva,)); except: return reporter.errorXcpt('IAppliance::importMachines failed on "%s"' % (sOva,)); oProgress.wait(); if oProgress.logResult() is False: return False; # # Export the # ## @todo do more with this OVA. Like untaring it and loading it as an OVF. Export it and import it again. return True; def testImportOvaAsOvf(self, sOva): """ Unpacks the OVA into a subdirectory in the scratch area and imports it as an OVF. """ oVirtualBox = self.oTstDrv.oVBoxMgr.getVirtualBox(); sTmpDir = os.path.join(self.oTstDrv.sScratchPath, os.path.split(sOva)[1] + '-ovf'); sOvf = os.path.join(sTmpDir, os.path.splitext(os.path.split(sOva)[1])[0] + '.ovf'); # # Unpack # try: os.mkdir(sTmpDir, 0o755); oTarFile = tarfile.open(sOva, 'r:*'); # No 'with' support in 2.6. pylint: disable=consider-using-with oTarFile.extractall(sTmpDir); oTarFile.close(); except: return reporter.errorXcpt('Unpacking "%s" to "%s" for OVF style importing failed' % (sOvf, sTmpDir,)); # # Import. # try: oAppliance2 = oVirtualBox.createAppliance(); except: return reporter.errorXcpt('IVirtualBox::createAppliance failed (#2)'); try: oProgress = vboxwrappers.ProgressWrapper(oAppliance2.read(sOvf), self.oTstDrv.oVBoxMgr, self.oTstDrv, 'read "%s"' % (sOvf,)); except: return reporter.errorXcpt('IAppliance::read("%s") failed' % (sOvf,)); oProgress.wait(); if oProgress.logResult() is False: return False; try: oAppliance2.interpret(); except: return reporter.errorXcpt('IAppliance::interpret() failed on "%s"' % (sOvf,)); try: oProgress = vboxwrappers.ProgressWrapper(oAppliance2.importMachines([]), self.oTstDrv.oVBoxMgr, self.oTstDrv, 'importMachines "%s"' % (sOvf,)); except: return reporter.errorXcpt('IAppliance::importMachines failed on "%s"' % (sOvf,)); oProgress.wait(); if oProgress.logResult() is False: return False; return True; if __name__ == '__main__': sys.path.append(os.path.dirname(os.path.abspath(__file__))) from tests.api.tdApi1 import tdApi1; sys.exit(tdApi1([SubTstDrvAppliance1]).main(sys.argv));