Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: scripts/slave/recipe_modules/bot_update/test_api.py

Issue 1382203002: bot_update (+recipe_module): treat patch download as infra failure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: NBits\ Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « scripts/slave/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import hashlib 5 import hashlib
6 import os 6 import os
7 import struct 7 import struct
8 import sys 8 import sys
9 9
10 sys.path.append( 10 sys.path.append(
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'repository': 'https://fake.org/%s.git' % project_name, 65 'repository': 'https://fake.org/%s.git' % project_name,
66 'revision': self.gen_revision(project_name, git_mode), 66 'revision': self.gen_revision(project_name, git_mode),
67 } 67 }
68 for project_name in revision_mapping 68 for project_name in revision_mapping
69 } 69 }
70 }) 70 })
71 71
72 if fail_patch: 72 if fail_patch:
73 output['log_lines'] = [('patch error', 'Patch failed to apply'),] 73 output['log_lines'] = [('patch error', 'Patch failed to apply'),]
74 output['patch_failure'] = True 74 output['patch_failure'] = True
75 output['patch_apply_return_code'] = 1
76 if fail_patch == 'download':
77 output['patch_apply_return_code'] = 3
75 return self.m.json.output(output) 78 return self.m.json.output(output)
76 79
77 @staticmethod 80 @staticmethod
78 def gen_revision(project, GIT_MODE): 81 def gen_revision(project, GIT_MODE):
79 """Hash project to bogus deterministic revision values.""" 82 """Hash project to bogus deterministic revision values."""
80 h = hashlib.sha1(project) 83 h = hashlib.sha1(project)
81 if GIT_MODE: 84 if GIT_MODE:
82 return h.hexdigest() 85 return h.hexdigest()
83 else: 86 else:
84 return struct.unpack('!I', h.digest()[:4])[0] % 300000 87 return struct.unpack('!I', h.digest()[:4])[0] % 300000
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698