You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
Python
63 lines
1.6 KiB
Python
# Copyright 2013 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
|
|
|
|
PYTHON_VERSION_COMPATIBILITY = 'PY3'
|
|
|
|
DEPS = [
|
|
'git',
|
|
'recipe_engine/assertions',
|
|
'recipe_engine/properties',
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
numbers = api.git.number(
|
|
commitrefs=api.properties.get('commitrefs'),
|
|
test_values=api.properties.get('test_values'),
|
|
)
|
|
expected_numbers = api.properties['expected_numbers']
|
|
api.assertions.assertSequenceEqual(numbers, expected_numbers)
|
|
|
|
|
|
def GenTests(api):
|
|
yield api.test(
|
|
'basic',
|
|
api.properties(expected_numbers=['3000']),
|
|
api.post_check(post_process.StatusSuccess),
|
|
api.post_process(post_process.DropExpectation),
|
|
)
|
|
|
|
yield api.test(
|
|
'commitrefs',
|
|
api.properties(
|
|
commitrefs=['rev-1', 'rev-2'],
|
|
expected_numbers=['3000', '3001'],
|
|
),
|
|
api.post_check(post_process.StatusSuccess),
|
|
api.post_process(post_process.DropExpectation),
|
|
)
|
|
|
|
yield api.test(
|
|
'basic-with-test-values',
|
|
api.properties(
|
|
test_values=[42],
|
|
expected_numbers=['42'],
|
|
),
|
|
api.post_check(post_process.StatusSuccess),
|
|
api.post_process(post_process.DropExpectation),
|
|
)
|
|
|
|
yield api.test(
|
|
'commitrefs-with-test-values',
|
|
api.properties(
|
|
test_values=[42, 13],
|
|
commitrefs=['rev-1', 'rev-2'],
|
|
expected_numbers=['42', '13'],
|
|
),
|
|
api.post_check(post_process.StatusSuccess),
|
|
api.post_process(post_process.DropExpectation),
|
|
)
|