blob: 66f26c89ae3476f5cab281cf8a8fedf2807160e9 [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
100 if self.work_data['result'] is 'SUCCESS':
101 self.job.sendWorkComplete(
102 json.dumps(self._get_work_data()))
103 else:
104 self.job.sendWorkFail()
105
Joshua Heskethe76a0dd2014-01-16 17:57:45 +1100106 def _do_next_step(self):
107 """ Send a WORK_STATUS command to the gearman server.
108 This can provide a progress bar. """
109
110 # Each opportunity we should check if we need to stop
111 if self.cancelled:
112 self.work_data['result'] = "Failed: Job cancelled"
113 self.job.sendWorkStatus(self.current_step, self.total_steps)
114 self.job.sendWorkFail()
115 raise Exception('Job cancelled')
116
117 self.current_step += 1
118 self.job.sendWorkStatus(self.current_step, self.total_steps)
Joshua Hesketh91778762014-01-16 18:24:46 +1100119
120
121class ShellTask(Task):
122 log = logging.getLogger("lib.models.ShellTask")
123
124 def __init__(self, global_config, plugin_config, job_name):
125 super(ShellTask, self).__init__(global_config, plugin_config, job_name)
126 # Define the number of steps we will do to determine our progress.
127 self.total_steps = 4
128
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100129 def _reset(self):
130 super(ShellTask, self)._reset()
131 self.git_path = None
Joshua Hesketh91778762014-01-16 18:24:46 +1100132
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100133 def do_job_steps(self, job):
134 # Step 1: Checkout updates from git
135 self._grab_patchset(self.job_arguments,
136 self.job_datasets[0]['job_log_file_path'])
Joshua Hesketh91778762014-01-16 18:24:46 +1100137
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100138 # Step 2: Run shell script
139 self._execute_script()
Joshua Hesketh91778762014-01-16 18:24:46 +1100140
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100141 # Step 3: Analyse logs for errors
142 self._parse_and_check_results()
Joshua Hesketh91778762014-01-16 18:24:46 +1100143
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100144 # Step 4: handle the results (and upload etc)
145 self._handle_results()
Joshua Hesketh91778762014-01-16 18:24:46 +1100146
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100147 @common.task_step
148 def _grab_patchset(self, job_args, job_log_file_path):
149 """ Checkout the reference into config['git_working_dir'] """
Joshua Hesketh91778762014-01-16 18:24:46 +1100150
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100151 self.log.debug("Grab the patchset we want to test against")
152 local_path = os.path.join(self.global_config['git_working_dir'],
153 self.job_name, job_args['ZUUL_PROJECT'])
154 if not os.path.exists(local_path):
155 os.makedirs(local_path)
Joshua Hesketh91778762014-01-16 18:24:46 +1100156
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100157 git_args = copy.deepcopy(job_args)
158 git_args['GIT_ORIGIN'] = 'git://git.openstack.org/'
Joshua Hesketh91778762014-01-16 18:24:46 +1100159
Joshua Hesketh81f87ed2014-01-18 15:24:48 +1100160 cmd = os.path.join(os.path.join(os.path.dirname(__file__),
161 'gerrit-git-prep.sh'))
162 cmd += ' https://review.openstack.org'
163 cmd += ' http://zuul.rcbops.com'
164 utils.execute_to_log(cmd, job_log_file_path, env=git_args,
165 cwd=local_path)
166 self.git_path = local_path
167 return local_path
168
169 @common.task_step
170 def _execute_script(self):
171 # Run script
172 self.script_return_code = 0
173
174 @common.task_step
175 def _parse_and_check_results(self):
176 if self.script_return_code > 0:
177 self.success = False
178 self.messages.append('Return code from test script was non-zero '
179 '(%d)' % self.script_return_code)
180
181 @common.task_step
182 def _handle_results(self):
183 pass