Cmd-Dwarf

 view release on metacpan or  search on metacpan

examples/test-validate-json-body/app/t/00_dwarf/plugin/cors.t  view on Meta::CPAN

use Dwarf::Pragma;
use Dwarf;
use Encode;
use Test::More 0.88;

sub c {
	my %additional_env = @_;

	my $env = {
		'SCRIPT_NAME'       => '/dwarf/test/api/ping.json',
		'SERVER_NAME'       => 'perl.org',
		'HTTP_CONNECTION'   => 'TE, close',
		'REQUEST_METHOD'    => 'POST',
		'SCRIPT_URI'        => 'http://www.perl.org/dwarf/test/api/ping.json',
		'SCRIPT_FILENAME'   => '/dwarf/test/api/ping.json',
		'SERVER_SOFTWARE'   => 'Apache/1.3.27 (Unix) ',
		'HTTP_TE'           => 'deflate,gzip;q=0.3',
		'QUERY_STRING'      => 'hoge=a&name[]=hoge&name[1]=fuga',
		'REMOTE_PORT'       => '1855',
		'HTTP_USER_AGENT'   => 'Mozilla/5.0 (Linux; U; Android 4.0.1; ja-jp; Galaxy Nexus Build/ITL41D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30',
		'SERVER_PORT'       => '80',
		'REMOTE_ADDR'       => '127.0.0.1',
		'CONTENT_TYPE'      => 'application/x-www-form-urlencoded',
		'SERVER_PROTOCOL'   => 'HTTP/1.1',
		'PATH'              => '/usr/local/bin:/usr/bin:/bin',
		'PATH_INFO'         => '/dwarf/test/api/ping.json',
		'REQUEST_URI'       => '/dwarf/test/api/ping.json',
		'GATEWAY_INTERFACE' => 'CGI/1.1',
		'SCRIPT_URL'        => '/dwarf/test/api/ping.json',
		'SERVER_ADDR'       => '127.0.0.1',
		'DOCUMENT_ROOT'     => '/home/develop',
		'HTTP_HOST'         => 'www.perl.org'
	};

	for my $k (keys %additional_env) {
		$env->{$k} = $additional_env{$k};
	}

	my $c = Dwarf->new(env => $env);
	$c->request_handler_prefix('');

	return $c;
}

subtest "Preflight Request" => sub {
	my $c = c(
		REQUEST_METHOD => 'OPTIONS',
		CONTENT_TYPE   => 'application/json',
		QUERY_STRING   => '{ "hoge": 1 }',
	);

	$c->load_plugins(
		'CORS' => {
			origin      => 'http://127.0.0.1',
			credentials => 1,
			headers     => [qw/X-Requested-With Content-Type/],
			maxage      => 7200,
		},
	);

	my $res = $c->to_psgi;
	my %headers = @{ $res->[1] };

	is $res->[0], 200;
	is $headers{'Access-Control-Allow-Origin'}, 'http://127.0.0.1';
	is $headers{'Access-Control-Allow-Headers'}, 'X-Requested-With,Content-Type';
	is $headers{'Access-Control-Allow-Credentials'}, 'true';
	is $headers{'Access-Control-Max-Age'}, 7200; 
};

subtest "CORS Request" => sub {
	my $c = c(
	);

	$c->load_plugins(
		'CORS' => {
			origin      => 'http://127.0.0.1',
			credentials => 1,
			headers     => [qw/X-Requested-With Content-Type/],
			maxage      => 7200,
		},
	);

	my $res = $c->to_psgi;
	my %headers = @{ $res->[1] };

	is $res->[0], 200;
	is $headers{'Access-Control-Allow-Origin'}, 'http://127.0.0.1';
	is $headers{'Access-Control-Allow-Headers'}, 'X-Requested-With,Content-Type';
	is $headers{'Access-Control-Allow-Credentials'}, 'true';
};

done_testing();



( run in 0.896 second using v1.01-cache-2.11-cpan-39bf76dae61 )