VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/tests/smoketests/tdExoticOrAncient1.py@ 103068

Last change on this file since 103068 was 98651, checked in by vboxsync, 2 years ago

ValKit: pylint 2.16.2: checks for file

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# $Id: tdExoticOrAncient1.py 98651 2023-02-20 13:10:54Z vboxsync $
4
5"""
6VirtualBox Validation Kit - Exotic and/or ancient OSes #1.
7"""
8
9__copyright__ = \
10"""
11Copyright (C) 2010-2023 Oracle and/or its affiliates.
12
13This file is part of VirtualBox base platform packages, as
14available from https://www.virtualbox.org.
15
16This program is free software; you can redistribute it and/or
17modify it under the terms of the GNU General Public License
18as published by the Free Software Foundation, in version 3 of the
19License.
20
21This program is distributed in the hope that it will be useful, but
22WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24General Public License for more details.
25
26You should have received a copy of the GNU General Public License
27along with this program; if not, see <https://www.gnu.org/licenses>.
28
29The contents of this file may alternatively be used under the terms
30of the Common Development and Distribution License Version 1.0
31(CDDL), a copy of it is provided in the "COPYING.CDDL" file included
32in the VirtualBox distribution, in which case the provisions of the
33CDDL are applicable instead of those of the GPL.
34
35You may elect to license modified versions of this file under the
36terms and conditions of either the GPL or the CDDL or both.
37
38SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
39"""
40__version__ = "$Revision: 98651 $"
41
42
43# Standard Python imports.
44import os;
45import sys;
46
47# Only the main script needs to modify the path.
48try: __file__ # pylint: disable=used-before-assignment
49except: __file__ = sys.argv[0];
50g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))));
51sys.path.append(g_ksValidationKitDir);
52
53# Validation Kit imports.
54from testdriver import reporter;
55from testdriver import vbox;
56
57
58class tdExoticOrAncient1(vbox.TestDriver):
59 """
60 VBox exotic and/or ancient OSes #1.
61 """
62
63 def __init__(self):
64 vbox.TestDriver.__init__(self);
65 self.asRsrcs = None;
66 self.oTestVmSet = self.oTestVmManager.selectSet( self.oTestVmManager.kfGrpAncient
67 | self.oTestVmManager.kfGrpExotic);
68
69 #
70 # Overridden methods.
71 #
72 def showUsage(self):
73 rc = vbox.TestDriver.showUsage(self);
74 return rc;
75
76 def parseOption(self, asArgs, iArg):
77 return vbox.TestDriver.parseOption(self, asArgs, iArg);
78
79 def actionVerify(self):
80 if self.sVBoxValidationKitIso is None or not os.path.isfile(self.sVBoxValidationKitIso):
81 reporter.error('Cannot find the VBoxValidationKit.iso! (%s)'
82 'Please unzip a Validation Kit build in the current directory or in some parent one.'
83 % (self.sVBoxValidationKitIso,) );
84 return False;
85 return vbox.TestDriver.actionVerify(self);
86
87 def actionConfig(self):
88 # Make sure vboxapi has been imported so we can use the constants.
89 if not self.importVBoxApi():
90 return False;
91
92 assert self.sVBoxValidationKitIso is not None;
93 return self.oTestVmSet.actionConfig(self, sDvdImage = self.sVBoxValidationKitIso);
94
95 def actionExecute(self):
96 """
97 Execute the testcase.
98 """
99 return self.oTestVmSet.actionExecute(self, self.testOneVmConfig)
100
101
102 #
103 # Test execution helpers.
104 #
105
106 def testOneVmConfig(self, oVM, oTestVm):
107 """
108 Runs the specified VM thru test #1.
109 """
110
111 # Simple test.
112 self.logVmInfo(oVM);
113 if oTestVm.fGrouping & self.oTestVmManager.kfGrpNoTxs:
114 sResult = self.runVmAndMonitorComRawFile(oTestVm.sVmName, oTestVm.sCom1RawFile);
115 ## @todo sResult = self.runVmAndMonitorComRawFile(oTestVm.sVmName, oTestVm.getCom1RawFile());
116 return sResult == 'PASSED';
117 oSession, _ = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, fCdWait = True);
118 if oSession is not None:
119 return self.terminateVmBySession(oSession);
120 return False;
121
122if __name__ == '__main__':
123 sys.exit(tdExoticOrAncient1().main(sys.argv));
124
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette