View Source ExUnit.CaptureIO (ExUnit v1.14.5)
Functionality to capture IO for testing.
Examples
defmodule AssertionTest do
use ExUnit.Case
import ExUnit.CaptureIO
test "example" do
assert capture_io(fn -> IO.puts("a") end) == "a\n"
end
test "another example" do
assert with_io(fn ->
IO.puts("a")
IO.puts("b")
2 + 2
end) == {4, "a\nb\n"}
end
end
Link to this section Summary
Functions
Captures IO generated when evaluating fun
.
Captures IO generated when evaluating fun
.
Captures IO generated when evaluating fun
.
Invokes the given fun
and returns the result and captured output.
Invokes the given fun
and returns the result and captured output.
Invokes the given fun
and returns the result and captured output.
Link to this section Functions
Captures IO generated when evaluating fun
.
Returns the binary which is the captured output.
By default, capture_io
replaces the group_leader
(:stdio
)
for the current process. Capturing the group leader is done per
process and therefore can be done concurrently.
However, the capturing of any other named device, such as :stderr
,
happens globally and persists until the function has ended. While this means
it is safe to run your tests with async: true
in many cases, captured output
may include output from a different test and care must be taken when using
capture_io
with a named process asynchronously.
A developer can set a string as an input. The default input is an empty string. If capturing a named device asynchronously, an input can only be given to the first capture. Any further capture that is given to a capture on that device will raise an exception and would indicate that the test should be run synchronously.
Similarly, once a capture on a named device has begun, the encoding on that device cannot be changed in a subsequent concurrent capture. An error will be raised in this case.
IO devices
You may capture the IO from any registered IO device. The device name given must be an atom representing the name of a registered process. In addition, Elixir provides two shortcuts:
:stdio
- a shortcut for:standard_io
, which maps to the currentProcess.group_leader/0
in Erlang:stderr
- a shortcut for the named process:standard_error
provided in Erlang
Options
:input
- An input to the IO device, defaults to""
.:capture_prompt
- Define if prompts (specified as arguments toIO.get*
functions) should be captured. Defaults totrue
. For IO devices other than:stdio
, the option is ignored.:encoding
(since v1.10.0) - encoding of the IO device. Allowed values are:unicode
(default) and:latin1
.
Examples
iex> capture_io(fn -> IO.write("john") end) == "john"
true
iex> capture_io(:stderr, fn -> IO.write(:stderr, "john") end) == "john"
true
iex> capture_io(:standard_error, fn -> IO.write(:stderr, "john") end) == "john"
true
iex> capture_io("this is input", fn ->
...> input = IO.gets("> ")
...> IO.write(input)
...> end) == "> this is input"
true
iex> capture_io([input: "this is input", capture_prompt: false], fn ->
...> input = IO.gets("> ")
...> IO.write(input)
...> end) == "this is input"
true
Returning values
As seen in the examples above, capture_io
returns the captured output.
If you want to also capture the result of the function executed,
use with_io/2
.
Captures IO generated when evaluating fun
.
See capture_io/1
for more information.
Captures IO generated when evaluating fun
.
See capture_io/1
for more information.
Invokes the given fun
and returns the result and captured output.
It accepts the same arguments and options as capture_io/1
.
Examples
{result, output} =
with_io(fn ->
IO.puts("a")
IO.puts("b")
2 + 2
end)
assert result == 4
assert output == "a\nb\n"
Invokes the given fun
and returns the result and captured output.
See with_io/1
for more information.
Invokes the given fun
and returns the result and captured output.
See with_io/1
for more information.