ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CBOR-XS/t/53_bignum.t
(Generate patch)

Comparing CBOR-XS/t/53_bignum.t (file contents):
Revision 1.3 by root, Fri Nov 22 15:44:13 2013 UTC vs.
Revision 1.4 by root, Mon Apr 25 21:30:23 2016 UTC

1BEGIN { $| = 1; print "1..100\n"; } 1BEGIN { $| = 1; print "1..102\n"; }
2BEGIN { $^W = 0 } # hate 2BEGIN { $^W = 0 } # hate
3 3
4use CBOR::XS; 4use CBOR::XS;
5
6use Math::BigInt only => "Calc"; # needed for representation stability
5 7
6print "ok 1\n"; 8print "ok 1\n";
7 9
8my $t = decode_cbor pack "H*", "82c48221196ab3c5822003"; 10my $t = decode_cbor pack "H*", "82c48221196ab3c5822003";
9 11
12 14
13$t = encode_cbor $t; 15$t = encode_cbor $t;
14 16
15print $t eq (pack "H*", "82c48221196ab3c482200f") ? "" : "not ", "ok 4 # ", (unpack "H*", $t), "\n"; 17print $t eq (pack "H*", "82c48221196ab3c482200f") ? "" : "not ", "ok 4 # ", (unpack "H*", $t), "\n";
16 18
17# Math::BigFloat is loaded by now... 19# Math::BigFloat must be loaded by now...
18 20
19for (5..99) { 21for (5..99) {
20 my $n = Math::BigFloat->new ((int rand 1e9) . "." . (int rand 1e9) . "e" . ((int rand 1e8) - 0.5e8)); 22 my $n = Math::BigFloat->new ((int rand 1e9) . "." . (int rand 1e9) . "e" . ((int rand 1e8) - 0.5e8));
21 my $m = decode_cbor encode_cbor $n; 23 my $m = decode_cbor encode_cbor $n;
22 24
24 $m = $m->bsstr; 26 $m = $m->bsstr;
25 27
26 print $n != $m ? "not " : "ok $_ # $n eq $m\n"; 28 print $n != $m ? "not " : "ok $_ # $n eq $m\n";
27} 29}
28 30
29print "ok 100\n"; 31$t = encode_cbor CBOR::XS::tag 264, [Math::BigInt->new ("99999999999999999998"), Math::BigInt->new ("799999999999999999998")];
32$t = decode_cbor $t;
33print "799999999999999999998e+99999999999999999998" eq $t->bsstr ? "" : "not ", "ok 100\n";
30 34
35$t = encode_cbor $t;
36print "d9010882c249056bc75e2d63100000c2492b5e3af16b187ffffe" eq (unpack "H*", $t) ? "" : "not ", "ok 101\n";
37
38print "ok 102\n";
39

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines