blob: a7be3bb225a71ebe017b7419d76eece393d41df8 [file] [log] [blame]
# Copyright 2020 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
DEPS = [
'assertions',
'context',
'step',
'swarming',
]
def RunSteps(api):
def basic_request():
request = api.swarming.task_request()
return request.with_slice(0, request[0].
with_command(['echo', 'hi']).
with_dimensions(pool='example.pool', os='Debian'))
with api.context(realm='some:realm'):
request = basic_request().with_resultdb()
api.assertions.assertEqual('some:realm', request.realm)
request.to_jsonish() # doesn't blow up
with api.context(realm=''):
request = basic_request().with_resultdb()
api.assertions.assertEqual(None, request.realm)
with api.assertions.assertRaises(api.step.InfraFailure):
request.to_jsonish() # ResultDB integration requires a realm
def GenTests(api):
yield api.test('basic') + api.post_process(DropExpectation)