Fix bug 2681, change the test not to use the shell and use 3+arg
[p5sagit/p5-mst-13.2.git] / t / io / openpid.t
1 #!./perl
2
3 #####################################################################
4 #
5 # Test for process id return value from open
6 # Ronald Schmidt (The Software Path) RonaldWS@software-path.com
7 #
8 #####################################################################
9
10 BEGIN {
11     chdir 't' if -d 't';
12     @INC = '../lib';
13     require './test.pl';
14 }
15
16 if ($^O eq 'dos' || $^O eq 'MacOS') {
17     skip_all("no multitasking");
18 }
19
20 plan tests => 10;
21
22
23 use Config;
24 $| = 1;
25 $SIG{PIPE} = 'IGNORE';
26
27 my $perl = which_perl();
28
29 #
30 # commands run 4 perl programs.  Two of these programs write a
31 # short message to STDOUT and exit.  Two of these programs
32 # read from STDIN.  One reader never exits and must be killed.
33 # the other reader reads one line, waits a few seconds and then
34 # exits to test the waitpid function.
35 #
36 @cmd1 = ($perl,'-I../lib','-e',
37          q{$|=1; print qq[first process\n]; sleep 300;});
38 @cmd2 = ($perl,'-I../lib','-e',
39          q{$|=1; print qq[second process\n]; sleep 30;});
40 @cmd3 = ($perl,'-I../lib','-e',
41          "print <>;"); # hangs waiting for end of STDIN
42 @cmd4 = ($perl,'-I../lib','-e',
43          "print scalar <>;");
44
45 #warn "#$cmd1\n#$cmd2\n#$cmd3\n#$cmd4\n";
46
47 # start the processes
48 ok( $pid1 = open(FH1, "-|", @cmd1), 'first process started');
49 ok( $pid2 = open(FH2, "-|", @cmd2), '    second' );
50 ok( $pid3 = open(FH3, "|-", @cmd3), '    third'  );
51 ok( $pid4 = open(FH4, "|-", @cmd4), '    fourth' );
52
53 print "# pids were $pid1, $pid2, $pid3, $pid4\n";
54
55 my $killsig = 'HUP';
56 $killsig = 1 unless $Config{sig_name} =~ /\bHUP\b/;
57
58 # get message from first process and kill it
59 chomp($from_pid1 = scalar(<FH1>));
60 is( $from_pid1, 'first process',    'message from first process' );
61
62 $kill_cnt = kill $killsig, $pid1;
63 is( $kill_cnt, 1,   'first process killed' ) ||
64   print "# errno == $!\n";
65
66 # get message from second process and kill second process and reader process
67 chomp($from_pid2 = scalar(<FH2>));
68 is( $from_pid2, 'second process',   'message from second process' );
69
70 $kill_cnt = kill $killsig, $pid2, $pid3;
71 is( $kill_cnt, 2,   'killing procs 2 & 3' ) ||
72   print "# errno == $!\n";
73
74
75 # send one expected line of text to child process and then wait for it
76 select(FH4); $| = 1; select(STDOUT);
77
78 printf FH4 "ok %d - text sent to fourth process\n", curr_test();
79 next_test();
80 print "# waiting for process $pid4 to exit\n";
81 $reap_pid = waitpid $pid4, 0;
82 is( $reap_pid, $pid4, 'fourth process reaped' );
83