blob: 2a2a8e975e4b281c3691ef868f641339fddb1345 [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 = [
'chromium',
'codesearch',
'depot_tools/bot_update',
'depot_tools/gclient',
'recipe_engine/properties',
]
def RunSteps(api):
api.gclient.set_config('chromium')
update_step = api.bot_update.ensure_checkout()
properties = update_step.json.output['properties']
if api.properties.get('set_got_revision_cp_to_none'):
properties.pop('got_revision_cp', 0)
api.chromium.set_build_properties(properties)
api.codesearch.set_config(
api.properties.get('codesearch_config', 'chromium'),
COMPILE_TARGETS=api.properties.get('compile_targets', ['all']),
PLATFORM=api.properties.get('platform', 'linux'),
SYNC_GENERATED_FILES=api.properties.get('sync_generated_files', True),
GEN_REPO_BRANCH=api.properties.get('gen_repo_branch', 'master'),
CORPUS=api.properties.get('corpus', 'chromium'),
ROOT=api.properties.get('root', 'linux'),
)
api.codesearch.create_and_upload_kythe_index_pack(commit_timestamp=1337000000)
def GenTests(api):
yield (
api.test('basic')
)
yield (
api.test('bucket_name_not_set_failed') +
api.properties(codesearch_config='base') +
api.expect_exception('AssertionError')
)
yield (
api.test('basic_without_got_revision_cp') +
api.properties(set_got_revision_cp_to_none=True)
)
yield (
api.test('basic_without_kythe_root') +
api.properties(root='')
)