1#!/usr/bin/env python3 2# 3# Copyright (c) 2019-2020 Red Hat, Inc. 4# 5# Author: 6# Cleber Rosa <crosa@redhat.com> 7# 8# This work is licensed under the terms of the GNU GPL, version 2 or 9# later. See the COPYING file in the top-level directory. 10 11""" 12Checks the GitLab pipeline status for a given commit ID 13""" 14 15# pylint: disable=C0103 16 17import argparse 18import http.client 19import json 20import os 21import subprocess 22import time 23import sys 24 25 26class CommunicationFailure(Exception): 27 """Failed to communicate to gitlab.com APIs.""" 28 29 30class NoPipelineFound(Exception): 31 """Communication is successfull but pipeline is not found.""" 32 33 34def get_local_branch_commit(branch): 35 """ 36 Returns the commit sha1 for the *local* branch named "staging" 37 """ 38 result = subprocess.run(['git', 'rev-parse', branch], 39 stdin=subprocess.DEVNULL, 40 stdout=subprocess.PIPE, 41 stderr=subprocess.DEVNULL, 42 cwd=os.path.dirname(__file__), 43 universal_newlines=True).stdout.strip() 44 if result == branch: 45 raise ValueError("There's no local branch named '%s'" % branch) 46 if len(result) != 40: 47 raise ValueError("Branch '%s' HEAD doesn't look like a sha1" % branch) 48 return result 49 50 51def get_pipeline_status(project_id, commit_sha1): 52 """ 53 Returns the JSON content of the pipeline status API response 54 """ 55 url = '/api/v4/projects/{}/pipelines?sha={}'.format(project_id, 56 commit_sha1) 57 connection = http.client.HTTPSConnection('gitlab.com') 58 connection.request('GET', url=url) 59 response = connection.getresponse() 60 if response.code != http.HTTPStatus.OK: 61 raise CommunicationFailure("Failed to receive a successful response") 62 json_response = json.loads(response.read()) 63 64 # As far as I can tell, there should be only one pipeline for the same 65 # project + commit. If this assumption is false, we can add further 66 # filters to the url, such as username, and order_by. 67 if not json_response: 68 raise NoPipelineFound("No pipeline found") 69 return json_response[0] 70 71 72def wait_on_pipeline_success(timeout, interval, 73 project_id, commit_sha): 74 """ 75 Waits for the pipeline to finish within the given timeout 76 """ 77 start = time.time() 78 while True: 79 if time.time() >= (start + timeout): 80 msg = ("Timeout (-t/--timeout) of %i seconds reached, " 81 "won't wait any longer for the pipeline to complete") 82 msg %= timeout 83 print(msg) 84 return False 85 86 try: 87 status = get_pipeline_status(project_id, commit_sha) 88 except NoPipelineFound: 89 print('Pipeline has not been found, it may not have been created yet.') 90 time.sleep(1) 91 continue 92 93 pipeline_status = status['status'] 94 status_to_wait = ('created', 'waiting_for_resource', 'preparing', 95 'pending', 'running') 96 if pipeline_status in status_to_wait: 97 print('%s...' % pipeline_status) 98 time.sleep(interval) 99 continue 100 101 if pipeline_status == 'success': 102 return True 103 104 msg = "Pipeline failed, check: %s" % status['web_url'] 105 print(msg) 106 return False 107 108 109def create_parser(): 110 parser = argparse.ArgumentParser( 111 prog='pipeline-status', 112 description='check or wait on a pipeline status') 113 114 parser.add_argument('-t', '--timeout', type=int, default=7200, 115 help=('Amount of time (in seconds) to wait for the ' 116 'pipeline to complete. Defaults to ' 117 '%(default)s')) 118 parser.add_argument('-i', '--interval', type=int, default=60, 119 help=('Amount of time (in seconds) to wait between ' 120 'checks of the pipeline status. Defaults ' 121 'to %(default)s')) 122 parser.add_argument('-w', '--wait', action='store_true', default=False, 123 help=('Wether to wait, instead of checking only once ' 124 'the status of a pipeline')) 125 parser.add_argument('-p', '--project-id', type=int, default=11167699, 126 help=('The GitLab project ID. Defaults to the project ' 127 'for https://gitlab.com/qemu-project/qemu, that ' 128 'is, "%(default)s"')) 129 parser.add_argument('-b', '--branch', type=str, default="staging", 130 help=('Specify the branch to check. ' 131 'Use HEAD for your current branch. ' 132 'Otherwise looks at "%(default)s"')) 133 parser.add_argument('-c', '--commit', 134 default=None, 135 help=('Look for a pipeline associated with the given ' 136 'commit. If one is not explicitly given, the ' 137 'commit associated with the default branch ' 138 'is used.')) 139 parser.add_argument('--verbose', action='store_true', default=False, 140 help=('A minimal verbosity level that prints the ' 141 'overall result of the check/wait')) 142 return parser 143 144def main(): 145 """ 146 Script entry point 147 """ 148 parser = create_parser() 149 args = parser.parse_args() 150 151 if not args.commit: 152 args.commit = get_local_branch_commit(args.branch) 153 154 success = False 155 try: 156 if args.wait: 157 success = wait_on_pipeline_success( 158 args.timeout, 159 args.interval, 160 args.project_id, 161 args.commit) 162 else: 163 status = get_pipeline_status(args.project_id, 164 args.commit) 165 success = status['status'] == 'success' 166 except Exception as error: # pylint: disable=W0703 167 if args.verbose: 168 print("ERROR: %s" % error.args[0]) 169 except KeyboardInterrupt: 170 if args.verbose: 171 print("Exiting on user's request") 172 173 if success: 174 if args.verbose: 175 print('success') 176 sys.exit(0) 177 else: 178 if args.verbose: 179 print('failure') 180 sys.exit(1) 181 182 183if __name__ == '__main__': 184 main() 185