mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-06 02:30:56 +00:00
167 lines
6.3 KiB
Python
167 lines
6.3 KiB
Python
#!/usr/bin/env python
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
"""firefox_media_tests_buildbot.py
|
|
|
|
Author: Maja Frydrychowicz
|
|
"""
|
|
import copy
|
|
import glob
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(1, os.path.dirname(sys.path[0]))
|
|
|
|
from mozharness.base.log import ERROR, DEBUG, INFO
|
|
from mozharness.base.script import PreScriptAction, PostScriptAction
|
|
from mozharness.mozilla.blob_upload import (
|
|
BlobUploadMixin,
|
|
blobupload_config_options
|
|
)
|
|
from mozharness.mozilla.buildbot import (
|
|
TBPL_SUCCESS, TBPL_WARNING, TBPL_FAILURE
|
|
)
|
|
from mozharness.mozilla.testing.firefox_media_tests import (
|
|
FirefoxMediaTestsBase, BUSTED, TESTFAILED, UNKNOWN, EXCEPTION, SUCCESS
|
|
)
|
|
|
|
buildbot_media_test_options = [
|
|
[["--suite"],
|
|
{"action": "store",
|
|
"dest": "test_suite",
|
|
"default": "media-tests",
|
|
"help": "suite name",
|
|
}],
|
|
]
|
|
|
|
|
|
class FirefoxMediaTestsBuildbot(FirefoxMediaTestsBase, BlobUploadMixin):
|
|
|
|
def __init__(self):
|
|
config_options = copy.deepcopy(blobupload_config_options)
|
|
super(FirefoxMediaTestsBuildbot, self).__init__(
|
|
config_options=config_options + buildbot_media_test_options,
|
|
all_actions=['clobber',
|
|
'read-buildbot-config',
|
|
'checkout',
|
|
'download-and-extract',
|
|
'create-virtualenv',
|
|
'install',
|
|
'run-media-tests',
|
|
],
|
|
)
|
|
c = self.config
|
|
self.installer_url = c.get('installer_url')
|
|
self.installer_path = c.get('installer_path')
|
|
self.binary_path = c.get('binary_path')
|
|
self.test_packages_url = c.get('test_packages_url')
|
|
|
|
@PreScriptAction('create-virtualenv')
|
|
def _pre_create_virtualenv(self, action):
|
|
dirs = self.query_abs_dirs()
|
|
requirements = os.path.join(dirs['abs_test_install_dir'],
|
|
'config',
|
|
'marionette_requirements.txt')
|
|
if os.access(requirements, os.F_OK):
|
|
self.register_virtualenv_module(requirements=[requirements],
|
|
two_pass=True)
|
|
super(FirefoxMediaTestsBuildbot, self)._pre_create_virtualenv(action)
|
|
|
|
def query_abs_dirs(self):
|
|
if self.abs_dirs:
|
|
return self.abs_dirs
|
|
dirs = super(FirefoxMediaTestsBuildbot, self).query_abs_dirs()
|
|
dirs['abs_blob_upload_dir'] = os.path.join(dirs['abs_work_dir'],
|
|
'blobber_upload_dir')
|
|
dirs['abs_test_install_dir'] = os.path.join(dirs['abs_work_dir'],
|
|
'tests')
|
|
self.abs_dirs = dirs
|
|
return self.abs_dirs
|
|
|
|
def _query_cmd(self):
|
|
""" Determine how to call firefox-media-tests """
|
|
cmd = super(FirefoxMediaTestsBuildbot, self)._query_cmd()
|
|
# configure logging
|
|
dirs = self.query_abs_dirs()
|
|
blob_upload_dir = dirs.get('abs_blob_upload_dir')
|
|
cmd += ['--gecko-log', os.path.join(blob_upload_dir,
|
|
'gecko.log')]
|
|
cmd += ['--log-html', os.path.join(blob_upload_dir,
|
|
'media_tests.html')]
|
|
cmd += ['--log-mach', os.path.join(blob_upload_dir,
|
|
'media_tests_mach.log')]
|
|
|
|
test_suite = self.config.get('test_suite')
|
|
test_manifest = None if test_suite != 'media-youtube-tests' else \
|
|
os.path.join(dirs['firefox_media_dir'],
|
|
'firefox_media_tests',
|
|
'playback', 'youtube', 'manifest.ini')
|
|
config_fmt_args = {
|
|
'test_manifest': test_manifest,
|
|
}
|
|
|
|
if test_suite not in self.config["suite_definitions"]:
|
|
self.fatal("%s is not defined in the config!" % test_suite)
|
|
for s in self.config["suite_definitions"][test_suite]["options"]:
|
|
cmd.append(s % config_fmt_args)
|
|
|
|
return cmd
|
|
|
|
def run_media_tests(self):
|
|
status = super(FirefoxMediaTestsBuildbot, self).run_media_tests()
|
|
if status == SUCCESS:
|
|
tbpl_status = TBPL_SUCCESS
|
|
else:
|
|
tbpl_status = TBPL_FAILURE
|
|
if status == TESTFAILED:
|
|
tbpl_status = TBPL_WARNING
|
|
self.buildbot_status(tbpl_status)
|
|
|
|
@PostScriptAction('run-media-tests')
|
|
def _collect_uploads(self, action, success=None):
|
|
""" Copy extra (log) files to blob upload dir. """
|
|
dirs = self.query_abs_dirs()
|
|
log_dir = dirs.get('abs_log_dir')
|
|
blob_upload_dir = dirs.get('abs_blob_upload_dir')
|
|
if not log_dir or not blob_upload_dir:
|
|
return
|
|
self.mkdir_p(blob_upload_dir)
|
|
# Move firefox-media-test screenshots into log_dir
|
|
screenshots_dir = os.path.join(dirs['base_work_dir'],
|
|
'screenshots')
|
|
log_screenshots_dir = os.path.join(log_dir, 'screenshots')
|
|
if os.access(log_screenshots_dir, os.F_OK):
|
|
self.rmtree(log_screenshots_dir)
|
|
if os.access(screenshots_dir, os.F_OK):
|
|
self.move(screenshots_dir, log_screenshots_dir)
|
|
|
|
# logs to upload: broadest level (info), error, screenshots
|
|
uploads = glob.glob(os.path.join(log_screenshots_dir, '*'))
|
|
log_files = self.log_obj.log_files
|
|
log_level = self.log_obj.log_level
|
|
|
|
def append_path(filename, dir=log_dir):
|
|
if filename:
|
|
uploads.append(os.path.join(dir, filename))
|
|
|
|
append_path(log_files.get(ERROR))
|
|
# never upload debug logs
|
|
if log_level == DEBUG:
|
|
append_path(log_files.get(INFO))
|
|
else:
|
|
append_path(log_files.get(log_level))
|
|
# in case of SimpleFileLogger
|
|
append_path(log_files.get('default'))
|
|
for f in uploads:
|
|
if os.access(f, os.F_OK):
|
|
dest = os.path.join(blob_upload_dir, os.path.basename(f))
|
|
self.copyfile(f, dest)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
media_test = FirefoxMediaTestsBuildbot()
|
|
media_test.run_and_exit()
|