mathjs/test/unit-tests/bundleAny.test.js
2019-08-26 23:39:06 -06:00

137 lines
4.3 KiB
JavaScript

import assert from 'assert'
import math from '../../src/bundleAny'
describe('bundleAny', function () {
it('should get a default instance of mathjs', function () {
assert.strictEqual(typeof math, 'object')
assert.deepStrictEqual(math.config(), {
matrix: 'Matrix',
number: 'number',
precision: 64,
unitSystem: 'auto',
predictable: false,
epsilon: 1e-12,
randomSeed: null
})
})
it('should create an instance of math.js with custom configuration', function () {
const math1 = math.create({
matrix: 'Array',
number: 'BigNumber'
})
assert.strictEqual(typeof math1, 'object')
assert.deepStrictEqual(math1.config(), {
matrix: 'Array',
number: 'BigNumber',
precision: 64,
unitSystem: 'auto',
predictable: false,
epsilon: 1e-12,
randomSeed: null
})
})
it('two instances of math.js should be isolated from each other', function () {
const math1 = math.create()
const math2 = math.create({
matrix: 'Array'
})
assert.notStrictEqual(math, math1)
assert.notStrictEqual(math, math2)
assert.notStrictEqual(math1, math2)
assert.notDeepStrictEqual(math1.config(), math2.config())
assert.notDeepStrictEqual(math.config(), math2.config())
// changing config should not affect the other
math1.config({ number: 'BigNumber' })
assert.strictEqual(math.config().number, 'number')
assert.strictEqual(math1.config().number, 'BigNumber')
assert.strictEqual(math2.config().number, 'number')
})
it('should apply configuration using the config function', function () {
const math1 = math.create()
assert.deepStrictEqual(math1.sqrt(-4), math1.complex(0, 2))
assert.strictEqual(math1.typeOf(math1.pi), 'number')
assert.strictEqual(math1.typeOf(math1.unit.unitmath().definitions().units.deg.value[0]), 'number') // TODO: find a better way to unit test this
assert.strictEqual(math1.bignumber(1).div(3).toString(), '0.3333333333333333333333333333333333333333333333333333333333333333')
const config = math1.config({
number: 'BigNumber',
precision: 4,
predictable: true
})
assert.deepStrictEqual(config, {
matrix: 'Matrix',
number: 'BigNumber',
unitSystem: 'auto',
precision: 4,
predictable: true,
epsilon: 1e-12,
randomSeed: null
})
assert.ok(math1.isNaN(math1.sqrt(-4)))
assert.strictEqual(math1.typeOf(math1.pi), 'BigNumber')
assert.strictEqual(math1.typeOf(math1.unit('3 deg').getValue()), 'BigNumber')
assert.strictEqual(math1.typeOf(math1.unit.unitmath().definitions().units.deg.value[0]), 'BigNumber') // TODO: find a better way to unit test this
assert.strictEqual(math1.bignumber(1).div(3).toString(), '0.3333')
const config2 = math1.config({
number: 'number',
precision: 64,
predictable: false
})
assert.deepStrictEqual(config2, {
matrix: 'Matrix',
number: 'number',
unitSystem: 'auto',
precision: 64,
predictable: false,
epsilon: 1e-12,
randomSeed: null
})
assert.deepStrictEqual(math1.sqrt(-4), math1.complex(0, 2))
assert.strictEqual(math1.typeOf(math1.pi), 'number')
assert.strictEqual(math1.typeOf(math1.unit.unitmath().definitions().units.deg.value[0]), 'number') // TODO: find a better way to unit test this
assert.strictEqual(math1.bignumber(1).div(3).toString(), '0.3333333333333333333333333333333333333333333333333333333333333333')
})
it('should not override a custom imported function when config changes', function () {
const math1 = math.create()
math1.import({
sqrt: function customSqrt (x) {
return 'foo(' + x + ')'
}
}, { override: true })
assert.strictEqual(math1.sqrt(4), 'foo(4)')
// changing config should not change the custom function sqrt
math1.config({ number: 'BigNumber' })
assert.strictEqual(math1.sqrt(4), 'foo(4)')
})
// TODO: test whether the namespace is correct: has functions like sin, constants like pi, objects like type and error.
it('should throw an error when ES5 is not supported', function () {
const create = Object.create
Object.create = undefined // fake missing Object.create function
assert.throws(function () {
math.create()
}, /ES5 not supported/)
// restore Object.create
Object.create = create
})
})