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

use strict;
use warnings;
use Test::More;
use Test::Deep;
use Test::Exception;
use Catmandu::Fix::upcase;
use Catmandu::Fix::downcase;
use Catmandu::Fix::Condition::exists;
use Catmandu::Fix::reject;

my $pkg;
BEGIN {
    $pkg = 'Catmandu::Fix::Parser';
    use_ok $pkg;
}

my $parser = $pkg->new;

isa_ok $parser, $pkg;
can_ok $parser, 'parse';

lives_ok { $parser->parse("") } 'parse empty string';
lives_ok { $parser->parse("    \n    ") } 'parse whitespace only string';
dies_ok { $parser->parse("if exists(foo)") } 'die on if without end';
dies_ok { $parser->parse("if end") } 'die on if without condition';
dies_ok { $parser->parse("unless exists(foo)") } 'die on unless without end';
dies_ok { $parser->parse("unless end") } 'die on unless without condition';
dies_ok { $parser->parse("foo()") } 'die on unknown fix';

my $foo_exists = Catmandu::Fix::Condition::exists->new("foo");
my $bar_exists = Catmandu::Fix::Condition::exists->new("bar");
my $upcase_foo = Catmandu::Fix::upcase->new("foo");
my $downcase_foo = Catmandu::Fix::downcase->new("foo");
my $reject = Catmandu::Fix::reject->new;

cmp_deeply $parser->parse(""), [];

cmp_deeply $parser->parse("# a comment
    # another comment
    #
    downcase(foo) # yet another comment"), [
    $downcase_foo,
], "comments";

cmp_deeply $parser->parse("upcase(foo)"), [
    $upcase_foo,
];

cmp_deeply $parser->parse(q|upcase('foo')|), [
    $upcase_foo,
];

cmp_deeply $parser->parse(q|upcase("foo")|), [
    $upcase_foo,
];

cmp_deeply $parser->parse("upcase(foo) downcase(foo)"), [
    $upcase_foo,
    $downcase_foo,
];

cmp_deeply $parser->parse("upcase(foo) downcase(foo)"),
           $parser->parse("upcase(foo); downcase(foo)");

cmp_deeply $parser->parse("upcase(foo) downcase(foo)"),
           $parser->parse("upcase(foo); downcase(foo);");

cmp_deeply $parser->parse("if exists(foo) end"), [
    $foo_exists,
];

$foo_exists->pass_fixes([$downcase_foo]);
$foo_exists->fail_fixes([]);
cmp_deeply $parser->parse("if exists(foo) downcase(foo) end"), [
    $foo_exists,
];

$foo_exists->pass_fixes([$downcase_foo]);
$foo_exists->fail_fixes([$upcase_foo]);
cmp_deeply $parser->parse("if exists(foo) downcase(foo) else upcase(foo) end"), [
    $foo_exists,
];

$foo_exists->pass_fixes([]);
$foo_exists->fail_fixes([$downcase_foo]);
cmp_deeply $parser->parse("unless exists(foo) downcase(foo) end"), [
    $foo_exists,
];

$foo_exists->pass_fixes([$bar_exists, $upcase_foo]);
$foo_exists->fail_fixes([]);
$bar_exists->pass_fixes([$downcase_foo]);
$bar_exists->fail_fixes([]);
cmp_deeply $parser->parse("if exists(foo) if exists(bar) downcase(foo) end upcase(foo) end"), [
    $foo_exists,
];

$foo_exists->pass_fixes([]);
$foo_exists->fail_fixes([$reject]);
cmp_deeply $parser->parse("select exists(foo)"), [
    $foo_exists,
];

$foo_exists->pass_fixes([$reject]);
$foo_exists->fail_fixes([]);
cmp_deeply $parser->parse("reject exists(foo)"), [
    $foo_exists,
];

done_testing 25;