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) |
+ ) |