blob: 46d7824e522e43c3accd43499cc45ec113d505c4 [file] [log] [blame]
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'depot_tools/infra_paths',
'gatekeeper',
'recipe_engine/properties',
]
def RunSteps(api):
api.gatekeeper.set_config('basic')
api.gatekeeper(
api.package_repo_resource('scripts', 'slave', 'gatekeeper.json'),
api.package_repo_resource('scripts', 'slave', 'gatekeeper_trees.json'))
def GenTests(api):
yield (
api.test('basic')
+ api.properties.generic()
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.fake_test_data(),
)
)
yield (
api.test('keep_going')
+ api.properties.generic()
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.fake_test_data(),
)
+ api.step_data('gatekeeper: chromium', retcode=1)
)
whitelist_data = api.gatekeeper.fake_test_json()
whitelist_data['blink']['masters'][
'https://build.chromium.org/p/chromium.webkit'] = ['foobar', 'coolbar']
yield (
api.test('whitelist_config')
+ api.properties.generic()
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.fake_test_data(whitelist_data)
)
)
yield (
api.test('production_data')
+ api.properties.generic()
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.production_data(),
)
)
yield (
api.test('kitchen')
+ api.properties.generic(
buildername='Chromium Gatekeeper', path_config='kitchen')
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.fake_test_data(),
)
)
yield (
api.test('json_infra_side')
+ api.properties.generic(
buildername='Chromium Gatekeeper', path_config='kitchen')
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.infra_config_data(),
)
)
yield (
api.test('json_by_url')
+ api.properties.generic(
buildername='Chromium Gatekeeper', path_config='kitchen')
+ api.step_data(
'reading gatekeeper_trees.json',
api.gatekeeper.gitiles_config_data(),
)
)