The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

use strict;
use warnings;

use FindBin;
use lib "$FindBin::Bin/lib";

use URI::Escape;

our @paths;
our $iters;

BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 2;

	# add special paths to test here
	@paths = (
	            # all reserved in uri's
		    qw~ : / ? [ ] @ ! $ & ' ( ) * + ; = ~, ',' , '#',

		    # unreserved
		    'a'..'z','A'..'Z',0..9,qw( - . _ ~ ),
		    " ",

		    # just to test %2F/%
		    [ qw~ / / ~ ],

		    # testing %25/%25
		    [ qw~ % % ~ ],
		 );
}

use Test::More tests => 4*@paths * $iters;
use Catalyst::Test 'TestApp';

if ( $ENV{CAT_BENCHMARK} ) {
    require Benchmark;
    Benchmark::timethis( $iters, \&run_tests );

    # new dispatcher:
    # 11 wallclock secs (10.14 usr +  0.20 sys = 10.34 CPU) @ 15.18/s (n=157)
    # old dispatcher (r1486):
    # 11 wallclock secs (10.34 usr +  0.20 sys = 10.54 CPU) @ 13.76/s (n=145)
}
else {
    for ( 1 .. $iters ) {
        run_tests();
    }
}

sub run_tests {
    run_test_for($_) for @paths;
}

sub run_test_for {
    my $test = shift;

    my $path;
    if (ref $test) {
        $path = join "/", map uri_escape($_), @$test;
        $test = join '', @$test;
    } else {
        $path = uri_escape($test);
    }

    my $response;

    ok( $response = request("http://localhost/args/args/$path"), "Requested args for path $path");

    is( $response->content, $test, 'as args' );

    undef $response;

    ok( $response = request("http://localhost/args/params/$path"), "Requested params for path $path");

    is( $response->content, $test, 'as params' );
}