Cpanel-JSON-XS

 view release on metacpan or  search on metacpan

t/110_bignum.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
my ($has_bignum, @DOS_DIGITS);
BEGIN {
  eval q| require Math::BigInt |;
  $has_bignum = $@ ? 0 : 1;
  @DOS_DIGITS = qw(1000 100_000 10_000_000 100_000_000 1_000_000_000); # 100_000_000_000
}

use Test::More $has_bignum
  ? (tests => 20 + scalar(@DOS_DIGITS))
  : (skip_all => "Can't load Math::BigInt");
use Cpanel::JSON::XS;
use Scalar::Util ();
use Devel::Peek;

my $json = new Cpanel::JSON::XS;
$json->allow_bignum; # is implicitly allow_nonref and convert_blessed
                     # $json->convert_blessed->allow_blessed;

my $num  = $json->decode(q|100000000000000000000000000000000000000|);

isa_ok($num, 'Math::BigInt');
is($num->bcmp('100000000000000000000000000000000000000'), 0, 'decode bigint')
  or Dump ($num);

my $e = $json->encode($num);
is($e, '100000000000000000000000000000000000000', 'encode bigint')
    or Dump( $e );

$num  = $json->decode(q|2.0000000000000000001|);
isa_ok($num, 'Math::BigFloat');

is("$num", '2.0000000000000000001', 'decode bigfloat') or Dump $num;
$e = $json->encode($num);
is($e, '2.0000000000000000001', 'encode bigfloat') or Dump $e;

$num = $json->decode(q|[100000000000000000000000000000000000000]|)->[0];

isa_ok( $num, 'Math::BigInt' );
is(
    $num->bcmp('100000000000000000000000000000000000000'),
    0,
    'decode bigint inside structure'
) or Dump($num);

$num = $json->decode(q|[2.0000000000000000001]|)->[0];
isa_ok( $num, 'Math::BigFloat' );

is( "$num", '2.0000000000000000001', 'decode bigfloat inside structure' )
  or Dump $num;

my $bignan = Math::BigInt->new("NaN");
my $nan = $json->encode($bignan);
is( "$nan", 'null', 'nan default' );
$nan = $json->stringify_infnan(0)->encode($bignan);
is( "$nan", 'null', 'nan null' );
$nan = $json->stringify_infnan(3)->encode($bignan);
is( "$nan", 'nan', 'nan stringify' );

my $biginf = Math::BigInt->new("Inf");
#note $biginf;
my $inf = $json->stringify_infnan(0)->encode($biginf);
is( "$inf", 'null', 'inf null' );
my $exp = "$biginf" =~ /nan/i ? "nan" : "inf";
$inf = $json->stringify_infnan(3)->encode($biginf);
is( "$inf", $exp, 'inf stringify' );

$biginf = Math::BigInt->new("-Inf");
$inf = $json->stringify_infnan(0)->encode($biginf);
#note $biginf;
is( "$inf", 'null', '-inf default' );
$exp = "$biginf" =~ /nan/i ? "nan" : "-inf";
$inf = $json->stringify_infnan(3)->encode($biginf);
is( "$inf", $exp, '-inf stringify' );

# see if allow_bignum is enough, always decodes to a BigFloat
$num = $json->decode(4.5);
isa_ok( $num, 'Math::BigFloat' );
is(
    $num->bcmp('4.5'),
    0,
    'decode simple bigfloat'
) or Dump($num);

# But a short int will not decode to a BigInt
$num = $json->decode(q|[4]|)->[0];
ok( Scalar::Util::looks_like_number($num), 'simple IV') or Dump($num);

# DOS GH #204 — resource-intensive; only run when PERL_TEST_DEVEL is set
SKIP: {
  skip "set PERL_TEST_DEVEL to run resource-intensive DOS attack tests", scalar(@DOS_DIGITS)
    unless $ENV{PERL_TEST_DEVEL};
  for (@DOS_DIGITS) {
    my $s = $_;
    my $digits = $s;
    $digits =~ s/_//g;
    # perl throws "Out of memory!" when constructing a string with 100_000_000_000 digits
    my $dos = '1' . '0' x $digits;
    note "decode bigint DOS attack with $s digits";
    # perl throws "Killed" with a bignum of about 1_000_000_000 digits
    my $num  = $json->decode($dos);
    is($num->bcmp($dos), 0, "decoded $s digits")
      or Dump ($num);
  }
}



( run in 0.811 second using v1.01-cache-2.11-cpan-9581c071862 )