Applify

 view release on metacpan or  search on metacpan

t/subcommand.t  view on Meta::CPAN


package main;
use B::Deparse;
use Test::More;
use lib '.';
use t::Helper;

my $code = <<'HERE';
use Applify;
option str => input_file => 'input';
option flag => save => 'save work';
subcommand list => 'provide a listing' => sub {
  extends 'MyListing';
  option str => long => 'long list';
};
subcommand log => 'provide a log' => sub {
  extends 'MyLogging';
  option str => age => 'age of log', required => 1;
};

sub command_list {
  my ($self, @extra) = @_;
  return 2;
}
sub command_log {
  my ($self, @extra) = @_;
  return 0;
}

app {
  my ($self, @extra) = @_;
  $self->_script->print_help;
  return 0;
};
HERE

{
  my $a = eval_script("use Applify; app {};");
  is $a->_script->subcommand, undef, 'does not die';
}

{
  my $app = eval_script(<<'HERE');
package App::Base;
sub none {}
package main;
use Applify;
subcommand disallow => 'app call' => sub {
  option str => name => 'name';
  extends 'App::Base';
  documentation 'Applify';
  app {
    my ($self, @extra) = @_;
    return 0;
  };
};
app { return 1 };
HERE
  ok $app, 'not undef';

  local @ARGV = qw{disallow};
  run_method($app->_script, 'app');
  like "$@", qr/Looks like you have a typo/, 'confessions of a app happy coder.';
}

{
  my $app = eval_script($code, 'list', '--save', '--long', 1);
  isa_ok $app, 'MyListing', 'correct inheritance';
  is $app->save, 1, 'global option set';
  is $app->long, 1, 'long list option set';

  my $script = $app->_script;
  is $script->subcommand, 'list', 'access the subcommand being run';
  my $code = $script->_subcommand_code($app);
  isa_ok $code, 'CODE', 'code reference';
  is deparse($code), deparse(
    sub {
      my ($self, @extra) = @_;
      return 2;
    }
    ),
    'correct subroutine';
}

{
  my $app = eval_script($code, qw(log --age 2d --save));
  isa_ok $app, 'MyLogging', 'correct inheritance';
  is $app->age,  '2d', 'age option set';
  is $app->save, 1,    'global option set';
  $app->run(qw{});
  my $script = $app->_script;
  is $script->subcommand, 'log', 'access the subcommand being run';
  my $has_log = can_ok $app, qw{start_log end_log};
  ok $has_log, 'app extends MyLogging';
  my $code = $script->_subcommand_code($app);
  isa_ok $code, 'CODE', 'code reference';
  is deparse($code), deparse(
    sub {
      my ($self, @extra) = @_;
      return 0;
    }
    ),
    'correct subroutine';

  is_help $script, <<'HERE', 'subcommand log';
Usage:

    subcommand.t log [options]

Options:
    --input-file  input
    --save        save work
 *  --age         age of log

    --help        Print this help text

Notes:
 *  denotes a required option
HERE

}

t/subcommand.t  view on Meta::CPAN

Commands:
    list  provide a listing
    log   provide a log

Options:
    --input-file  input
    --save        save work

    --help        Print this help text
HERE

}

{
  my $app = eval_script(<<'HERE', qw{new -name app -output app.pm});
use Applify;
$Applify::SUBCMD_PREFIX = 'app';
subcommand new => 'new event' => sub {
  option str => name => 'event name', required => 1;
  option file => output => 'file to write', required => 1;
  documentation 'File::Temp';
};
sub app_new {
  my ($self, @extra) = @_;
  $self->create(name => $self->name, file => $self->output);
  return 0;
}
app {
  my ($self, @extra) = @_;
  return 0;
}
HERE
  isa_ok $app, 'HASH', 'object as exit did not happen';
  is $app->name,   'app',    'name set';
  is $app->output, 'app.pm', 'output set';
  my $script = $app->_script;
  is $script->subcommand, 'new', 'matching subcommand';
  my $code = $script->_subcommand_code($app);
  isa_ok $code, 'CODE', 'no code reference';
  is deparse($code), deparse(
    sub {
      my ($self, @extra) = @_;
      $self->create(name => $self->name, file => $self->output);
      return 0;
    }
    ),
    'Applify::SUBCMD_PREFIX can be set';
}

sub deparse {
  my $dp = B::Deparse->new();
  return $dp->coderef2text(
    $_[0] || sub {
      warn "this is not the code you are looking for";
    }
  );
}

sub eval_script {
  my ($code, @args) = @_;
  local @ARGV = @args;
  return eval "$code" || die $@;
}

done_testing;



( run in 0.717 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )