summaryrefslogtreecommitdiff
path: root/school/node_modules/cuint/test/UINT64-test.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
committerMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
commit3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 (patch)
tree75be5fba4368472fb11c8015aee026b2b9a71888 /school/node_modules/cuint/test/UINT64-test.js
parent8cc1f13c17fa2fb5a4410542d39e650e02945634 (diff)
downloadpluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.gz
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.bz2
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.zip
Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated)
Diffstat (limited to 'school/node_modules/cuint/test/UINT64-test.js')
-rw-r--r--school/node_modules/cuint/test/UINT64-test.js284
1 files changed, 0 insertions, 284 deletions
diff --git a/school/node_modules/cuint/test/UINT64-test.js b/school/node_modules/cuint/test/UINT64-test.js
deleted file mode 100644
index 7f0f44e..0000000
--- a/school/node_modules/cuint/test/UINT64-test.js
+++ /dev/null
@@ -1,284 +0,0 @@
-var assert = require('assert')
-var UINT64 = require('..').UINT64
-
-describe('UINT64 constructor', function () {
-
- describe('with no parameters', function () {
-
- it('should properly initialize', function (done) {
- var u = UINT64()
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
-
- })
-
- describe('with low and high bits', function () {
-
- describe('0, 0', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(0, 0)
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('1, 0', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(1, 0)
-
- assert.equal( u._a00, 1 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('0, 1', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(0, 1)
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 1 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('3, 5', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(3, 5)
-
- assert.equal( u._a00, 3 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 5 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- })
-
- describe('with number', function () {
-
- describe('0', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(0)
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('1', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(1)
-
- assert.equal( u._a00, 1 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('3', function () {
- it('should properly initialize', function (done) {
- var u = UINT64(3)
-
- assert.equal( u._a00, 3 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('with high bit', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( Math.pow(2,17)+123 )
-
- assert.equal( u._a00, 123 )
- assert.equal( u._a16, 2 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- })
-
- describe('with string', function () {
-
- describe('"0"', function () {
- it('should properly initialize', function (done) {
- var u = UINT64('0')
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('"1"', function () {
- it('should properly initialize', function (done) {
- var u = UINT64('1')
-
- assert.equal( u._a00, 1 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('10', function () {
- it('should properly initialize', function (done) {
- var u = UINT64('10')
-
- assert.equal( u._a00, 10 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('with high bit', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '' + (Math.pow(2,17)+123) )
-
- assert.equal( u._a00, 123 )
- assert.equal( u._a16, 2 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('with radix 10', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '123', 10 )
-
- assert.equal( u._a00, 123 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('with radix 2', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '1111011', 2 )
-
- assert.equal( u._a00, 123 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('with radix 16', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '7B', 16 )
-
- assert.equal( u._a00, 123 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('8000 with radix 16', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '8000', 16 )
-
- assert.equal( u._a00, 32768 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('80000000 with radix 16', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '80000000', 16 )
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 32768 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('800000000000 with radix 16', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '800000000000', 16 )
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 32768 )
- assert.equal( u._a48, 0 )
- done()
- })
- })
-
- describe('8000000000000000 with radix 16', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( '8000000000000000', 16 )
-
- assert.equal( u._a00, 0 )
- assert.equal( u._a16, 0 )
- assert.equal( u._a32, 0 )
- assert.equal( u._a48, 32768 )
- done()
- })
- })
-
- describe('maximum unsigned 64 bits value in base 2', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( Array(65).join('1'), 2 )
-
- assert.equal( u._a00, 65535 )
- assert.equal( u._a16, 65535 )
- assert.equal( u._a32, 65535 )
- assert.equal( u._a48, 65535 )
- done()
- })
- })
-
- describe('maximum unsigned 64 bits value in base 16', function () {
- it('should properly initialize', function (done) {
- var u = UINT64( Array(17).join('F'), 16 )
-
- assert.equal( u._a00, 65535 )
- assert.equal( u._a16, 65535 )
- assert.equal( u._a32, 65535 )
- assert.equal( u._a48, 65535 )
- done()
- })
- })
-
- })
-
-})