123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- /*
- Copyright 2013 Daniel Wirtz <dcode@dcode.io>
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS-IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- var Long = require(__dirname+"/../index.js"),
- gmLong = require("./goog.math.long.js");
- var suite = {
-
- "basic": function(test) {
- var longVal = new Long(0xFFFFFFFF, 0x7FFFFFFF);
- test.equal(longVal.toNumber(), 9223372036854775807);
- test.equal(longVal.toString(), "9223372036854775807");
- var longVal2 = Long.fromValue(longVal);
- test.equal(longVal2.toNumber(), 9223372036854775807);
- test.equal(longVal2.toString(), "9223372036854775807");
- test.equal(longVal2.unsigned, longVal.unsigned);
- test.done();
- },
- "isLong": function(test) {
- var longVal = new Long(0xFFFFFFFF, 0x7FFFFFFF);
- test.strictEqual(Long.isLong(longVal), true);
- longVal = {"__isLong__": true};
- test.strictEqual(Long.isLong(longVal), true);
- test.done();
- },
-
- // Let's assume goog.math.Long has been tested properly and focus on our extensions:
-
- "toString": function(test) {
- var longVal = Long.fromBits(0xFFFFFFFF, 0xFFFFFFFF, true);
- // #10
- test.equal(longVal.toString(16), "ffffffffffffffff");
- test.equal(longVal.toString(10), "18446744073709551615");
- test.equal(longVal.toString(8), "1777777777777777777777");
- // #7, obviously wrong in goog.math.Long
- test.equal(Long.fromString("zzzzzz", 36).toString(36), "zzzzzz");
- test.equal(Long.fromString("-zzzzzz", 36).toString(36), "-zzzzzz");
- test.done();
- },
- "toBytes": function(test) {
- var longVal = Long.fromBits(0x01234567, 0x12345678);
- test.deepEqual(longVal.toBytesBE(), [
- 0x12, 0x34, 0x56, 0x78,
- 0x01, 0x23, 0x45, 0x67
- ]);
- test.deepEqual(longVal.toBytesLE(), [
- 0x67, 0x45, 0x23, 0x01,
- 0x78, 0x56, 0x34, 0x12
- ]);
- test.done();
- },
-
- "unsigned": {
-
- "min/max": function(test) {
- test.equal(Long.MIN_VALUE.toString(), "-9223372036854775808");
- test.equal(Long.MAX_VALUE.toString(), "9223372036854775807");
- test.equal(Long.MAX_UNSIGNED_VALUE.toString(), "18446744073709551615");
- test.done();
- },
-
- "construct_negint": function(test) {
- var longVal = Long.fromInt(-1, true);
- test.equal(longVal.low, -1);
- test.equal(longVal.high, -1);
- test.equal(longVal.unsigned, true);
- test.equal(longVal.toNumber(), 18446744073709551615);
- test.equal(longVal.toString(), "18446744073709551615");
- test.done();
- },
-
- "construct_highlow": function(test) {
- var longVal = new Long(0xFFFFFFFF, 0xFFFFFFFF, true);
- test.equal(longVal.low, -1);
- test.equal(longVal.high, -1);
- test.equal(longVal.unsigned, true);
- test.equal(longVal.toNumber(), 18446744073709551615);
- test.equal(longVal.toString(), "18446744073709551615");
- test.done();
- },
-
- "construct_number": function(test) {
- var longVal = Long.fromNumber(0xFFFFFFFFFFFFFFFF, true);
- test.equal(longVal.low, -1);
- test.equal(longVal.high, -1);
- test.equal(longVal.unsigned, true);
- test.equal(longVal.toNumber(), 18446744073709551615);
- test.equal(longVal.toString(), "18446744073709551615");
- test.done();
- },
- "toSigned/Unsigned": function(test) {
- var longVal = Long.fromNumber(-1, false);
- test.equal(longVal.toNumber(), -1);
- longVal = longVal.toUnsigned();
- test.equal(longVal.toNumber(), 0xFFFFFFFFFFFFFFFF);
- test.equal(longVal.toString(16), 'ffffffffffffffff');
- longVal = longVal.toSigned();
- test.equal(longVal.toNumber(), -1);
- test.done();
- },
-
- "max_unsigned_sub_max_signed": function(test) {
- var longVal = Long.MAX_UNSIGNED_VALUE.subtract(Long.MAX_VALUE).subtract(Long.ONE);
- test.equal(longVal.toNumber(), Long.MAX_VALUE.toNumber());
- test.equal(longVal.toString(), Long.MAX_VALUE.toString());
- test.done();
- },
-
- "max_sub_max": function(test) {
- var longVal = Long.MAX_UNSIGNED_VALUE.subtract(Long.MAX_UNSIGNED_VALUE);
- test.equal(longVal, 0);
- test.equal(longVal.low, 0);
- test.equal(longVal.high, 0);
- test.equal(longVal.unsigned, true);
- test.equal(longVal.toNumber(), 0);
- test.equal(longVal.toString(), "0");
- test.done();
- },
-
- "zero_sub_signed": function(test) {
- var longVal = Long.fromInt(0, true).add(Long.fromInt(-1, false));
- test.equal(longVal.low, -1);
- test.equal(longVal.high, -1);
- test.equal(longVal.unsigned, true);
- test.equal(longVal.toNumber(), 18446744073709551615);
- test.equal(longVal.toString(), "18446744073709551615");
- test.done();
- },
-
- "max_unsigned_div_max_signed": function(test) {
- var longVal = Long.MAX_UNSIGNED_VALUE.div(Long.MAX_VALUE);
- test.equal(longVal.toNumber(), 2);
- test.equal(longVal.toString(), "2");
- test.done();
- },
-
- "max_unsigned_div_max_unsigned": function(test) {
- var longVal = Long.MAX_UNSIGNED_VALUE;
- test.strictEqual(longVal.div(longVal).toString(), '1');
- test.done();
- },
-
- "max_unsigned_div_neg_signed": function(test) {
- var a = Long.MAX_UNSIGNED_VALUE;
- var b = Long.fromInt(-2);
- test.strictEqual(b.toUnsigned().toString(), Long.MAX_UNSIGNED_VALUE.sub(1).toString());
- var longVal = a.div(b);
- test.strictEqual(longVal.toString(), '1');
- test.done();
- },
- "min_signed_div_one": function(test) {
- var longVal = Long.MIN_VALUE.div(Long.ONE);
- test.strictEqual(longVal.toString(), Long.MIN_VALUE.toString());
- test.done();
- },
- "msb_unsigned": function(test) {
- var longVal = Long.UONE.shiftLeft(63);
- test.ok(longVal.notEquals(Long.MIN_VALUE));
- test.equal(longVal.toString(), "9223372036854775808");
- test.equal(Long.fromString("9223372036854775808", true).toString(), "9223372036854775808");
- test.done();
- },
-
- "issue31": function(test) {
- var a = new Long(0, 8, true);
- var b = Long.fromNumber(2656901066, true);
- test.strictEqual(a.unsigned, true);
- test.strictEqual(b.unsigned, true);
- var x = a.div(b);
- test.strictEqual(x.toString(), '12');
- test.strictEqual(x.unsigned, true);
- test.done();
- }
- }
- };
- module.exports = suite;
|