File: 04-moox-configfromfile.t

package info (click to toggle)
libmoox-cmd-perl 0.017-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 320 kB
  • sloc: perl: 1,110; sh: 6; makefile: 2
file content (65 lines) | stat: -rw-r--r-- 1,880 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/perl

use strict;
use warnings;
use Test::More;

use Moo;
use MooX::Cmd::Tester;

use FindBin qw($Bin);
use lib "$Bin/lib";

BEGIN
{
    eval "use MooX::ConfigFromFile 0.006; use ConfigApp";
    $@ and plan skip_all => "Need MooX::ConfigFromFile 0.006 -- $@" and exit(0);
}

diag("Testing MooX::Cmd version " . MooX::Cmd->VERSION . " using MooX::ConfigFromFile version " . MooX::ConfigFromFile->VERSION);

my @tests = (
    [[], "ConfigApp", "ConfigApp", {complicated_setting => {say => "Hello!"}}],
    [
        [qw(check)],
        "ConfigApp",
        "ConfigApp::Cmd::Check",
        {
            unintialized_attribute => sub { time - $_[0] < 1 }
        }
    ],
    [
        [qw(check it)],
        "ConfigApp",
        "ConfigApp::Cmd::Check::Cmd::It",
        {dedicated_setting => 1}
    ],
);

SKIP:
for (@tests)
{
    my ($args, $class, $cmd_class, $attrs) = @{$_};
    ref $args or $args = [split(' ', $args)];
    my $rv = test_cmd($class => $args);
    #diag(explain($rv));

    my $test_ident = "$class => " . join(" ", "[", @$args, "]");
    ok($rv->cmd, "got cmd for $test_ident") or diag(explain($rv));
    isa_ok($rv->cmd, $class) or skip("Cannot do attribute testing without command", 2);
    isa_ok($rv->cmd->command_chain_end, $cmd_class)
      or skip("Cannot do attribute testing without specific command", 1)
      if scalar @$args;
    my $cmd = scalar @$args ? $rv->cmd->command_chain_end : $rv->cmd;
    foreach my $k (keys %$attrs)
    {
        my $cmd_attr = $cmd->$k;
        ref $attrs->{$k} or is($attrs->{$k}, $cmd_attr, "Attribute $k for $test_ident");
        "CODE" eq ref $attrs->{$k} and ok($attrs->{$k}->($cmd_attr), "Attribute $k ok for $test_ident");
        ref $attrs->{$k}
          and "CODE" ne ref $attrs->{$k}
          and is_deeply($attrs->{$k}, $cmd_attr, "Attribute $k for $test_ident");
    }
}

done_testing;