Alien-Plotly-Orca

 view release on metacpan or  search on metacpan

t/basic.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use lib 'util';
use MyInstallUtil;

use Capture::Tiny qw(:all);
use Config;
use File::Which;

use Test2::V0;
use Test::Alien;

use Alien::Plotly::Orca;

sub capture_orca {
    my ($cmd) = @_;

    return capture_merged { system( MyInstallUtil::wrap_orca($cmd) ) };
}

alien_ok 'Alien::Plotly::Orca';

SKIP: {
    if ( Alien::Plotly::Orca->install_type eq 'system' ) {
        skip "install type is 'system'", 3;
    }

    diag( "bin_dir : " . Alien::Plotly::Orca->bin_dir );

    $ENV{PATH} =
      join( $Config{path_sep}, Alien::Plotly::Orca->bin_dir, $ENV{PATH} );

    my ( $merged, $exit ) = capture_orca('orca -h');
    diag( "orca help message:\n" . $merged );
    ok(
        ( $merged =~ /plotly/i and $exit == 0 ),
        'executable works from bin_dir'
    );

    my $version_expected = MyInstallUtil::detect_orca_version();
    like( $version_expected, qr/^\d+/,
        'orca --version gets a numeric version' );

    my $version = Alien::Plotly::Orca->version;
    diag("plotly-orca version: $version");
    is( $version, $version_expected, 'version' );
}

done_testing;



( run in 1.864 second using v1.01-cache-2.11-cpan-b50b6a40fd4 )