2013-11-27 11:19:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-10 07:14:57 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
'''
|
2013-08-11 05:50:47 +00:00
|
|
|
This script is used to test Salt from a Jenkins server, specifically
|
|
|
|
jenkins.saltstack.com.
|
2013-08-10 07:14:57 +00:00
|
|
|
|
2013-08-11 05:50:47 +00:00
|
|
|
This script is intended to be shell-centric!!
|
2013-08-10 07:14:57 +00:00
|
|
|
'''
|
|
|
|
|
2013-08-10 07:23:32 +00:00
|
|
|
# Import python libs
|
2014-02-03 11:07:11 +00:00
|
|
|
from __future__ import print_function
|
2013-08-13 04:54:47 +00:00
|
|
|
import os
|
|
|
|
import re
|
2013-08-10 07:23:32 +00:00
|
|
|
import sys
|
2014-04-06 14:50:39 +00:00
|
|
|
import json
|
2013-09-06 16:35:30 +00:00
|
|
|
import time
|
2013-08-10 07:14:57 +00:00
|
|
|
import random
|
2013-09-08 15:32:35 +00:00
|
|
|
import shutil
|
2013-09-06 16:35:30 +00:00
|
|
|
import hashlib
|
2013-08-10 07:14:57 +00:00
|
|
|
import optparse
|
2013-12-09 23:06:17 +00:00
|
|
|
import subprocess
|
2013-08-10 07:14:57 +00:00
|
|
|
|
2014-01-10 17:24:55 +00:00
|
|
|
# Import Salt libs
|
2013-08-13 04:54:47 +00:00
|
|
|
try:
|
2013-12-09 23:06:17 +00:00
|
|
|
from salt.utils.nb_popen import NonBlockingPopen
|
2013-08-13 04:54:47 +00:00
|
|
|
except ImportError:
|
2013-12-09 23:06:17 +00:00
|
|
|
# Salt not installed, or nb_popen was not yet shipped with it
|
2013-09-06 11:14:27 +00:00
|
|
|
SALT_LIB = os.path.abspath(
|
2013-08-13 04:54:47 +00:00
|
|
|
os.path.dirname(os.path.dirname(__file__))
|
|
|
|
)
|
2013-09-06 11:14:27 +00:00
|
|
|
if SALT_LIB not in sys.path:
|
|
|
|
sys.path.insert(0, SALT_LIB)
|
2013-08-13 04:54:47 +00:00
|
|
|
try:
|
|
|
|
# Let's try using the current checked out code
|
2013-12-09 23:06:17 +00:00
|
|
|
from salt.utils.nb_popen import NonBlockingPopen
|
2013-08-13 04:54:47 +00:00
|
|
|
except ImportError:
|
|
|
|
# Still an ImportError??? Let's use some "brute-force"
|
|
|
|
sys.path.insert(
|
|
|
|
0,
|
2013-09-06 11:14:27 +00:00
|
|
|
os.path.join(SALT_LIB, 'salt', 'utils')
|
2013-08-13 04:54:47 +00:00
|
|
|
)
|
2013-12-09 23:06:17 +00:00
|
|
|
from nb_popen import NonBlockingPopen
|
2013-08-13 04:54:47 +00:00
|
|
|
|
2014-01-10 17:24:55 +00:00
|
|
|
# Import 3rd-party libs
|
|
|
|
try:
|
|
|
|
import github
|
|
|
|
HAS_GITHUB = True
|
|
|
|
except ImportError:
|
|
|
|
HAS_GITHUB = False
|
2013-08-13 04:54:47 +00:00
|
|
|
|
2014-01-11 16:30:23 +00:00
|
|
|
SALT_GIT_URL = 'https://github.com/saltstack/salt.git'
|
|
|
|
|
2014-01-10 17:28:07 +00:00
|
|
|
|
2013-09-06 11:14:27 +00:00
|
|
|
def generate_vm_name(platform):
|
|
|
|
'''
|
|
|
|
Generate a random enough vm name
|
|
|
|
'''
|
2013-09-06 16:13:05 +00:00
|
|
|
if 'BUILD_NUMBER' in os.environ:
|
|
|
|
random_part = 'BUILD{0:0>6}'.format(os.environ.get('BUILD_NUMBER'))
|
|
|
|
else:
|
|
|
|
random_part = hashlib.md5(
|
|
|
|
str(random.randint(1, 100000000))).hexdigest()[:6]
|
|
|
|
|
|
|
|
return 'ZJENKINS-{0}-{1}'.format(platform, random_part)
|
2013-08-17 06:59:13 +00:00
|
|
|
|
2013-09-06 11:14:27 +00:00
|
|
|
|
2013-09-09 19:45:57 +00:00
|
|
|
def delete_vm(options):
|
2013-09-06 11:14:27 +00:00
|
|
|
'''
|
|
|
|
Stop a VM
|
|
|
|
'''
|
2013-09-09 19:45:57 +00:00
|
|
|
cmd = 'salt-cloud -d {0} -y'.format(options.delete_vm)
|
2013-08-17 06:59:13 +00:00
|
|
|
print('Running CMD: {0}'.format(cmd))
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
proc = NonBlockingPopen(
|
2013-08-17 06:59:13 +00:00
|
|
|
cmd,
|
|
|
|
shell=True,
|
2013-12-09 23:06:17 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
stream_stds=True
|
2013-08-17 06:59:13 +00:00
|
|
|
)
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.poll_and_read_until_finish()
|
|
|
|
proc.communicate()
|
2013-08-17 06:59:13 +00:00
|
|
|
|
|
|
|
|
2013-09-09 19:45:57 +00:00
|
|
|
def echo_parseable_environment(options):
|
2013-09-06 11:14:27 +00:00
|
|
|
'''
|
|
|
|
Echo NAME=VAL parseable output
|
|
|
|
'''
|
2014-01-10 17:28:07 +00:00
|
|
|
output = []
|
|
|
|
|
|
|
|
if options.platform:
|
|
|
|
name = generate_vm_name(options.platform)
|
|
|
|
output.extend([
|
|
|
|
'JENKINS_SALTCLOUD_VM_PLATFORM={0}'.format(options.platform),
|
2014-01-10 19:24:23 +00:00
|
|
|
'JENKINS_SALTCLOUD_VM_NAME={0}'.format(name)
|
2014-01-10 17:28:07 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
if options.provider:
|
|
|
|
output.append(
|
|
|
|
'JENKINS_SALTCLOUD_VM_PROVIDER={0}'.format(options.provider)
|
|
|
|
)
|
|
|
|
|
2014-01-10 18:29:01 +00:00
|
|
|
if options.pull_request:
|
2014-01-10 17:24:55 +00:00
|
|
|
# This is a Jenkins triggered Pull Request
|
|
|
|
# We need some more data about the Pull Request available to the
|
|
|
|
# environment
|
|
|
|
if not HAS_GITHUB:
|
|
|
|
print('# The script NEEDS the github python package installed')
|
|
|
|
sys.stdout.write('\n'.join(output))
|
|
|
|
sys.stdout.flush()
|
|
|
|
return
|
|
|
|
|
|
|
|
github_access_token_path = os.path.join(
|
|
|
|
os.environ['JENKINS_HOME'], '.github_token'
|
|
|
|
)
|
|
|
|
if not os.path.isfile(github_access_token_path):
|
|
|
|
print(
|
|
|
|
'# The github token file({0}) does not exit'.format(
|
|
|
|
github_access_token_path
|
|
|
|
)
|
|
|
|
)
|
|
|
|
sys.stdout.write('\n'.join(output))
|
|
|
|
sys.stdout.flush()
|
|
|
|
return
|
|
|
|
|
|
|
|
GITHUB = github.Github(open(github_access_token_path).read().strip())
|
|
|
|
REPO = GITHUB.get_repo('saltstack/salt')
|
|
|
|
try:
|
2014-01-10 18:29:01 +00:00
|
|
|
PR = REPO.get_pull(options.pull_request)
|
2014-01-10 17:24:55 +00:00
|
|
|
output.extend([
|
|
|
|
'SALT_PR_GIT_URL={0}'.format(PR.head.repo.clone_url),
|
|
|
|
'SALT_PR_GIT_COMMIT={0}'.format(PR.head.sha)
|
|
|
|
])
|
2014-01-10 21:30:26 +00:00
|
|
|
options.salt_url = PR.head.repo.clone_url
|
|
|
|
options.commit = PR.head.sha
|
2014-01-10 17:24:55 +00:00
|
|
|
except ValueError:
|
|
|
|
print('# Failed to get the PR id from the environment')
|
2014-01-10 19:37:22 +00:00
|
|
|
|
2014-01-10 21:30:26 +00:00
|
|
|
sys.stdout.write('\n\n{0}\n\n'.format('\n'.join(output)))
|
2013-09-06 11:14:27 +00:00
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
|
2013-09-09 19:45:57 +00:00
|
|
|
def download_unittest_reports(options):
|
2013-09-08 17:48:32 +00:00
|
|
|
print('Downloading remote unittest reports...')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2014-01-05 00:10:24 +00:00
|
|
|
workspace = options.workspace
|
|
|
|
xml_reports_path = os.path.join(workspace, 'xml-test-reports')
|
|
|
|
if os.path.isdir(xml_reports_path):
|
|
|
|
shutil.rmtree(xml_reports_path)
|
2013-09-08 15:32:35 +00:00
|
|
|
|
2014-01-05 00:10:24 +00:00
|
|
|
os.makedirs(xml_reports_path)
|
2013-09-08 15:32:35 +00:00
|
|
|
|
|
|
|
cmds = (
|
2013-09-09 20:52:58 +00:00
|
|
|
'salt {0} archive.tar zcvf /tmp/xml-test-reports.tar.gz \'*.xml\' cwd=/tmp/xml-unitests-output/',
|
|
|
|
'salt {0} cp.push /tmp/xml-test-reports.tar.gz',
|
2014-01-05 00:15:12 +00:00
|
|
|
'mv -f /var/cache/salt/master/minions/{0}/files/tmp/xml-test-reports.tar.gz {1} && '
|
|
|
|
'tar zxvf {1}/xml-test-reports.tar.gz -C {1}/xml-test-reports && '
|
2013-09-09 20:52:58 +00:00
|
|
|
'rm -f {1}/xml-test-reports.tar.gz'
|
2013-09-08 15:32:35 +00:00
|
|
|
)
|
|
|
|
|
2013-09-09 19:45:57 +00:00
|
|
|
vm_name = options.download_unittest_reports
|
2013-09-08 15:32:35 +00:00
|
|
|
for cmd in cmds:
|
2013-09-09 20:52:58 +00:00
|
|
|
cmd = cmd.format(vm_name, workspace)
|
2013-09-09 19:45:57 +00:00
|
|
|
print('Running CMD: {0}'.format(cmd))
|
2013-09-08 15:32:35 +00:00
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
proc = NonBlockingPopen(
|
2013-09-09 19:45:57 +00:00
|
|
|
cmd,
|
2013-09-08 15:32:35 +00:00
|
|
|
shell=True,
|
2013-12-09 23:06:17 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
stream_stds=True
|
2013-09-08 15:32:35 +00:00
|
|
|
)
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.poll_and_read_until_finish()
|
|
|
|
proc.communicate()
|
|
|
|
if proc.returncode != 0:
|
2013-09-08 15:32:35 +00:00
|
|
|
print(
|
2013-09-09 10:48:59 +00:00
|
|
|
'\nFailed to execute command. Exit code: {0}'.format(
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.returncode
|
2013-09-08 15:32:35 +00:00
|
|
|
)
|
|
|
|
)
|
2013-10-03 14:08:50 +00:00
|
|
|
time.sleep(0.25)
|
2013-09-08 15:32:35 +00:00
|
|
|
|
2013-09-08 17:18:21 +00:00
|
|
|
|
2013-09-09 19:45:57 +00:00
|
|
|
def download_coverage_report(options):
|
2013-09-08 17:48:32 +00:00
|
|
|
print('Downloading remote coverage report...')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-09-09 20:52:58 +00:00
|
|
|
workspace = options.workspace
|
2013-09-10 11:15:19 +00:00
|
|
|
vm_name = options.download_coverage_report
|
2013-09-09 20:52:58 +00:00
|
|
|
|
|
|
|
if os.path.isfile(os.path.join(workspace, 'coverage.xml')):
|
|
|
|
os.unlink(os.path.join(workspace, 'coverage.xml'))
|
2013-09-09 10:24:25 +00:00
|
|
|
|
2013-09-08 16:43:55 +00:00
|
|
|
cmds = (
|
2013-09-09 10:24:25 +00:00
|
|
|
'salt {0} archive.gzip /tmp/coverage.xml',
|
|
|
|
'salt {0} cp.push /tmp/coverage.xml.gz',
|
2013-09-09 20:52:58 +00:00
|
|
|
'gunzip /var/cache/salt/master/minions/{0}/files/tmp/coverage.xml.gz',
|
|
|
|
'mv /var/cache/salt/master/minions/{0}/files/tmp/coverage.xml {1}'
|
2013-09-08 16:43:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
for cmd in cmds:
|
2013-09-09 19:45:57 +00:00
|
|
|
cmd = cmd.format(vm_name, workspace)
|
2013-09-08 17:48:32 +00:00
|
|
|
print('Running CMD: {0}'.format(cmd))
|
2013-09-08 16:43:55 +00:00
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
proc = NonBlockingPopen(
|
2013-09-08 17:48:32 +00:00
|
|
|
cmd,
|
2013-09-08 16:43:55 +00:00
|
|
|
shell=True,
|
2013-12-09 23:06:17 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
stream_stds=True
|
2013-09-08 16:43:55 +00:00
|
|
|
)
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.poll_and_read_until_finish()
|
|
|
|
proc.communicate()
|
|
|
|
if proc.returncode != 0:
|
2013-09-08 16:43:55 +00:00
|
|
|
print(
|
2013-09-09 10:48:59 +00:00
|
|
|
'\nFailed to execute command. Exit code: {0}'.format(
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.returncode
|
2013-09-08 16:43:55 +00:00
|
|
|
)
|
|
|
|
)
|
2013-10-03 14:08:50 +00:00
|
|
|
time.sleep(0.25)
|
2013-09-08 16:43:55 +00:00
|
|
|
|
|
|
|
|
2013-10-03 11:52:05 +00:00
|
|
|
def download_remote_logs(options):
|
|
|
|
print('Downloading remote logs...')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
workspace = options.workspace
|
|
|
|
vm_name = options.download_remote_logs
|
|
|
|
|
|
|
|
for fname in ('salt-runtests.log', 'minion.log'):
|
|
|
|
if os.path.isfile(os.path.join(workspace, fname)):
|
|
|
|
os.unlink(os.path.join(workspace, fname))
|
|
|
|
|
|
|
|
cmds = (
|
|
|
|
'salt {0} archive.gzip /tmp/salt-runtests.log',
|
|
|
|
'salt {0} archive.gzip /var/log/salt/minion',
|
|
|
|
'salt {0} cp.push /tmp/salt-runtests.log.gz',
|
|
|
|
'salt {0} cp.push /var/log/salt/minion.gz',
|
|
|
|
'gunzip /var/cache/salt/master/minions/{0}/files/tmp/salt-runtests.log.gz',
|
|
|
|
'gunzip /var/cache/salt/master/minions/{0}/files/var/log/salt/minion.gz',
|
|
|
|
'mv /var/cache/salt/master/minions/{0}/files/tmp/salt-runtests.log {1}/salt-runtests.log',
|
|
|
|
'mv /var/cache/salt/master/minions/{0}/files/var/log/salt/minion {1}/minion.log'
|
|
|
|
)
|
|
|
|
|
|
|
|
for cmd in cmds:
|
|
|
|
cmd = cmd.format(vm_name, workspace)
|
|
|
|
print('Running CMD: {0}'.format(cmd))
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
proc = NonBlockingPopen(
|
2013-10-03 11:52:05 +00:00
|
|
|
cmd,
|
|
|
|
shell=True,
|
2013-12-09 23:06:17 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
stream_stds=True
|
2013-10-03 11:52:05 +00:00
|
|
|
)
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.poll_and_read_until_finish()
|
|
|
|
proc.communicate()
|
|
|
|
if proc.returncode != 0:
|
2013-10-03 11:52:05 +00:00
|
|
|
print(
|
|
|
|
'\nFailed to execute command. Exit code: {0}'.format(
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.returncode
|
2013-10-03 11:52:05 +00:00
|
|
|
)
|
|
|
|
)
|
2013-10-03 14:08:50 +00:00
|
|
|
time.sleep(0.25)
|
2013-10-03 11:52:05 +00:00
|
|
|
|
|
|
|
|
2013-09-06 11:14:27 +00:00
|
|
|
def run(opts):
|
2013-08-10 07:14:57 +00:00
|
|
|
'''
|
|
|
|
RUN!
|
|
|
|
'''
|
2013-09-06 11:14:27 +00:00
|
|
|
vm_name = os.environ.get(
|
2013-09-06 13:42:20 +00:00
|
|
|
'JENKINS_SALTCLOUD_VM_NAME',
|
2013-09-06 11:14:27 +00:00
|
|
|
generate_vm_name(opts.platform)
|
|
|
|
)
|
|
|
|
|
2013-09-10 11:21:41 +00:00
|
|
|
if opts.download_remote_reports:
|
|
|
|
opts.download_coverage_report = vm_name
|
|
|
|
opts.download_unittest_reports = vm_name
|
2013-09-10 11:15:39 +00:00
|
|
|
|
2013-09-06 11:14:27 +00:00
|
|
|
cmd = (
|
2014-01-03 17:16:27 +00:00
|
|
|
'salt-cloud -l debug'
|
|
|
|
' --script-args "-D -g {salt_url} -n git {commit}"'
|
|
|
|
' -p {provider}_{platform} {0}'.format(vm_name, **opts.__dict__)
|
2013-12-09 23:05:17 +00:00
|
|
|
)
|
|
|
|
print('Running CMD: {0}'.format(cmd))
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
proc = NonBlockingPopen(
|
2013-12-09 23:05:17 +00:00
|
|
|
cmd,
|
|
|
|
shell=True,
|
2013-12-09 23:06:17 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
stream_stds=True
|
2013-12-09 23:05:17 +00:00
|
|
|
)
|
2013-12-09 23:06:17 +00:00
|
|
|
proc.poll_and_read_until_finish()
|
|
|
|
proc.communicate()
|
2013-12-09 23:05:17 +00:00
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
retcode = proc.returncode
|
2013-12-09 23:05:17 +00:00
|
|
|
if retcode != 0:
|
|
|
|
print('Failed to bootstrap VM. Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2013-12-09 23:05:17 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
print('VM Bootstrapped. Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
print('Sleeping for 5 seconds to allow the minion to breathe a little')
|
|
|
|
sys.stdout.flush()
|
|
|
|
time.sleep(5)
|
|
|
|
|
2014-04-06 14:50:39 +00:00
|
|
|
if opts.commit is not None:
|
2014-04-06 18:10:56 +00:00
|
|
|
# Let's find out if the installed version matches the passed in pillar
|
2014-04-06 14:50:39 +00:00
|
|
|
# information
|
2014-04-08 13:50:03 +00:00
|
|
|
print('Grabbing bootstrapped minion version information ... ')
|
|
|
|
sys.stdout.flush()
|
|
|
|
proc = subprocess.Popen(
|
2014-04-06 22:41:58 +00:00
|
|
|
'salt -t 100 {vm_name} --out json test.version'.format(vm_name=vm_name),
|
2014-04-06 14:50:39 +00:00
|
|
|
shell=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
)
|
|
|
|
stdout, _ = proc.communicate()
|
|
|
|
|
|
|
|
retcode = proc.returncode
|
|
|
|
if retcode != 0:
|
|
|
|
print('Failed to get the bootstrapped minion version. Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 14:50:39 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
if not stdout:
|
|
|
|
print('Failed to get the bootstrapped minion version(no output). Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 14:50:39 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
version_info = json.loads(stdout.strip())
|
|
|
|
if not version_info[vm_name].endswith(opts.commit[:7]):
|
|
|
|
print('The boostrapped minion version commit does not match the desired commit:')
|
|
|
|
print(' {0!r} does not end with {1!r}'.format(version_info[vm_name], opts.commit[:7]))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 14:50:39 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
2014-04-06 18:10:56 +00:00
|
|
|
# Run tests here
|
|
|
|
cmd = (
|
|
|
|
'salt -t 1800 {vm_name} state.sls {prep_sls} pillar="{pillar}" '
|
|
|
|
'--no-color'.format(
|
|
|
|
prep_sls=opts.prep_sls,
|
|
|
|
pillar=opts.pillar.format(
|
|
|
|
commit=opts.commit,
|
|
|
|
salt_url=opts.salt_url
|
|
|
|
),
|
|
|
|
vm_name=vm_name,
|
|
|
|
commit=opts.commit
|
|
|
|
)
|
|
|
|
)
|
|
|
|
print('Running CMD: {0}'.format(cmd))
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2014-04-07 22:14:27 +00:00
|
|
|
proc = subprocess.Popen(
|
2014-04-06 18:10:56 +00:00
|
|
|
cmd,
|
|
|
|
shell=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
)
|
|
|
|
stdout, _ = proc.communicate()
|
2014-04-07 22:14:27 +00:00
|
|
|
|
|
|
|
if stdout:
|
|
|
|
print(stdout)
|
2014-04-07 20:16:36 +00:00
|
|
|
sys.stdout.flush()
|
2014-04-06 18:10:56 +00:00
|
|
|
|
|
|
|
retcode = proc.returncode
|
|
|
|
if retcode != 0:
|
|
|
|
print('Failed to execute the preparation SLS file. Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 18:10:56 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
2014-04-07 20:16:36 +00:00
|
|
|
if opts.salt_url is not None:
|
|
|
|
# Let's find out if the cloned repository if checked out from the
|
|
|
|
# desired repository
|
2014-04-08 13:50:03 +00:00
|
|
|
print('Grabbing the cloned repository remotes information ... ')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2014-04-07 22:25:01 +00:00
|
|
|
proc = subprocess.Popen(
|
2014-04-07 20:16:36 +00:00
|
|
|
'salt -t 100 {vm_name} --out json git.remote_get /testing'.format(vm_name=vm_name),
|
|
|
|
shell=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
)
|
|
|
|
stdout, _ = proc.communicate()
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
retcode = proc.returncode
|
|
|
|
if retcode != 0:
|
2014-04-08 13:50:03 +00:00
|
|
|
print('Failed to get the cloned repository remote. Exit code: {0}'.format(retcode))
|
2014-04-07 20:16:36 +00:00
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-07 20:16:36 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
if not stdout:
|
|
|
|
print('Failed to get the cloned repository remote(no output). Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-07 20:16:36 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
remotes_info = json.loads(stdout.strip())
|
|
|
|
if opts.salt_url not in remotes_info[vm_name]:
|
|
|
|
print('The cloned repository remote is not the desired one:')
|
|
|
|
print(' {0!r} is not in {1}'.format(opts.salt_url, remotes_info))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-07 20:16:36 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
2014-04-06 18:10:56 +00:00
|
|
|
if opts.commit is not None:
|
|
|
|
# Let's find out if the cloned repository if checked out at the desired
|
|
|
|
# commit
|
2014-04-08 13:50:03 +00:00
|
|
|
print('Grabbing the cloned repository commit information ... ')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2014-04-07 22:25:01 +00:00
|
|
|
proc = subprocess.Popen(
|
2014-04-06 22:41:58 +00:00
|
|
|
'salt -t 100 {vm_name} --out json git.revision /testing'.format(vm_name=vm_name),
|
2014-04-06 18:10:56 +00:00
|
|
|
shell=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
)
|
|
|
|
stdout, _ = proc.communicate()
|
2014-04-07 20:16:36 +00:00
|
|
|
sys.stdout.flush()
|
2014-04-06 18:10:56 +00:00
|
|
|
|
|
|
|
retcode = proc.returncode
|
|
|
|
if retcode != 0:
|
|
|
|
print('Failed to get the cloned repository revision. Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 18:10:56 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
if not stdout:
|
|
|
|
print('Failed to get the cloned repository revision(no output). Exit code: {0}'.format(retcode))
|
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 18:10:56 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
|
|
|
revision_info = json.loads(stdout.strip())
|
|
|
|
if revision_info[vm_name][7:] != opts.commit[7:]:
|
|
|
|
print('The cloned repository commit is not the desired one:')
|
2014-04-07 20:16:36 +00:00
|
|
|
print(' {0!r} != {1!r}'.format(revision_info[vm_name][:7], opts.commit[:7]))
|
2014-04-06 18:10:56 +00:00
|
|
|
sys.stdout.flush()
|
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2014-04-06 18:10:56 +00:00
|
|
|
sys.exit(retcode)
|
|
|
|
|
2013-12-09 23:05:17 +00:00
|
|
|
# Run tests here
|
|
|
|
cmd = (
|
|
|
|
'salt -t 1800 {vm_name} state.sls {sls} pillar="{pillar}" '
|
|
|
|
'--no-color'.format(
|
2013-09-06 11:14:27 +00:00
|
|
|
sls=opts.sls,
|
2014-01-02 21:43:44 +00:00
|
|
|
pillar=opts.pillar.format(
|
|
|
|
commit=opts.commit,
|
|
|
|
salt_url=opts.salt_url
|
|
|
|
),
|
2013-12-09 23:05:17 +00:00
|
|
|
vm_name=vm_name,
|
|
|
|
commit=opts.commit
|
2013-09-06 11:14:27 +00:00
|
|
|
)
|
|
|
|
)
|
2013-08-17 05:06:51 +00:00
|
|
|
print('Running CMD: {0}'.format(cmd))
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-12-09 23:06:17 +00:00
|
|
|
proc = subprocess.Popen(
|
2013-08-17 05:06:51 +00:00
|
|
|
cmd,
|
|
|
|
shell=True,
|
2013-12-09 23:06:17 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT,
|
2013-08-17 05:06:51 +00:00
|
|
|
)
|
2014-04-07 22:00:53 +00:00
|
|
|
stdout, _ = proc.communicate()
|
2013-12-09 23:06:17 +00:00
|
|
|
|
|
|
|
if stdout:
|
|
|
|
print(stdout)
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
try:
|
|
|
|
match = re.search(r'Test Suite Exit Code: (?P<exitcode>[\d]+)', stdout)
|
|
|
|
retcode = int(match.group('exitcode'))
|
|
|
|
except AttributeError:
|
|
|
|
# No regex matching
|
|
|
|
retcode = 1
|
|
|
|
except ValueError:
|
|
|
|
# Not a number!?
|
|
|
|
retcode = 1
|
|
|
|
except TypeError:
|
|
|
|
# No output!?
|
|
|
|
retcode = 1
|
|
|
|
if stdout:
|
|
|
|
# Anything else, raise the exception
|
|
|
|
raise
|
2013-08-13 04:54:47 +00:00
|
|
|
|
2013-09-10 11:21:41 +00:00
|
|
|
if opts.download_remote_reports:
|
2013-09-10 11:05:59 +00:00
|
|
|
# Download unittest reports
|
2013-09-10 11:21:41 +00:00
|
|
|
download_unittest_reports(opts)
|
2013-09-10 11:05:59 +00:00
|
|
|
# Download coverage report
|
2013-09-10 11:21:41 +00:00
|
|
|
download_coverage_report(opts)
|
2013-09-10 11:05:59 +00:00
|
|
|
|
2013-09-06 13:40:01 +00:00
|
|
|
if opts.clean and 'JENKINS_SALTCLOUD_VM_NAME' not in os.environ:
|
2014-04-08 13:37:40 +00:00
|
|
|
delete_vm(opts)
|
2013-08-10 08:33:58 +00:00
|
|
|
return retcode
|
2013-08-10 07:23:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def parse():
|
|
|
|
'''
|
2013-08-11 05:50:47 +00:00
|
|
|
Parse the CLI options
|
2013-08-10 07:23:32 +00:00
|
|
|
'''
|
|
|
|
parser = optparse.OptionParser()
|
2013-09-09 19:43:27 +00:00
|
|
|
parser.add_option(
|
|
|
|
'-w', '--workspace',
|
|
|
|
default=os.path.abspath(
|
|
|
|
os.environ.get(
|
|
|
|
'WORKSPACE',
|
|
|
|
os.path.dirname(os.path.dirname(__file__))
|
|
|
|
)
|
|
|
|
),
|
|
|
|
help='Path the execution workspace'
|
|
|
|
)
|
2013-09-08 22:41:38 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--platform',
|
2013-09-06 13:40:01 +00:00
|
|
|
default=os.environ.get('JENKINS_SALTCLOUD_VM_PLATFORM', None),
|
2013-09-06 11:14:27 +00:00
|
|
|
help='The target platform, choose from:\ncent6\ncent5\nubuntu12.04')
|
2013-09-08 22:41:38 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--provider',
|
2013-09-06 13:40:01 +00:00
|
|
|
default=os.environ.get('JENKINS_SALTCLOUD_VM_PROVIDER', None),
|
2013-09-06 11:14:27 +00:00
|
|
|
help='The vm provider')
|
2014-01-02 21:43:44 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--salt-url',
|
|
|
|
default='https://github.com/saltstack/salt.git',
|
|
|
|
help='The salt git repository url')
|
2013-09-08 22:41:38 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--commit',
|
2013-09-06 11:14:27 +00:00
|
|
|
help='The git commit to track')
|
2014-04-06 18:10:56 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--prep-sls',
|
|
|
|
default='git.salt',
|
|
|
|
help='The sls file to execute to prepare the system')
|
2013-09-08 22:41:38 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--sls',
|
2014-04-07 22:00:53 +00:00
|
|
|
default='testrun-no-deps',
|
2014-04-06 18:10:56 +00:00
|
|
|
help='The final sls file to execute')
|
2013-09-08 22:41:38 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--pillar',
|
2014-01-10 22:53:44 +00:00
|
|
|
default='{{git_commit: {commit}, git_url: \'{salt_url}\'}}',
|
2013-09-06 11:14:27 +00:00
|
|
|
help='Pillar values to pass to the sls file')
|
2013-09-09 10:24:25 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--no-clean',
|
2013-09-06 11:14:27 +00:00
|
|
|
dest='clean',
|
|
|
|
default=True,
|
|
|
|
action='store_false',
|
|
|
|
help='Clean up the built vm')
|
|
|
|
parser.add_option(
|
|
|
|
'--echo-parseable-environment',
|
|
|
|
default=False,
|
|
|
|
action='store_true',
|
|
|
|
help='Print a parseable KEY=VAL output'
|
|
|
|
)
|
2014-01-10 18:29:01 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--pull-request',
|
|
|
|
type=int,
|
|
|
|
help='Include the PR info only'
|
|
|
|
)
|
2013-09-06 11:14:27 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--delete-vm',
|
2013-09-08 23:02:08 +00:00
|
|
|
default=None,
|
2013-09-06 13:40:01 +00:00
|
|
|
help='Delete a running VM'
|
2013-09-06 11:14:27 +00:00
|
|
|
)
|
2013-09-10 11:05:59 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--download-remote-reports',
|
|
|
|
default=False,
|
|
|
|
action='store_true',
|
|
|
|
help='Download remote reports when running remote \'testrun\' state'
|
|
|
|
)
|
2013-09-08 15:32:35 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--download-unittest-reports',
|
2013-09-08 23:02:08 +00:00
|
|
|
default=None,
|
2013-09-08 16:43:55 +00:00
|
|
|
help='Download the XML unittest results'
|
|
|
|
)
|
|
|
|
parser.add_option(
|
|
|
|
'--download-coverage-report',
|
2013-09-08 23:02:08 +00:00
|
|
|
default=None,
|
2013-09-08 16:43:55 +00:00
|
|
|
help='Download the XML coverage reports'
|
2013-09-08 15:32:35 +00:00
|
|
|
)
|
2013-10-03 11:52:05 +00:00
|
|
|
parser.add_option(
|
|
|
|
'--download-remote-logs',
|
|
|
|
default=None,
|
|
|
|
help='Download remote minion and runtests log files'
|
|
|
|
)
|
2013-09-06 11:14:27 +00:00
|
|
|
|
2013-08-10 07:23:32 +00:00
|
|
|
options, args = parser.parse_args()
|
2013-09-06 11:14:27 +00:00
|
|
|
|
2013-09-06 13:40:01 +00:00
|
|
|
if options.delete_vm is not None and not options.commit:
|
2013-09-09 19:45:57 +00:00
|
|
|
delete_vm(options)
|
2013-09-06 11:14:27 +00:00
|
|
|
parser.exit(0)
|
|
|
|
|
2013-09-08 15:32:35 +00:00
|
|
|
if options.download_unittest_reports is not None and not options.commit:
|
2013-09-09 19:45:57 +00:00
|
|
|
download_unittest_reports(options)
|
2013-09-08 15:32:35 +00:00
|
|
|
parser.exit(0)
|
|
|
|
|
2013-09-08 16:43:55 +00:00
|
|
|
if options.download_coverage_report is not None and not options.commit:
|
2013-09-09 19:45:57 +00:00
|
|
|
download_coverage_report(options)
|
2013-09-08 16:43:55 +00:00
|
|
|
parser.exit(0)
|
|
|
|
|
2013-10-03 11:52:05 +00:00
|
|
|
if options.download_remote_logs is not None and not options.commit:
|
|
|
|
download_remote_logs(options)
|
|
|
|
parser.exit(0)
|
|
|
|
|
2014-01-10 18:32:05 +00:00
|
|
|
if not options.platform and not options.pull_request:
|
2014-01-10 18:29:01 +00:00
|
|
|
parser.exit('--platform or --pull-request is required')
|
2013-09-06 11:14:27 +00:00
|
|
|
|
2014-01-10 18:32:05 +00:00
|
|
|
if not options.provider and not options.pull_request:
|
2014-01-10 18:29:01 +00:00
|
|
|
parser.exit('--provider or --pull-request is required')
|
2013-09-06 11:14:27 +00:00
|
|
|
|
|
|
|
if options.echo_parseable_environment:
|
2013-09-09 19:45:57 +00:00
|
|
|
echo_parseable_environment(options)
|
2013-09-06 11:14:27 +00:00
|
|
|
parser.exit(0)
|
|
|
|
|
2014-01-10 18:32:05 +00:00
|
|
|
if not options.commit and not options.pull_request:
|
2014-01-10 18:29:01 +00:00
|
|
|
parser.exit('--commit or --pull-request is required')
|
2013-09-10 11:15:19 +00:00
|
|
|
|
2013-09-06 11:14:27 +00:00
|
|
|
return options
|
2013-08-10 07:23:32 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2013-09-06 11:14:27 +00:00
|
|
|
exit_code = run(parse())
|
2013-08-10 07:40:47 +00:00
|
|
|
print('Exit Code: {0}'.format(exit_code))
|
2013-08-10 07:23:32 +00:00
|
|
|
sys.exit(exit_code)
|