File: 13regexp.t

package info (click to toggle)
libfuture-asyncawait-perl 0.70-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 528 kB
  • sloc: perl: 2,647; ansic: 118; pascal: 34; makefile: 3
file content (46 lines) | stat: -rw-r--r-- 757 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/perl

use v5.14;
use warnings;

use Test2::V0;

use Future;

use Future::AsyncAwait;

# Try to trigger SAVEt_FREEPV
{
   my $f1 = Future->new;
   my $fret = (async sub {
      my $bytes = "abcdefghijklmnopq";
      my $maxchunk = 6;
      my @chunks = $bytes =~ m/(.{1,$maxchunk})/gs;
      my $ret = "";

      await $f1;
      return scalar @chunks;
   })->();

   $f1->done;
   is( scalar $fret->get, 3, 'chunks' );
}

# await over regexp (RT129321)
{
   my $f1 = Future->new;
   my $fret = (async sub {
      my $string = "Hello, world";
      $string =~ m/^(.*),/;

      await $f1;

      return $1, $-[1], $+[1];
   })->();

   $f1->done;
   is( [ $fret->get ], [ "Hello", 0, 5 ],
      'await restores regexp context' );
}

done_testing;