App-Device-Chip-sensor

 view release on metacpan or  search on metacpan

t/10args.t  view on Meta::CPAN

#!/usr/bin/perl

use v5.26;
use warnings;

use Test2::V0;

use Object::Pad 0.800;

my $customarg;

class TestApp :isa(App::Device::Chip::sensor)
{
   method OPTSPEC
   {
      return ( $self->SUPER::OPTSPEC,
         "custom=s" => \$customarg,
      );
   }
}

BEGIN {
   $INC{"Device/Chip/Adapter/_ATestAdapter.pm"} = __FILE__;
   $ENV{DEVICE_CHIP_ADAPTER} = "_ATestAdapter";
}

my $app = TestApp->new;

# defaults
{
   is( $app->interval, 10, 'default interval' );
}

# --interval
{
   $app->parse_argv( [ "--interval", 20, "ACHIP" ] );

   is( $app->interval, 20, 'interval after --interval argument' );

   is( [ $app->_chipconfigs ],
      [ { type => "ACHIP", adapter => check_isa( "Device::Chip::Adapter::_ATestAdapter" ) } ],
      'chip configs'
   );
}

# chip args
{
   $app->parse_argv( [ "--interval", 20, "ACHIP", "BCHIP:-C:arg=value" ] );

   is( [ $app->_chipconfigs ],
      [ { type => "ACHIP", adapter => check_isa( "Device::Chip::Adapter::_ATestAdapter" ) },
        { type => "BCHIP", adapter => check_isa( "Device::Chip::Adapter::_ATestAdapter" ),
           config => { arg => "value" } } ],
      'chip configs'
   );
}

# --custom
{
   $app->parse_argv( [ "--custom", "abcde", "ACHIP" ] );

   is( $customarg, "abcde", 'custom arg parsing for app' );
}

my %adapterargs;
class Device::Chip::Adapter::_ATestAdapter :does(Device::Chip::Adapter)
{
   use Object::Pad 0.805;

   sub new_from_description { shift->new( @_ ) }

   ADJUST :params ( %args ) {
      %adapterargs = %args;
   }
}
$INC{"Device/Chip/Adapter/_ATestAdapter.pm"} = __FILE__;



( run in 0.879 second using v1.01-cache-2.11-cpan-98e64b0badf )