@@ -151,23 +151,15 @@ defmodule ExUnit.CaptureIO do
151
151
@ spec capture_io ( atom ( ) | pid ( ) | String . t ( ) | keyword ( ) , ( -> any ( ) ) ) :: String . t ( )
152
152
def capture_io ( device_pid_input_or_options , fun )
153
153
154
- def capture_io ( device , fun ) when is_atom ( device ) and is_function ( fun , 0 ) do
155
- { _result , capture } = with_io ( device , fun )
154
+ def capture_io ( device_or_pid , fun )
155
+ when ( is_atom ( device_or_pid ) or is_pid ( device_or_pid ) ) and is_function ( fun , 0 ) do
156
+ { _result , capture } = with_io ( device_or_pid , fun )
156
157
capture
157
158
end
158
159
159
- def capture_io ( pid , fun ) when is_pid ( pid ) and is_function ( fun , 0 ) do
160
- { _result , capture } = with_io ( pid , fun )
161
- capture
162
- end
163
-
164
- def capture_io ( input , fun ) when is_binary ( input ) and is_function ( fun , 0 ) do
165
- { _result , capture } = with_io ( input , fun )
166
- capture
167
- end
168
-
169
- def capture_io ( options , fun ) when is_list ( options ) and is_function ( fun , 0 ) do
170
- { _result , capture } = with_io ( options , fun )
160
+ def capture_io ( input_or_options , fun )
161
+ when ( is_binary ( input_or_options ) or is_list ( input_or_options ) ) and is_function ( fun , 0 ) do
162
+ { _result , capture } = with_io ( input_or_options , fun )
171
163
capture
172
164
end
173
165
@@ -178,28 +170,9 @@ defmodule ExUnit.CaptureIO do
178
170
"""
179
171
@ spec capture_io ( atom ( ) | pid ( ) , String . t ( ) | keyword ( ) , ( -> any ( ) ) ) :: String . t ( )
180
172
def capture_io ( device_or_pid , input_or_options , fun )
181
-
182
- def capture_io ( device , input , fun )
183
- when is_atom ( device ) and is_binary ( input ) and is_function ( fun , 0 ) do
184
- { _result , capture } = with_io ( device , input , fun )
185
- capture
186
- end
187
-
188
- def capture_io ( device , options , fun )
189
- when is_atom ( device ) and is_list ( options ) and is_function ( fun , 0 ) do
190
- { _result , capture } = with_io ( device , options , fun )
191
- capture
192
- end
193
-
194
- def capture_io ( pid , input , fun )
195
- when is_pid ( pid ) and is_binary ( input ) and is_function ( fun , 0 ) do
196
- { _result , capture } = with_io ( pid , input , fun )
197
- capture
198
- end
199
-
200
- def capture_io ( pid , options , fun )
201
- when is_pid ( pid ) and is_list ( options ) and is_function ( fun , 0 ) do
202
- { _result , capture } = with_io ( pid , options , fun )
173
+ when ( is_atom ( device_or_pid ) or is_pid ( device_or_pid ) ) and
174
+ ( is_binary ( input_or_options ) or is_list ( input_or_options ) ) and is_function ( fun , 0 ) do
175
+ { _result , capture } = with_io ( device_or_pid , input_or_options , fun )
203
176
capture
204
177
end
205
178
@@ -262,7 +235,7 @@ defmodule ExUnit.CaptureIO do
262
235
263
236
def with_io ( device , input , fun )
264
237
when is_atom ( device ) and is_binary ( input ) and is_function ( fun , 0 ) do
265
- with_io ( device , [ input: input ] , fun )
238
+ do_with_io ( map_dev ( device ) , [ input: input ] , fun )
266
239
end
267
240
268
241
def with_io ( device , options , fun )
@@ -272,27 +245,28 @@ defmodule ExUnit.CaptureIO do
272
245
273
246
def with_io ( pid , input , fun )
274
247
when is_pid ( pid ) and is_binary ( input ) and is_function ( fun , 0 ) do
275
- with_io ( pid , [ input: input ] , fun )
248
+ do_with_io ( pid , [ input: input ] , fun )
276
249
end
277
250
278
251
def with_io ( pid , options , fun )
279
252
when is_pid ( pid ) and is_list ( options ) and is_function ( fun , 0 ) do
280
253
do_with_io ( pid , options , fun )
281
254
end
282
255
283
- defp map_dev ( :stdio ) , do: :standard_io
256
+ defp map_dev ( :standard_io ) , do: self ( )
257
+ defp map_dev ( :stdio ) , do: self ( )
284
258
defp map_dev ( :stderr ) , do: :standard_error
285
259
defp map_dev ( other ) , do: other
286
260
287
- defp do_with_io ( device_or_pid , options , fun )
288
- when device_or_pid == :standard_io or is_pid ( device_or_pid ) do
261
+ defp do_with_io ( pid , options , fun ) when is_pid ( pid ) do
289
262
prompt_config = Keyword . get ( options , :capture_prompt , true )
290
263
encoding = Keyword . get ( options , :encoding , :unicode )
291
264
input = Keyword . get ( options , :input , "" )
292
265
293
- original_gl = Process . group_leader ( )
266
+ { :group_leader , original_gl } =
267
+ Process . info ( pid , :group_leader ) || { :group_leader , Process . group_leader ( ) }
268
+
294
269
{ :ok , capture_gl } = StringIO . open ( input , capture_prompt: prompt_config , encoding: encoding )
295
- pid = if is_pid ( device_or_pid ) , do: device_or_pid , else: self ( )
296
270
297
271
try do
298
272
Process . group_leader ( pid , capture_gl )
@@ -302,7 +276,7 @@ defmodule ExUnit.CaptureIO do
302
276
end
303
277
end
304
278
305
- defp do_with_io ( device , options , fun ) do
279
+ defp do_with_io ( device , options , fun ) when is_atom ( device ) do
306
280
input = Keyword . get ( options , :input , "" )
307
281
encoding = Keyword . get ( options , :encoding , :unicode )
308
282
0 commit comments