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

use warnings;
use strict;
use utf8;
use open qw(:std :utf8);
use lib qw(lib ../lib ../../lib);

use Test::More tests => 8;
use Encode qw(decode encode);


BEGIN {
    use_ok 'Test::Mojo';
    use_ok 'Mojolicious::Plugin::Vparam';
}

{
    package MyApp;
    use Mojo::Base 'Mojolicious';

    sub startup {
        my ($self) = @_;
        $self->log->level( $ENV{MOJO_LOG_LEVEL} = 'warn' );
        $self->plugin('Vparam');
    }
    1;
}

my $t = Test::Mojo->new('MyApp');
ok $t, 'Test Mojo created';

note 'multiline';
{
    $t->app->routes->post("/test/multiline/vparam")->to( cb => sub {
        my ($self) = @_;

        is_deeply $self->vparam(
            int1        => 'int',
            multiline   => 1,
        ), [], 'int1 = []';

        is_deeply $self->vparam(
            int2        => 'int',
            multiline   => 1,
        ), [111], 'int2 = [111]';

        is_deeply $self->vparam(
            int3        => 'int',
            multiline   => 1,
        ), [1,2,3], 'int3 = [1,2,3]';

#        is_deeply $self->vparam(
#            int4        => '@int',
#            multiline   => 1,
#        ), [[4,5,6], [7,8]], 'int4 = [[4,5,6], [7,8]]';
#        is_deeply $self->vparam(
#            int4        => 'int',
#            multiline   => 1,
#        ), ["4\n5\r\n6", "7\n8"], 'int4 as strings';

        $self->render(text => 'OK.');
    });

    $t->post_ok("/test/multiline/vparam", form => {

        int1      => "",
        int2      => "111",
        int3      => "1 \n 2  \r\n3",
#        int4      => [" 4 \n5\r\n6", "7\n8"],

    })-> status_is( 200 );

    diag decode utf8 => $t->tx->res->body unless $t->tx->success;
}


=head1 COPYRIGHT

Copyright (C) 2011 Dmitry E. Oboukhov <unera@debian.org>

Copyright (C) 2011 Roman V. Nikolaev <rshadow@rambler.ru>

All rights reserved. If You want to use the code You
MUST have permissions from Dmitry E. Oboukhov AND
Roman V Nikolaev.

=cut