]> git.vpit.fr Git - perl/modules/IPC-MorseSignals.git/blobdiff - t/10-base.t
Importing IPC-MorseSignals-0.04.tar.gz
[perl/modules/IPC-MorseSignals.git] / t / 10-base.t
index 628e8f0acd77347d13d3f8cb5d3be993986109f5..3eb877ccc3be3ae25638e2c35b135f18f5969e1d 100644 (file)
@@ -1,48 +1,50 @@
 #!perl -T
 
-use Test::More tests => 6;
+use Test::More tests => 4 * 5;
 
-use POSIX qw/SIGTERM SIGKILL EXIT_SUCCESS/;
+use POSIX qw/SIGINT SIGTERM SIGKILL EXIT_SUCCESS EXIT_FAILURE WIFEXITED WEXITSTATUS/;
 
 use IPC::MorseSignals qw/msend mrecv/;
 
-sub try2send {
+sub trysend {
  my ($msg, $desc) = @_;
- pipe $rdr, $wtr or die "pipe() failed : $!";
- my $pid = fork;
- if (!defined $pid) {
-  die "fork() failed : $!";
- } elsif ($pid == 0) {
-  close $rdr;
-  local @SIG{qw/USR1 USR2/} = mrecv sub {
-   print $wtr $_[0], "\n";
-   exit EXIT_SUCCESS;
+ my $speed = 2 ** 16;
+ my $ok = 0;
+SPEED:
+ while (($speed > 1) && !$ok) {
+  $speed /= 2;
+  my $pid = fork;
+  if (!defined $pid) {
+   die "$desc: fork() failed : $!";
+  } elsif ($pid == 0) {
+   local @SIG{qw/USR1 USR2/} = mrecv sub {
+    exit(($msg eq $_[0]) ? EXIT_SUCCESS : EXIT_FAILURE);
+   };
+   1 while 1;
+   exit EXIT_FAILURE;
+  }
+  eval {
+   local $SIG{ALRM} = sub { die 'timeout' };
+   my $a = (int(100 * (3 * length $msg) / $speed) || 1);
+   $a = 10 if $a > 10;
+   alarm $a;
+   msend $msg => $pid, speed => $speed;
+   waitpid $pid, 0;
+   $ok = (WIFEXITED($?) && (WEXITSTATUS($?) == EXIT_SUCCESS));
   };
-  1 while 1;
- }
- close $wtr or die "close() failed : $!";
- msend $msg => $pid, 100;
- eval {
-  local $SIG{ALRM} = sub { die };
-  alarm 5;
-  waitpid $pid, 0;
   alarm 0;
- };
- if ($@) {
-  kill SIGINT,  $pid;
-  kill SIGTERM, $pid;
-  kill SIGKILL, $pid;
-  die "$@ in $desc";
+  if ($@) {
+   kill SIGINT,  $pid;
+   kill SIGTERM, $pid;
+   kill SIGKILL, $pid;
+  }
  }
- my $recv = do { local $/; <$rdr> };
- close $rdr;
- chomp $recv;
- ok($msg eq $recv, $desc);
+ ok($speed >= 1, $desc);
 }
 
-try2send 'hello', 'ascii';
-try2send 'éàùçà', 'extended';
-try2send '€€€', 'unicode';
-try2send 'a€bécàd€e', 'mixed';
-try2send "\x{FF}", 'lots of bits';
-try2send "a\0b", 'null character';
+for (1 .. 5) {
+ trysend 'hello', 'ascii';
+ trysend "\0" x 10, 'few bits';
+ trysend "\x{FF}" x 10, 'lots of bits';
+ trysend "a\0b", 'null character';
+}