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

Unified Diff: recipe_modules/step/tests/stdio.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/stdio.py
diff --git a/recipe_modules/step/tests/stdio.py b/recipe_modules/step/tests/stdio.py
new file mode 100644
index 0000000000000000000000000000000000000000..39fce9e0036d1908d3c6543019bcbb8187657d04
--- /dev/null
+++ b/recipe_modules/step/tests/stdio.py
@@ -0,0 +1,33 @@
+# 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.
+
+DEPS = [
+ 'raw_io',
+ 'step',
+]
+
+
+def RunSteps(api):
+ # Read command's stdout and stderr.
+ step_result = api.step('echo', ['echo', 'Hello World'],
+ stdout=api.raw_io.output(),
+ stderr=api.raw_io.output())
+
+ # Pass stuff to command's stdin, read it from stdout.
+ step_result = api.step('cat', ['cat'],
+ stdin=api.raw_io.input_text(data='hello'),
+ stdout=api.raw_io.output('out'))
+
+ # Example of auto-mocking stdout. '\n' appended to mock 'echo' behavior.
+ step_result = api.step(
+ 'automock',
+ ['echo', 'huh'],
+ stdout=api.raw_io.output('out'),
+ step_test_data=(
+ lambda: api.raw_io.test_api.stream_output('huh\n')))
+ assert step_result.stdout == 'huh\n'
+
+
+def GenTests(api):
+ yield api.test('basic')
« no previous file with comments | « recipe_modules/step/tests/nested.expected/basic.json ('k') | recipe_modules/step/tests/stdio.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698