• Home
  • Raw
  • Download

Lines Matching full:api

30 def test_steps(api):  argument
32 do_upload = api.properties.get('do_upload') == 'true'
33 images = api.properties.get('images') == 'true'
34 lotties = api.properties.get('lotties') == 'true'
35 resources = api.properties.get('resources') == 'true'
36 skps = api.properties.get('skps') == 'true'
37 svgs = api.properties.get('svgs') == 'true'
39 api.flavor.install(
49 host_dm_dir = str(api.flavor.host_dirs.dm_dir)
50 api.flavor.create_clean_host_dir(api.path.start_dir.joinpath('test'))
51 device_dm_dir = str(api.flavor.device_dirs.dm_dir)
53 api.flavor.create_clean_device_dir(device_dm_dir)
58 host_hashes_file = api.vars.tmp_dir.joinpath(hash_filename)
59 hashes_file = api.flavor.device_path_join(
60 api.flavor.device_dirs.tmp_dir, hash_filename)
61 script = api.gold_upload.resource('get_uninteresting_hashes.py')
62 api.run(
63 api.step,
65 cmd=['python3', script, api.properties['gold_hashes_url'],
73 if api.path.exists(host_hashes_file):
74 api.flavor.copy_file_to_device(host_hashes_file, hashes_file)
78 args = json.loads(api.properties['dm_flags'])
79 props = json.loads(api.properties['dm_properties'])
86 v = api.vars.swarming_bot_id
88 v = api.vars.swarming_task_id
94 args.extend(['--resourcePath', api.flavor.device_dirs.resource_dir])
96 args.extend(['--skps', api.flavor.device_dirs.skp_dir])
99 '--images', api.flavor.device_path_join(
100 api.flavor.device_dirs.images_dir, 'dm'),
101 '--colorImages', api.flavor.device_path_join(
102 api.flavor.device_dirs.images_dir, 'colorspace'),
107 args.extend(['--svgs', api.flavor.device_path_join(
108 api.flavor.device_dirs.svg_dir, "svg")])
112 api.flavor.device_path_join(
113 api.flavor.device_dirs.resource_dir, 'skottie'),
114 api.flavor.device_dirs.lotties_dir,
116 if 'Fontations' in api.vars.builder_cfg.get('extra_config', []):
117 args.extend(['--fontTestDataPath', api.flavor.device_dirs.fonts_dir])
122 args.extend(['--writePath', api.flavor.device_dirs.dm_dir])
125 api.run(api.flavor.step, 'dm', cmd=args, abort_on_failure=False)
129 api.flavor.copy_directory_contents_to_host(
130 api.flavor.device_dirs.dm_dir, api.flavor.host_dirs.dm_dir)
132 if 'Win' not in api.vars.builder_cfg.get('os', ''):
133 api.gold_upload.upload()
136 def RunSteps(api): argument
137 api.vars.setup()
138 api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir)
139 api.flavor.setup('dm')
142 test_steps(api)
144 api.flavor.cleanup_steps()
145 api.run.check_failure()
156 def GenTests(api): argument
185 api.test(builder) +
186 api.properties(**props) +
187 api.path.exists(
188 api.path.start_dir.joinpath('skia'),
189 api.path.start_dir.joinpath('skia', 'infra', 'bots', 'assets',
191 api.path.start_dir.joinpath('skia', 'infra', 'bots', 'assets',
193 api.path.start_dir.joinpath('skia', 'infra', 'bots', 'assets',
195 api.path.start_dir.joinpath('tmp', 'uninteresting_hashes.txt')
197 api.step_data('get swarming bot id',
198 stdout=api.raw_io.output('skia-bot-123')) +
199 api.step_data('get swarming task id',
200 stdout=api.raw_io.output('123456'))
203 test += api.platform('win', 64)