The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

use strict;
use Test::Stream::Plugin qw/import/;
sub load_ts_plugin {
my $class = shift;
my ($caller) = @_;
# Load and import UTF8 into the caller.
require utf8;
utf8->import;
# Set STDERR and STDOUT
binmode(STDERR, ':utf8');
binmode(STDOUT, ':utf8');
# Set the output formatters to use utf8
Test::Stream::Sync->post_load(sub {
my $stack = Test::Stream::Sync->stack;
$stack->top; # Make sure we have at least 1 hub
my $warned = 0;
for my $hub ($stack->all) {
my $format = $hub->format || next;
unless ($format->can('encoding')) {
warn "Could not apply UTF8 to unknown formatter ($format) at $caller->[1] line $caller->[2].\n" unless $warned++;
next;
}
$format->encoding('utf8');
}
});
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test::Stream::Plugin::UTF8 - Test::Stream plugin that enables utf8.
=head1 DEPRECATED
B<This distribution is deprecated> in favor of L<Test2>, L<Test2::Suite>, and
L<Test2::Workflow>.
See L<Test::Stream::Manual::ToTest2> for a conversion guide.
=head1 DESCRIPTION
When used, this plugin will turn on the utf8 pragma, set STDERR and STDOUT to
use utf8, and update the Test::Stream output formatter to use utf8.
=head1 SYNOPSIS
use Test::Stream qw/... UTF8/;
This is the same as
use Test::Stream ...;
use utf8;
BEGIN {
set_encoding('utf8');
binmode(STDERR, ':utf8');
binmode(STDOUT, ':utf8');
}
=head1 NOTES
This module sets output handles to have the ':utf8' output layer. Some might
prefer ':encoding(utf-8)' which is more strict about verifying characters.
There is a debate about wether or not encoding to utf8 from perl internals can
ever fail, so it may not matter. This was also chosen because the alternative
causes threads to segfault, see
=head1 SOURCE
The source code repository for Test::Stream can be found at
=head1 MAINTAINERS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 AUTHORS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 COPYRIGHT
Copyright 2015 Chad Granum E<lt>exodist7@gmail.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut