blob: 3424e86e79ed3004ed3cdf1f2e03992ab7d04041 [file] [log] [blame]
Joshua Heskethe76a0dd2014-01-16 17:57:45 +11001# Copyright 2013 Rackspace Australia
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15
16import copy
17import json
18import logging
19import os
20
Joshua Hesketh62245542014-01-16 18:00:56 +110021from turbo_hipster.lib import common
Joshua Heskethe76a0dd2014-01-16 17:57:45 +110022from turbo_hipster.lib import utils
23
24
25class Task(object):
26
27 log = logging.getLogger("lib.models.Task")
28
29 def __init__(self, global_config, plugin_config, job_name):
30 self.global_config = global_config
31 self.plugin_config = plugin_config
32 self.job_name = job_name
Joshua Hesketh81f87ed2014-01-18 15:24:48 +110033 self._reset()
Joshua Heskethe76a0dd2014-01-16 17:57:45 +110034
Joshua Hesketh81f87ed2014-01-18 15:24:48 +110035 # Define the number of steps we will do to determine our progress.
36 self.total_steps = 0
37
38 def _reset(self):
Joshua Heskethe76a0dd2014-01-16 17:57:45 +110039 self.job = None
40 self.job_arguments = None
41 self.work_data = None
42 self.cancelled = False
Joshua Hesketh81f87ed2014-01-18 15:24:48 +110043 self.success = True
44 self.messages = []
Joshua Heskethe76a0dd2014-01-16 17:57:45 +110045 self.current_step = 0
Joshua Hesketh81f87ed2014-01-18 15:24:48 +110046
47 def start_job(self, job):
48 self._reset()
49 self.job = job
50
51 if self.job is not None:
52 try:
53 self.job_arguments = \
54 json.loads(self.job.arguments.decode('utf-8'))
55 self.log.debug("Got job from ZUUL %s" % self.job_arguments)
56
57 # Send an initial WORK_DATA and WORK_STATUS packets
58 self._send_work_data()
59
60 # Execute the job_steps
61 self.do_job_steps()
62
63 # Finally, send updated work data and completed packets
64 self._send_final_results()
65
66 except Exception as e:
67 self.log.exception('Exception handling log event.')
68 if not self.cancelled:
69 self.job.sendWorkException(str(e).encode('utf-8'))
Joshua Heskethe76a0dd2014-01-16 17:57:45 +110070
71 def stop_worker(self, number):
72 # Check the number is for this job instance
73 # (makes it possible to run multiple workers with this task
74 # on this server)
75 if number == self.job.unique:
76 self.log.debug("We've been asked to stop by our gearman manager")
77 self.cancelled = True
78 # TODO: Work out how to kill current step
79
Joshua Heskethe76a0dd2014-01-16 17:57:45 +110080 def _get_work_data(self):
81 if self.work_data is None:
82 hostname = os.uname()[1]
83 self.work_data = dict(
84 name=self.job_name,
85 number=self.job.unique,
86 manager='turbo-hipster-manager-%s' % hostname,
87 url='http://localhost',
88 )
89 return self.work_data
90
91 def _send_work_data(self):
92 """ Send the WORK DATA in json format for job """
93 self.log.debug("Send the work data response: %s" %
94 json.dumps(self._get_work_data()))
95 self.job.sendWorkData(json.dumps(self._get_work_data()))
96
Joshua Hesketh81f87ed2014-01-18 15:24:48 +110097 def _send_final_results(self):
98 self._send_work_data()
99
Joshua Heskethb5f99b62014-01-30 16:03:19 +1100100 if self.success:
Joshua Hesketh48de0672014-01-30 16:33:22 +1100101 self.work_data['result'] = 'SUCCESS'
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100102 self.job.sendWorkComplete(
103 json.dumps(self._get_work_data()))
104 else:
Joshua Hesketh48de0672014-01-30 16:33:22 +1100105 self.work_data['result'] = '\n'.join(self.messages)
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100106 self.job.sendWorkFail()
107
Joshua Heskethe76a0dd2014-01-16 17:57:45 +1100108 def _do_next_step(self):
109 """ Send a WORK_STATUS command to the gearman server.
110 This can provide a progress bar. """
111
112 # Each opportunity we should check if we need to stop
113 if self.cancelled:
114 self.work_data['result'] = "Failed: Job cancelled"
115 self.job.sendWorkStatus(self.current_step, self.total_steps)
116 self.job.sendWorkFail()
117 raise Exception('Job cancelled')
118
119 self.current_step += 1
120 self.job.sendWorkStatus(self.current_step, self.total_steps)
Joshua Hesketh91778762014-01-16 18:24:46 +1100121
122
123class ShellTask(Task):
124 log = logging.getLogger("lib.models.ShellTask")
125
126 def __init__(self, global_config, plugin_config, job_name):
127 super(ShellTask, self).__init__(global_config, plugin_config, job_name)
128 # Define the number of steps we will do to determine our progress.
Joshua Heskethc73328c2014-01-18 16:09:54 +1100129 self.total_steps = 5
Joshua Hesketh91778762014-01-16 18:24:46 +1100130
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100131 def _reset(self):
132 super(ShellTask, self)._reset()
133 self.git_path = None
Joshua Heskethc73328c2014-01-18 16:09:54 +1100134 self.job_working_dir = None
135 self.shell_output_log = None
Joshua Hesketh91778762014-01-16 18:24:46 +1100136
Joshua Hesketh235b13d2014-01-30 15:14:04 +1100137 def do_job_steps(self):
Joshua Hesketh1f2d1a22014-01-30 15:41:21 +1100138 # Step 1: Prep job working dir
Joshua Heskethc73328c2014-01-18 16:09:54 +1100139 self._prep_working_dir()
140
Joshua Hesketh1f2d1a22014-01-30 15:41:21 +1100141 # Step 2: Checkout updates from git
142 self._grab_patchset(self.job_arguments)
143
Joshua Heskethc73328c2014-01-18 16:09:54 +1100144 # Step 3: Run shell script
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100145 self._execute_script()
Joshua Hesketh91778762014-01-16 18:24:46 +1100146
Joshua Heskethc73328c2014-01-18 16:09:54 +1100147 # Step 4: Analyse logs for errors
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100148 self._parse_and_check_results()
Joshua Hesketh91778762014-01-16 18:24:46 +1100149
Joshua Heskethc73328c2014-01-18 16:09:54 +1100150 # Step 5: handle the results (and upload etc)
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100151 self._handle_results()
Joshua Hesketh91778762014-01-16 18:24:46 +1100152
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100153 @common.task_step
Joshua Hesketh1f2d1a22014-01-30 15:41:21 +1100154 def _prep_working_dir(self):
Joshua Hesketh99005542014-01-30 16:34:36 +1100155 self.job_identifier = utils.determine_job_identifier(
156 self.job_arguments,
157 self.plugin_config['function'],
158 self.job.unique
159 )
Joshua Hesketh1f2d1a22014-01-30 15:41:21 +1100160 self.job_working_dir = os.path.join(
161 self.global_config['jobs_working_dir'],
Joshua Hesketh99005542014-01-30 16:34:36 +1100162 self.job_identifier
Joshua Hesketh1f2d1a22014-01-30 15:41:21 +1100163 )
164 self.shell_output_log = os.path.join(
165 self.job_working_dir,
166 'shell_output.log'
167 )
168
169 if not os.path.isdir(os.path.dirname(self.shell_output_log)):
170 os.makedirs(os.path.dirname(self.shell_output_log))
171
172 @common.task_step
173 def _grab_patchset(self, job_args):
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100174 """ Checkout the reference into config['git_working_dir'] """
Joshua Hesketh91778762014-01-16 18:24:46 +1100175
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100176 self.log.debug("Grab the patchset we want to test against")
177 local_path = os.path.join(self.global_config['git_working_dir'],
178 self.job_name, job_args['ZUUL_PROJECT'])
179 if not os.path.exists(local_path):
180 os.makedirs(local_path)
Joshua Hesketh91778762014-01-16 18:24:46 +1100181
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100182 git_args = copy.deepcopy(job_args)
183 git_args['GIT_ORIGIN'] = 'git://git.openstack.org/'
Joshua Hesketh91778762014-01-16 18:24:46 +1100184
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100185 cmd = os.path.join(os.path.join(os.path.dirname(__file__),
186 'gerrit-git-prep.sh'))
187 cmd += ' https://review.openstack.org'
188 cmd += ' http://zuul.rcbops.com'
Joshua Hesketh1f2d1a22014-01-30 15:41:21 +1100189 utils.execute_to_log(cmd, self.shell_output_log, env=git_args,
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100190 cwd=local_path)
191 self.git_path = local_path
192 return local_path
193
194 @common.task_step
195 def _execute_script(self):
196 # Run script
Joshua Heskethc73328c2014-01-18 16:09:54 +1100197 cmd = self.plugin_config['shell_script']
198 cmd += (
199 (' %(git_path)s %(job_working_dir)s %(unique_id)s')
200 % {
201 'git_path': self.git_path,
202 'job_working_dir': self.job_working_dir,
203 'unique_id': self.job.unique
204 }
205 )
206 self.script_return_code = utils.execute_to_log(
207 cmd,
208 self.shell_output_log
209 )
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100210
211 @common.task_step
212 def _parse_and_check_results(self):
213 if self.script_return_code > 0:
214 self.success = False
215 self.messages.append('Return code from test script was non-zero '
216 '(%d)' % self.script_return_code)
217
218 @common.task_step
219 def _handle_results(self):
Joshua Hesketh6055f312014-01-22 15:04:54 +1100220 """Upload the contents of the working dir either using the instructions
221 provided by zuul and/or our configuration"""
Joshua Hesketh221ae742014-01-22 16:09:58 +1100222
Joshua Hesketh6055f312014-01-22 15:04:54 +1100223 self.log.debug("Process the resulting files (upload/push)")
Joshua Hesketh221ae742014-01-22 16:09:58 +1100224
225 if 'publish_logs' in self.global_config:
Joshua Hesketh99005542014-01-30 16:34:36 +1100226 index_url = utils.push_file(self.job_identifier,
Joshua Hesketh221ae742014-01-22 16:09:58 +1100227 self.job_working_dir,
228 self.global_config['publish_logs'])
229 self.log.debug("Index URL found at %s" % index_url)
230 self.work_data['url'] = index_url
231
232 if 'ZUUL_EXTRA_SWIFT_URL' in self.job_arguments:
233 # Upload to zuul's url as instructed
234 utils.zuul_swift_upload(self.job_working_dir, self.job_arguments)
Joshua Hesketh99005542014-01-30 16:34:36 +1100235 self.work_data['url'] = self.job_identifier