1 | # -*- coding: utf-8 -*-
|
---|
2 | # $Id: tdAudioTest.py 89317 2021-05-27 12:41:23Z vboxsync $
|
---|
3 |
|
---|
4 | """
|
---|
5 | AudioTest test driver which invokes the AudioTest (VKAT) binary to
|
---|
6 | perform the actual audio tests.
|
---|
7 |
|
---|
8 | The generated test set archive on the guest will be downloaded by TXS
|
---|
9 | to the host for later audio comparison / verification.
|
---|
10 | """
|
---|
11 |
|
---|
12 | __copyright__ = \
|
---|
13 | """
|
---|
14 | Copyright (C) 2021 Oracle Corporation
|
---|
15 |
|
---|
16 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
17 | available from http://www.virtualbox.org. This file is free software;
|
---|
18 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
19 | General Public License (GPL) as published by the Free Software
|
---|
20 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
21 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
22 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
23 |
|
---|
24 | The contents of this file may alternatively be used under the terms
|
---|
25 | of the Common Development and Distribution License Version 1.0
|
---|
26 | (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
27 | VirtualBox OSE distribution, in which case the provisions of the
|
---|
28 | CDDL are applicable instead of those of the GPL.
|
---|
29 |
|
---|
30 | You may elect to license modified versions of this file under the
|
---|
31 | terms and conditions of either the GPL or the CDDL or both.
|
---|
32 | """
|
---|
33 | __version__ = "$Revision: 89317 $"
|
---|
34 |
|
---|
35 | # Standard Python imports.
|
---|
36 | import os
|
---|
37 | import sys
|
---|
38 | import re
|
---|
39 | import subprocess
|
---|
40 | import time
|
---|
41 | import uuid
|
---|
42 |
|
---|
43 | # Validation Kit imports.
|
---|
44 | from testdriver import reporter
|
---|
45 | from testdriver import base
|
---|
46 | from testdriver import vbox
|
---|
47 | from testdriver import vboxcon
|
---|
48 | from testdriver import vboxtestvms
|
---|
49 |
|
---|
50 | # pylint: disable=unnecessary-semicolon
|
---|
51 |
|
---|
52 | class 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 |
|
---|
161 | if __name__ == '__main__':
|
---|
162 | sys.exit(tdAudioTest().main(sys.argv))
|
---|