Acme-CPANModules-HidingModules
view release on metacpan or search on metacpan
lib/Acme/CPANModules/HidingModules.pm view on Meta::CPAN
<pm:Devel::Hide>. Devel::Hide also works by installing a hook in `@INC`. It
supports propagating the hiding to child process by setting PERL5OPT environment
variable.
<pm:Test::Without::Module>.
**Fooling module path finders**
Depending on which tool you use to find a module's path, here are some patches
you can load to fool the finder.
<pm:Module::Path::Patch::Hide>
<pm:Module::Path::More::Patch::Hide>
**Fooling module listers**
Depending on which tool you use to find a module's path, here are some patches
you can load to fool the lister tool.
<pm:Module::List::Patch::Hide>
<pm:PERLANCAR::Module::List::Patch::Hide>
<pm:Module::List::Tiny::Patch::Hide>
<pm:Module::List::Wildcard::Patch::Hide>
**Hard-core hiding**
To fool code that tries to find the module files themselves without using any
module, i.e. by iterating @INC, you will need to actually (temporarily) rename
the module files. <pm:App::pmhiderename> and <lib::hiderename> does this.
_
our $LIST = {
summary => 'List of modules to hide other modules',
description => $text,
tags => ['task'],
entries => [
map { +{module=>$_} }
do { my %seen; grep { !$seen{$_}++ }
($text =~ /<pm:(\w+(?:::\w+)+)>/g)
}
],
};
1;
# ABSTRACT: List of modules to hide other modules
__END__
=pod
=encoding UTF-8
=head1 NAME
Acme::CPANModules::HidingModules - List of modules to hide other modules
=head1 VERSION
This document describes version 0.005 of Acme::CPANModules::HidingModules (from Perl distribution Acme-CPANModules-HidingModules), released on 2023-10-29.
=head1 DESCRIPTION
So you want to convince some Perl code that some modules that are actually
installed, aren't? There are several ways to accomplish this, with different
effects and levels of convincing. This list details them.
B<Why?>
First of all, why would you want to do this? Almost always, the answer is: for
testing purposes. For example, you want to make sure that your code can work
without an optional module. Or, alternatively, you want to test how your code
fails under the absence of certain modules.
B<Making modules not loadable>
Most of the time, you just want to make certain modules not loadable. That is,
making C<require SomeModule> or C<use Module> fail. To do this, you usually
install a hook at the first element of C<@INC>. The hook would die when it
receives a request to load a module that you want to hide. Some tools that work
this way include:
L<lib::filter> family, including its thin wrapper L<lib::disallow>.
lib::filter et al supports hiding modules that you specify, as well as hiding
all core modules or all non-core modules. They also support recursive allowing,
i.e. you want to allow Moo and all the modules that Moo loads, and all the
modules that they load, and so on.
L<Devel::Hide>. Devel::Hide also works by installing a hook in C<@INC>. It
supports propagating the hiding to child process by setting PERL5OPT environment
variable.
L<Test::Without::Module>.
B<Fooling module path finders>
Depending on which tool you use to find a module's path, here are some patches
you can load to fool the finder.
L<Module::Path::Patch::Hide>
L<Module::Path::More::Patch::Hide>
B<Fooling module listers>
Depending on which tool you use to find a module's path, here are some patches
you can load to fool the lister tool.
L<Module::List::Patch::Hide>
L<PERLANCAR::Module::List::Patch::Hide>
( run in 1.499 second using v1.01-cache-2.11-cpan-39bf76dae61 )