From 52d2be79533bc6c69611a7c09cd1df651476f4e7 Mon Sep 17 00:00:00 2001 From: yackob03 Date: Mon, 10 Feb 2014 15:03:55 -0500 Subject: [PATCH 1/2] Identify build commands separately from their output. --- workers/dockerfilebuild.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/workers/dockerfilebuild.py b/workers/dockerfilebuild.py index 3d0b99933..69cc89e64 100644 --- a/workers/dockerfilebuild.py +++ b/workers/dockerfilebuild.py @@ -101,14 +101,17 @@ class DockerfileBuildContext(object): built_image = None for status in build_status: logger.debug('Status: %s', str(status.encode('utf-8'))) - build_logs.append_log_message(self._build_uuid, str(status)) step_increment = re.search(r'Step ([0-9]+) :', status) if step_increment: + build_logs.append_log_entry({'message': str(status), + 'is_command': True}) current_step = int(step_increment.group(1)) logger.debug('Step now: %s/%s' % (current_step, self._num_steps)) with self._status as status: status['current_command'] = current_step continue + else: + build_logs.append_log_message(self._build_uuid, str(status)) complete = re.match(r'Successfully built ([a-z0-9]+)$', status) if complete: From dee6088b9093bdb1eda356d75e7b35222f89d4e9 Mon Sep 17 00:00:00 2001 From: yackob03 Date: Mon, 10 Feb 2014 15:10:53 -0500 Subject: [PATCH 2/2] Update the test logs generate to generate command logs. --- endpoints/test.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/endpoints/test.py b/endpoints/test.py index 1308a6b46..0ebd953ed 100644 --- a/endpoints/test.py +++ b/endpoints/test.py @@ -37,7 +37,7 @@ def generate_fake_status(): 'complete': {}, 'building': { 'total_commands': 7, - 'current_command': random.randint(1, 7), + 'current_command': random.randint(1, 7), }, 'pushing': { 'total_commands': 7, @@ -97,11 +97,24 @@ def get_fake_repo_build_logs(): adv_total = 110 lorem_logs = get_sentences(10) + def wrap_log_message(rand, msg): + if rand.randint(1, 10) == 1: + block = { + 'is_command': True, + 'message': 'Step %s : %s' % (rand.randint(1, 10), msg) + } + else: + block = { + 'message': msg, + } + return block + + rnd = SystemRandom() return jsonify({ 'start': adv_start, 'end': adv_end, 'total': adv_total, - 'logs': [{'message': sentence} for sentence in lorem_logs] + 'logs': [wrap_log_message(rnd, sentence) for sentence in lorem_logs] })