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

Side by Side Diff: recipe_modules/context/examples/full.py

Issue 2913203002: [step_runner] run _merge_envs in simulation too. (Closed)
Patch Set: Created 3 years, 6 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
OLDNEW
1 # Copyright 2017 The LUCI Authors. All rights reserved. 1 # Copyright 2017 The LUCI Authors. All rights reserved.
2 # Use of this source code is governed under the Apache License, Version 2.0 2 # Use of this source code is governed under the Apache License, Version 2.0
3 # that can be found in the LICENSE file. 3 # that can be found in the LICENSE file.
4 4
5 from recipe_engine import recipe_api, config 5 from recipe_engine import recipe_api, config
6 6
7 DEPS = [ 7 DEPS = [
8 'context', 8 'context',
9 'path', 9 'path',
10 'step', 10 'step',
(...skipping 12 matching lines...) Expand all
23 # can change cwd 23 # can change cwd
24 api.step('mk subdir', ['mkdir', 'subdir']) 24 api.step('mk subdir', ['mkdir', 'subdir'])
25 with api.context(cwd=api.path['start_dir'].join('subdir')): 25 with api.context(cwd=api.path['start_dir'].join('subdir')):
26 api.step('subdir step', ['bash', '-c', 'pwd']) 26 api.step('subdir step', ['bash', '-c', 'pwd'])
27 api.step('other subdir step', ['bash', '-c', 'echo hi again!']) 27 api.step('other subdir step', ['bash', '-c', 'echo hi again!'])
28 28
29 # can set envvars 29 # can set envvars
30 with api.context(env={"HELLO": "WORLD", "HOME": None}): 30 with api.context(env={"HELLO": "WORLD", "HOME": None}):
31 api.step('env step', ['bash', '-c', 'echo $HELLO; echo $HOME']) 31 api.step('env step', ['bash', '-c', 'echo $HELLO; echo $HOME'])
32 32
33 # %-formats are errors (for now). Double-% escape them.
34 try:
35 with api.context(env={"BAD": "%format"}):
36 assert False # pragma: no cover
37 except ValueError:
38 pass
39
40 # this is fine though:
41 api.context(env={"FINE": "%%format"})
42
33 # can increment nest level... note that this is a low level api, prefer 43 # can increment nest level... note that this is a low level api, prefer
34 # api.step.nest instead: 44 # api.step.nest instead:
35 # YES: 45 # YES:
36 with api.step.nest('nested'): 46 with api.step.nest('nested'):
37 api.step('properly indented', ['bash', '-c', 'echo yay!']) 47 api.step('properly indented', ['bash', '-c', 'echo yay!'])
38 # AVOID: 48 # AVOID:
39 with api.context(increment_nest_level=True): 49 with api.context(increment_nest_level=True):
40 api.step('indented with wrong name', ['bash', '-c', 'echo indent?']) 50 api.step('indented with wrong name', ['bash', '-c', 'echo indent?'])
41 51
42 52
43 def GenTests(api): 53 def GenTests(api):
44 yield api.test('basic') 54 yield api.test('basic')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698