VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py@ 89441

Last change on this file since 89441 was 89317, checked in by vboxsync, 4 years ago

Audio/ValKit: Renamed AudioTest binary to vkat (Validation Kit Audio Test), to make it more clear what is meant when referring to it. bugref:10008

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: tdAudioTest.py 89317 2021-05-27 12:41:23Z vboxsync $
3
4"""
5AudioTest test driver which invokes the AudioTest (VKAT) binary to
6perform the actual audio tests.
7
8The generated test set archive on the guest will be downloaded by TXS
9to the host for later audio comparison / verification.
10"""
11
12__copyright__ = \
13"""
14Copyright (C) 2021 Oracle Corporation
15
16This file is part of VirtualBox Open Source Edition (OSE), as
17available from http://www.virtualbox.org. This file is free software;
18you can redistribute it and/or modify it under the terms of the GNU
19General Public License (GPL) as published by the Free Software
20Foundation, in version 2 as it comes in the "COPYING" file of the
21VirtualBox OSE distribution. VirtualBox OSE is distributed in the
22hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
23
24The contents of this file may alternatively be used under the terms
25of the Common Development and Distribution License Version 1.0
26(CDDL) only, as it comes in the "COPYING.CDDL" file of the
27VirtualBox OSE distribution, in which case the provisions of the
28CDDL are applicable instead of those of the GPL.
29
30You may elect to license modified versions of this file under the
31terms and conditions of either the GPL or the CDDL or both.
32"""
33__version__ = "$Revision: 89317 $"
34
35# Standard Python imports.
36import os
37import sys
38import re
39import subprocess
40import time
41import uuid
42
43# Validation Kit imports.
44from testdriver import reporter
45from testdriver import base
46from testdriver import vbox
47from testdriver import vboxcon
48from testdriver import vboxtestvms
49
50# pylint: disable=unnecessary-semicolon
51
52class tdAudioTest(vbox.TestDriver):
53
54 def __init__(self):
55 vbox.TestDriver.__init__(self);
56
57 def showUsage(self):
58 return vbox.TestDriver.showUsage(self);
59
60 def actionConfig(self):
61 return True
62
63 def actionExecute(self):
64 if self.sVMname is None:
65 return self.oTestVmSet.actionExecute(self, self.testOneVmConfig);
66 return self.actionExecuteOnRunnigVM();
67
68 def testOneVmConfig(self, oVM, oTestVm):
69
70 fRc = False;
71
72 self.logVmInfo(oVM);
73
74 fSkip = False;
75 if oTestVm.isWindows() \
76 and oTestVm.sKind in ('WindowsNT4', 'Windows2000'): # Too old for DirectSound and WASAPI backends.
77 fSkip = True;
78 elif oTestVm.isLinux():
79 pass;
80 else: # Implement others first.
81 fSkip = True;
82
83 if not fSkip:
84 reporter.testStart('Waiting for TXS');
85 sPathAutoTestExe = '${CDROM}/vboxvalidationkit/${OS/ARCH}/vkat${EXESUFF}';
86 oSession, oTxsSession = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName,
87 fCdWait = True,
88 cMsTimeout = 3 * 60 * 1000,
89 sFileCdWait = self.sFileCdWait);
90 reporter.testDone();
91 if oSession is not None and oTxsSession is not None:
92 self.addTask(oTxsSession);
93
94 sPathTemp = self.getGuestTempDir(oTestVm);
95 sPathAudioOut = oTestVm.pathJoin(sPathTemp, 'vkat-out');
96 sPathAudioTemp = oTestVm.pathJoin(sPathTemp, 'vkat-temp');
97 reporter.log("Audio test temp path is '%s'" % (sPathAudioOut));
98 reporter.log("Audio test output path is '%s'" % (sPathAudioTemp));
99 sTag = uuid.uuid4();
100 reporter.log("Audio test tag is %s'" % (sTag));
101
102 reporter.testStart('Running vkat (Validation Kit Audio Test)');
103 fRc = self.txsRunTest(oTxsSession, 'vkat', 5 * 60 * 1000,
104 self.getGuestSystemShell(oTestVm),
105 (self.getGuestSystemShell(oTestVm),
106 sPathAutoTestExe, '-vvv', 'test', '--tag ' + sTag,
107 '--tempdir ' + sPathAudioTemp, '--outdir ' + sPathAudioOut));
108 reporter.testDone()
109
110 if fRc:
111 sFileAudioTestArchive = oTestVm.pathJoin(sPathTemp, 'vkat-%s.tar.gz' % (sTag));
112 fRc = self.txsDownloadFiles(oSession, oTxsSession,
113 [( sFileAudioTestArchive ), ], fIgnoreErrors = False);
114 if fRc:
115 ## @todo Add "AudioTest verify" here.
116 pass;
117
118 if oSession is not None:
119 self.removeTask(oTxsSession);
120 self.terminateVmBySession(oSession);
121
122 return fRc;
123
124 reporter.log('Audio testing skipped, not implemented/available for that OS yet.');
125 return True;
126
127 #
128 # Test execution helpers.
129 #
130 def testOneCfg(self, oVM, oTestVm):
131 """
132 Runs the specified VM thru the tests.
133
134 Returns a success indicator on the general test execution. This is not
135 the actual test result.
136 """
137
138 self.logVmInfo(oVM);
139
140 fRc = True;
141 oSession, oTxsSession = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, fCdWait = False);
142 reporter.log("TxsSession: %s" % (oTxsSession,));
143 if oSession is not None:
144 self.addTask(oTxsSession);
145
146 fRc, oTxsSession = self.aoSubTstDrvs[0].testIt(oTestVm, oSession, oTxsSession);
147
148 # Cleanup.
149 self.removeTask(oTxsSession);
150 if not self.aoSubTstDrvs[0].oDebug.fNoExit:
151 self.terminateVmBySession(oSession);
152 else:
153 fRc = False;
154 return fRc;
155
156 def onExit(self, iRc):
157 if self.aoSubTstDrvs[0].oDebug.fNoExit:
158 return True
159 return vbox.TestDriver.onExit(self, iRc);
160
161if __name__ == '__main__':
162 sys.exit(tdAudioTest().main(sys.argv))
Note: See TracBrowser for help on using the repository browser.

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