Dist::Zilla::Plugin::Test::MixedScripts - author tests to ensure there is no mixed Unicode
In the dist.ini
add:
[Test::MixedScripts]
; authordep Test::MixedScripts
script = Latin
script = Common
This generates an author Test::MixedScripts.
This is an extension of Dist::Zilla::Plugin::InlineFiles, providing the file xt/author/mixed-unicode-scripts.t
for
testing against mixed Unicode scripts that are potentially confusing or malicious.
For example, the text for the domain names оnе.example.com
and one.example.com
look indistinguishable in many fonts,
but the first one has Cyrillic letters. If your software interacted with a service on the second domain, then someone
can operate a service on the first domain and attempt to fool developers into using their domain instead.
This might be through a malicious patch submission, or even text from an email or web page that they have convinced a developer to copy and paste into their code.
Changes for version v0.2.3 (2025-08-16)
- Enhancements
- Internal code improvements.
- Tests
- Use Dumper instead of explain for test diagnostics.
- Add more author tests.
- Cleaned up cut-and-paste from other tests.
See the Changes
file for more details.
This module lists the following modules as runtime dependencies:
- Data::Section version 0.004 or later
- Dist::Zilla::File::InMemory
- Dist::Zilla::Role::FileFinderUser
- Dist::Zilla::Role::FileGatherer
- Dist::Zilla::Role::FileMunger
- Dist::Zilla::Role::PrereqSource
- Dist::Zilla::Role::TextTemplate
- List::Util version 1.45 or later
- Moose
- Path::Tiny
- Sub::Exporter::ForMethods
- Types::Common
- experimental
- namespace::autoclean
- perl version v5.20.0 or later
See the cpanfile
file for the full list of prerequisites.
The latest version of this module (along with any dependencies) can be installed from CPAN with the cpan
tool that is included with Perl:
cpan Dist::Zilla::Plugin::Test::MixedScripts
You can also extract the distribution archive and install this module (along with any dependencies):
cpan .
You can also install this module manually using the following commands:
perl Makefile.PL
make
make test
make install
If you are working with the source repository, then it may not have a Makefile.PL
file. But you can use the Dist::Zilla tool in anger to build and install this module:
dzil build
dzil test
dzil install --install-command="cpan ."
For more information, see How to install CPAN modules.
Only the latest version of this module will be supported.
This module requires Perl v5.20 or later. Future releases may only support Perl versions released in the last ten years.
Please report any bugs or feature requests on the bugtracker website https://github.com/robrwo/perl-Dist-Zilla-Plugin-Test-MixedScripts/issues
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
If the bug you are reporting has security implications which make it inappropriate to send to a public issue tracker,
then see SECURITY.md
for instructions how to report security vulnerabilities.
The development version is on github at https://github.com/robrwo/perl-Dist-Zilla-Plugin-Test-MixedScripts and may be cloned from git://github.com/robrwo/perl-Dist-Zilla-Plugin-Test-MixedScripts.git
Robert Rothenberg rrwo@cpan.org
This code was based on Dist::Zilla::Plugin::Test::EOL by Florian Ragwitz rafl@debian.org, Caleb Cushing xenoterracide@gmail.com and Karen Etheridge ether@cpan.org.
Graham Knop haarg@haarg.org
This software is copyright (c) 2025 by Robert Rothenberg.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.