File: urlencoded.t

package info (click to toggle)
libhttp-entity-parser-perl 0.25-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 476 kB
  • sloc: perl: 394; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,010 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use strict;
use warnings;
use Test::More;
require "./t/Util.pm";
t::Util->import();
use HTTP::Entity::Parser;
use Cwd;
use File::Spec::Functions;
use Hash::MultiValue;

my $path = catdir( getcwd(), 't', '02_http_body', 'data', 'urlencoded' );

for my $i ( 1..6 ) {
    my $test    = sprintf( "%03d", $i );

    my $headers = paml_loadfile( catfile( $path, "$test-headers.pml" ) );
    open( my $content, '<:unix', catfile( $path, "$test-content.dat" ) );
    my $results = paml_loadfile( catfile( $path, "$test-results.pml" ) );
    my $env = build_env($headers, $content);

    my $parser = HTTP::Entity::Parser->new();
    $parser->register('application/x-www-form-urlencoded','HTTP::Entity::Parser::UrlEncoded');
    my ($params, $uploads) = $parser->parse($env);

    my $hash = Hash::MultiValue->new(@$params);
    is_deeply([$hash->keys], $results->{param_order}, "[$i] param_order");
    is_deeply($hash->as_hashref_mixed, $results->{param}, "[$i] param");
    is_deeply($uploads, []);
}

done_testing;