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

use strict;
use warnings;

use Test::More;
use Test::Exception;

require Enbld::Target::AttributeCollector;

my $file = 'archive-1.10.tar.gz';

my $no = Enbld::Target::AttributeCollector->new;
$no->add( 'ArchiveName', 'archive' );
$no->add( 'Version', '1.10' );
$no->add( 'Extension', 'tar.gz' );
$no->add( 'VersionForm', '\d{1,2}\.\d{1,2}(\.\d{1,2})?' );
$no->add( 'Filename' );
is( $no->Filename, $file, 'no parameter' );

my $empty = Enbld::Target::AttributeCollector->new;
throws_ok {
    $empty->add( 'Filename', '' );
} qr/ABORT:Attribute 'Filename' isn't defined/, 'empty parameter';

my $fixed = Enbld::Target::AttributeCollector->new;
$fixed->add( 'Filename', $file );
is( $fixed->Filename, $file, 'fixed parameter' );

my $coderef = Enbld::Target::AttributeCollector->new;
$coderef->add( 'Filename', sub { return $file } );
is( $coderef->Filename, $file, 'coderef parameter' );

my $space = Enbld::Target::AttributeCollector->new;
$space->add( 'Filename', 'archive 1.10 tar.gz' );
throws_ok {
    $space->Filename;
} qr/ABORT:Attribute 'Filename' includes space character/,
    'including space character';

my $undef = Enbld::Target::AttributeCollector->new;
$undef->add( 'Filename', sub { return } );
throws_ok {
    $undef->Filename;
} qr/ABORT:Attribute 'Filename' is empty string/, 'return undef';

my $array = Enbld::Target::AttributeCollector->new;
$array->add( 'Filename', sub { return [ $file ] } );
throws_ok {
    $array->Filename;
} qr/ABORT:Attribute 'Filename' isn't scalar value/,
    'return array reference';

done_testing();