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

Side by Side Diff: recipe_modules/path/example.py

Issue 2811143005: Revert of path: Add tracking of volatile paths. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « recipe_modules/path/config.py ('k') | recipe_modules/path/example.expected/linux.json » ('j') | 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 LUCI Authors. All rights reserved. 1 # Copyright 2014 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 DEPS = [ 5 DEPS = [
6 'path', 6 'path',
7 'platform', 7 'platform',
8 'properties', 8 'properties',
9 'step', 9 'step',
10 ] 10 ]
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 assert api.path.exists(file_path) 48 assert api.path.exists(file_path)
49 49
50 realpath = api.path.realpath(file_path) 50 realpath = api.path.realpath(file_path)
51 assert api.path.exists(realpath) 51 assert api.path.exists(realpath)
52 52
53 home_path = api.path.join(api.path.expanduser('~'), 'file') 53 home_path = api.path.join(api.path.expanduser('~'), 'file')
54 api.step('touch my home', ['touch', home_path]) 54 api.step('touch my home', ['touch', home_path])
55 api.path.mock_add_paths(home_path) 55 api.path.mock_add_paths(home_path)
56 assert api.path.exists(home_path) 56 assert api.path.exists(home_path)
57 57
58 api.step('volatile tmp_dir', ['echo', api.path.is_volatile('tmp_dir')])
59
60 # Convert strings to Paths 58 # Convert strings to Paths
61 paths_to_convert = [ 59 paths_to_convert = [
62 api.path['start_dir'].join('some', 'thing'), 60 api.path['start_dir'].join('some', 'thing'),
63 api.path['start_dir'], 61 api.path['start_dir'],
64 api.path.resource("module_resource.py"), 62 api.path.resource("module_resource.py"),
65 api.path.resource(), 63 api.path.resource(),
66 api.resource("recipe_resource.py"), 64 api.resource("recipe_resource.py"),
67 api.resource(), 65 api.resource(),
68 ] 66 ]
69 for p in paths_to_convert: 67 for p in paths_to_convert:
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 yield (api.test('%s_kitchen' % platform) + 101 yield (api.test('%s_kitchen' % platform) +
104 api.platform.name(platform) + 102 api.platform.name(platform) +
105 api.properties(path_config='kitchen') + 103 api.properties(path_config='kitchen') +
106 api.path.exists(api.path['tmp_base'])) 104 api.path.exists(api.path['tmp_base']))
107 105
108 yield (api.test('%s_luci' % platform) + 106 yield (api.test('%s_luci' % platform) +
109 api.platform.name(platform) + 107 api.platform.name(platform) +
110 api.properties(**{ 108 api.properties(**{
111 '$recipe_engine/path': { 109 '$recipe_engine/path': {
112 'cache_dir': '/c', 110 'cache_dir': '/c',
113 'tmp_dir': '/t', 111 'tmp_dir': '/t'
114 'volatile': ['tmp_dir'],
115 }, 112 },
116 }) + 113 }) +
117 api.path.exists(api.path['tmp_base'])) 114 api.path.exists(api.path['tmp_base']))
OLDNEW
« no previous file with comments | « recipe_modules/path/config.py ('k') | recipe_modules/path/example.expected/linux.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698