File: namespace-clean.t

package info (click to toggle)
librole-tiny-perl 2.002004-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 292 kB
  • sloc: perl: 454; makefile: 2
file content (74 lines) | stat: -rw-r--r-- 1,336 bytes parent folder | download
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
66
67
68
69
70
71
72
73
74
use strict;
use warnings;
use Test::More;

use B ();

sub is_method {
  my ($ns, $sub) = @_;
  no strict 'refs';
  my $cv = B::svref_2object(\&{"${ns}::${sub}"});
  return
    if !$cv->isa('B::CV');
  my $gv = $cv->GV;
  return
    if $gv->isa('B::SPECIAL');

  my $pack = $gv->STASH->NAME
    or return;

  return (
    $pack eq $ns
    || ($pack eq 'constant' && $gv->name eq '__ANON__')
  );
}

BEGIN {
  package Local::Role;
  use Role::Tiny;
  sub foo { 1 };
}

BEGIN {
  package Local::Class;
  use Role::Tiny::With;
  with qw( Local::Role );

  BEGIN {
    # poor man's namespace::autoclean
    no strict 'refs';
    my @subs = grep defined &$_, keys %Local::Class::;
    my @imports = grep !::is_method(__PACKAGE__, $_), @subs;
    delete @Local::Class::{@imports};
  }
}

ok !defined &Local::Class::with, 'imports are cleaned';

can_ok 'Local::Class', 'foo';
can_ok 'Local::Class', 'does';

BEGIN {
  package Local::Role2;
  use Role::Tiny;

  # poor man's namespace::clean
  my @subs;
  BEGIN {
    no strict 'refs';
    @subs = grep defined &$_, keys %Local::Role2::
  }
  delete @Local::Role2::{@subs};

  sub foo { 1 };
}

BEGIN {
  package Local::Role2;
  use Role::Tiny;
}

# this may not be ideal, but we'll test it since it is done explicitly
ok !defined &Local::Role2::with, 'subs are not re-exported';

done_testing;