⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.177
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
.cpan
/
build
/
YAML-LibYAML-0.89-0
/
t
/
View File Name :
regexp.t
use FindBin '$Bin'; use lib $Bin; use TestYAMLTests tests => 19; use Devel::Peek(); $YAML::XS::LoadBlessed = 1; my $rx1 = qr/5050/; my $yaml1 = Dump $rx1; my $rx2 = qr/99999/; bless $rx2, 'Classy'; my $yaml2 = Dump $rx2; my $rx3 = qr/^edcba/mi; my $yaml3 = Dump $rx3; sub perl514 { # https://rt.cpan.org/Ticket/Display.html?id=62266 skip "FIXME - perl-5.14 regexp stringification is different", shift || 1 if $] > 5.013 or $] < 5.010; } SKIP: { perl514 5; is $yaml1, <<'...', 'Regular regexp dumps'; --- !!perl/regexp (?-xism:5050) ... is $yaml2, <<'...', 'Blessed regular regexp dumps'; --- !!perl/regexp:Classy (?-xism:99999) ... is $yaml3, <<'...', 'Regexp with flags dumps'; --- !!perl/regexp (?mi-xs:^edcba) ... my $rx4 = bless $rx3, 'Bossy'; my $yaml4 = Dump $rx4; is $yaml4, <<'...', 'Blessed regexp with flags dumps'; --- !!perl/regexp:Bossy (?mi-xs:^edcba) ... my $unicode = "\x{100}"; my $rx5 = qr/\Q$unicode\E/; my $yaml5 = Dump $rx5; is $yaml5, <<"...", 'Unicode regexp dumps'; --- !!perl/regexp (?-xism:\xC4\x80) ... } my $rx1_ = Load($yaml1); is ref($rx1_), 'Regexp', 'Can Load a regular regexp'; SKIP: { perl514; is $rx1_, '(?-xism:5050)', 'Loaded regexp value is correct'; } like "404050506060", $rx1_, 'Loaded regexp works'; my $rx2_ = Load($yaml2); is ref($rx2_), 'Classy', 'Can Load a blessed regexp'; SKIP: { perl514; is $rx2_, '(?-xism:99999)', 'Loaded blessed regexp value is correct'; } ok "999999999" =~ $rx2_, 'Loaded blessed regexp works'; my $rx3_ = Load($yaml3); is ref($rx3_), 'Regexp', 'Can Load a regexp with flags'; SKIP: { perl514; is $rx3_, '(?mi-xs:^edcba)', 'Loaded regexp with flags value is correct'; } like "foo\neDcBA\n", $rx3_, 'Loaded regexp with flags works'; my $rx4_ = Load("--- !!perl/regexp (?msix:123)\n"); is ref($rx4_), 'Regexp', 'Can Load a regexp with all flags'; SKIP: { perl514; is $rx4_, '(?msix:123)', 'Loaded regexp with all flags value is correct'; } my $rx5_ = Load("--- !!perl/regexp (?msix:\xC4\x80)\n"); is ref($rx5_), 'Regexp', 'Can Load a unicode regexp'; SKIP: { perl514; is $rx5_, "(?msix:\x{100})", 'Loaded unicode regexp value is correct'; } my $rx6 = Load("--- !!perl/regexp foo\n"); my $rx6_yaml = Dump $rx6; $rx6 = Load($rx6_yaml); my $rx6_yaml2 = Dump Load Dump $rx6; cmp_ok($rx6_yaml2, 'eq', $rx6_yaml, "Regex roundtrip ok");