blob: ed5bcce32a2b0f2041e3a6bd7ac794f24513704e [file] [log] [blame] [edit]
# Copyright 2021 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
from recipe_engine.post_process import DropExpectation
from PB.go.chromium.org.luci.resultdb.proto.v1 import artifact
from PB.go.chromium.org.luci.resultdb.proto.v1 import recorder
DEPS = [
'resultdb',
]
def RunSteps(api):
api.resultdb.upload_invocation_artifacts({
'a': {
'content_type': 'text/plain',
'contents': b'foobar'
},
'b': {
'content_type': 'text/plain',
'gcs_uri': 'gs://test-bucket/artifact/b.txt'
},
'c': {
'content_type': 'text/plain',
'contents': 'string_foobar'
},
})
def GenTests(api):
yield api.test(
'basic',
api.resultdb.upload_invocation_artifacts(
recorder.BatchCreateArtifactsResponse(artifacts=[
artifact.Artifact(
artifact_id='a',
content_type='text/plain',
contents=b'foobar'),
artifact.Artifact(
artifact_id='b',
content_type='text/plain',
gcs_uri='gs://test-bucket/artifact/b.txt'),
artifact.Artifact(
artifact_id='c',
content_type='text/plain',
contents=b'string_foobar')
])),
api.post_process(DropExpectation),
)