blob: c752f97771b5f0370da42f296c4172ed856a1359 [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.
from recipe_engine import post_process
DEPS = [
'chromium',
'chromium_tests',
'recipe_engine/buildbucket',
'recipe_engine/properties',
]
def RunSteps(api):
api.chromium_tests.lookup_bot_metadata(
builders={
'chromium.foo': {
'foo-rel': {}
},
'tryserver.chromium.foo': {
'foo-dbg': {}
},
},
mirrored_bots={
'tryserver.chromium.foo': {
'foo-rel': {
'bot_ids': [{
'mastername': 'chromium.foo',
'buildername': 'foo-rel'
}],
'analyze_mode':
None,
}
}
})
def GenTests(api):
yield api.test(
'basic',
api.chromium.ci_build(mastername='chromium.foo', builder='foo-rel'),
api.post_process(post_process.StatusSuccess),
api.post_process(post_process.DropExpectation),
)
yield api.test(
'trybot',
api.chromium.try_build(
mastername='tryserver.chromium.foo', builder='foo-rel'),
api.post_process(post_process.StatusSuccess),
api.post_process(post_process.DropExpectation),
)
yield api.test(
'standalone-trybot',
api.chromium.try_build(
mastername='tryserver.chromium.foo', builder='foo-dbg'),
api.post_process(post_process.StatusSuccess),
api.post_process(post_process.DropExpectation),
)
yield api.test(
'missing-master-config',
api.chromium.ci_build(mastername='chromium.missing', builder='foo-rel'),
api.post_process(post_process.StatusFailure),
api.post_process(post_process.DropExpectation),
)
yield api.test(
'missing-builder-config',
api.chromium.ci_build(
mastername='chromium.foo', builder='foo-missing-rel'),
api.post_process(post_process.StatusFailure),
api.post_process(post_process.DropExpectation),
)