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 $testsite = 'http://www.example.com/download/';

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

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

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

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

my $space = Enbld::Target::AttributeCollector->new;
$space->add( 'DownloadSite', 'http://www.example.com/ download/' );
throws_ok {
    $space->DownloadSite;
} qr/ABORT:Attribute 'DownloadSite' includes space character/,
    'including space character';

my $invalid = Enbld::Target::AttributeCollector->new;
$invalid->add( 'DownloadSite', 'ftp://www.example.com/download/' );
throws_ok { 
    $invalid->DownloadSite;
} qr/ABORT:Attribute 'DownloadSite' isn't valid URL string/,
    'invalid URL string parameter';

my $noslash = Enbld::Target::AttributeCollector->new;
$noslash->add( 'DownloadSite', 'http://www.example.com/download' );
throws_ok {
    $noslash->DownloadSite;
} qr/ABORT:Attribute 'DownloadSite' does not end with slash character/,
    'invalid end character';

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

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

done_testing();