Cmd-Dwarf

 view release on metacpan or  search on metacpan

share/app/lib/Dwarf/Test.pm  view on Meta::CPAN

package Dwarf::Test;
use Dwarf::Pragma;
use parent 'Exporter';
use HTTP::Request::Common ();
use Plack::Test;
use Test::More;
use UNIVERSAL::require;

our @EXPORT = qw/GET POST is_success get_ok post_ok post_redirect get_not_ok post_not_ok/;

sub GET  { HTTP::Request::Common::GET(@_) }
sub POST { HTTP::Request::Common::POST(@_) }

sub is_success {
	my ($res, $path) = @_;
	my $desc = $res->status_line;
	$desc .= ', redirected to ' . ($res->header("Location") || "") if ($res->is_redirect);
	if (!$res->is_redirect) {
		ok $res->is_success, "$path: $desc";
	} else {
		ok $res->is_redirect, "$path: $desc";
	}
}

sub is_failure {
	my ($res, $path) = @_;
	my $desc = $res->status_line;
	ok !$res->is_success, "$path: $desc";
}

sub get_ok {
	my ($cb, $path) = @_;
	my $res = $cb->(GET $path);
	is_success($res, $path);
	$res;
}

sub post_ok {
	my ($cb, $path, @args) = @_;
	my $res = $cb->(POST $path, @args);
	is_success($res, $path);
	$res;
}

sub get_redirect {
	my ($cb, $path) = @_;
	my $res = $cb->(GET $path);
	ok !$res->is_success, "$path: " . $res->status_line;
	ok $res->is_redirect, "$path: redirected to " . ($res->header("Location") || '');
	$res;
}

sub post_redirect {
	my ($cb, $path, $param) = @_;
	my $res = $cb->(POST $path, $param);
	ok !$res->is_success, "$path: " . $res->status_line;
	ok $res->is_redirect, "$path: redirected to " . ($res->header("Location") || '');
	$res;
}

sub get_not_ok {
	my ($cb, $path) = @_;
	my $res = $cb->(GET $path);
	is_failure($res, $path);
	$res;
}

sub post_not_ok {
	my ($cb, $path, @args) = @_;
	my $res = $cb->(POST $path, @args);
	is_failure($res, $path);
	$res;



( run in 0.793 second using v1.01-cache-2.11-cpan-d8267643d1d )