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

use strict;
use warnings FATAL => 'all';

use Test::More tests => 58;
use Test::Fatal;

{
    use Function::Parameters {};  # ZERO BABIES

    is eval('fun foo :() {}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    use Function::Parameters { pound => 'function' };

    is eval('fun foo :() {}; 1'), undef;
    like $@, qr/syntax error/;

    pound foo_1($x) { $x }
    is foo_1(2 + 2), 4;

    like exception { foo_1(5, 6) }, qr/Too many arguments/;

    no Function::Parameters qw(pound);

    is eval('pound foo() {}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    use Function::Parameters { pound => 'method' };

    is eval('fun foo () {}; 1'), undef;
    like $@, qr/syntax error/;

    pound foo_2() { $self }
    is foo_2(2 + 2), 4;

    like exception { foo_2(5, 6) }, qr/Too many arguments/;

    no Function::Parameters qw(pound);

    is eval('pound unfoo :() {}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    is eval('pound unfoo( ){}; 1'), undef;
    like $@, qr/syntax error/;

    use Function::Parameters { pound => 'classmethod' };

    is eval('fun foo () {}; 1'), undef;
    like $@, qr/syntax error/;

    pound foo_3() { $class }
    is foo_3(2 + 2), 4;

    like exception { foo_3(5, 6) }, qr/Too many arguments/;

    no Function::Parameters;

    is eval('pound unfoo :lvalue{}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    use Function::Parameters { pound => 'function_strict' };

    is eval('fun foo :() {}; 1'), undef;
    like $@, qr/syntax error/;

    pound foo_4($x) { $x }
    is foo_4(2 + 2), 4;

    like exception { foo_4(5, 6) }, qr/Too many arguments/;

    no Function::Parameters qw(pound);

    is eval('pound foo() {}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    use Function::Parameters { pound => 'method_strict' };

    is eval('fun foo () {}; 1'), undef;
    like $@, qr/syntax error/;

    pound foo_5() { $self }
    is foo_5(2 + 2), 4;

    like exception { foo_5(5, 6) }, qr/Too many arguments/;

    no Function::Parameters qw(pound);

    is eval('pound unfoo :() {}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    is eval('pound unfoo( ){}; 1'), undef;
    like $@, qr/syntax error/;

    use Function::Parameters { pound => 'classmethod_strict' };

    is eval('fun foo () {}; 1'), undef;
    like $@, qr/syntax error/;

    pound foo_6() { $class }
    is foo_6(2 + 2), 4;

    like exception { foo_6(5, 6) }, qr/Too many arguments/;

    no Function::Parameters;

    is eval('pound unfoo :lvalue{}; 1'), undef;
    like $@, qr/syntax error/;
}

{
    use Function::Parameters qw(method);

    is method () { $self + 2 }->(2), 4;
    is eval('fun () {}'), undef;
    like $@, qr/syntax error/;
}

{
    use Function::Parameters qw(method fun);

    is method () { $self + 2 }->(2), 4;
    is fun ($x) { $x + 2 }->(2), 4;
}

{
    use Function::Parameters qw(:std), { def => 'function' };

    is method () { $self + 2 }->(2), 4;
    is fun ($x) { $x + 2 }->(2), 4;
    is def ($x) { $x + 2 }->(2), 4;
}

like exception { Function::Parameters->import(":QQQQ") }, qr/not exported/;

like exception { Function::Parameters->import({":QQQQ" => "function"}) }, qr/valid identifier/;

like exception { Function::Parameters->import({"jetsam" => "QQQQ"}) }, qr/valid type/;

like exception { Function::Parameters->import("asdf") }, qr/not exported/;

for my $kw ('', '42', 'A::B', 'a b') {
    like exception { Function::Parameters->import({ $kw => 'function' }) }, qr/valid identifier /;
}