The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More 0.88;
use Test::Warn;
use File::Spec::Functions qw/catfile/;

use App::Ylastic::CostAgent;

my @cases = (
  {
    label => 'Invalid account number',
    error => qr/Invalid AWS ID/,
    file => 'bad-account.ini',
  },
  {
    label => 'Missing username',
    error => qr/Invalid user\/password/,
    file => 'missing-user.ini',
  },
  {
    label => 'Missing password',
    error => qr/Invalid user\/password/,
    file => 'missing-pass.ini',
  },
  {
    label => 'Missing username/password',
    error => qr/Invalid user\/password/,
    file => 'missing-userpass.ini',
  },
);

for my $c ( @cases ) {
  my $file = catfile( 't', 'data', $c->{file} );
  my $obj;
  warning_like {
    $obj = App::Ylastic::CostAgent->new(config_file => $file);
  } $c->{error}, "$c->{label}: warning seen";
  ok( $obj, "$c->{label}: obj still created" );
}

done_testing;