Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Unified Diff: recipe_modules/step/tests/timeout.py

Issue 2806363004: Enable strict coverage for step module (Closed)
Patch Set: review Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: recipe_modules/step/tests/timeout.py
diff --git a/recipe_modules/step/tests/timeout.py b/recipe_modules/step/tests/timeout.py
new file mode 100644
index 0000000000000000000000000000000000000000..9e98e1cc4d58c64b1dce34d89e1d445af04ba7f5
--- /dev/null
+++ b/recipe_modules/step/tests/timeout.py
@@ -0,0 +1,34 @@
+# Copyright 2017 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 import recipe_api
+
+
+DEPS = [
+ 'properties',
+ 'step',
+]
+
+
+PROPERTIES = {
+ 'timeout': recipe_api.Property(default=0, kind=int),
+}
+
+
+def RunSteps(api, timeout):
+ # Timeout causes the recipe engine to raise an exception if your step takes
+ # longer to run than you allow. Units are seconds.
+ try:
+ api.step('timeout', ['sleep', '20'], timeout=1)
+ except api.step.StepTimeout:
+ api.step('caught timeout', [])
+ raise
+
+
+def GenTests(api):
+ yield (
+ api.test('timeout') +
+ api.properties(timeout=1) +
+ api.step_data('timeout', times_out_after=20)
+ )
« no previous file with comments | « recipe_modules/step/tests/subannotations.expected/basic.json ('k') | recipe_modules/step/tests/timeout.expected/timeout.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698