mathjs/test/unit-tests/json/replacer.test.js
Jos de Jong 6f00715754
Specify import require paths (continuation of #1941) (#1962)
* Add `.js` extension to source file imports

* Specify package `exports` in `package.json`

Specify package type as `commonjs` (It's good to be specific)

* Move all compiled scripts into `lib` directory

Remove ./number.js (You can use the compiled ones in `./lib/*`)

Tell node that the `esm` directory is type `module` and enable tree shaking.

Remove unused files from packages `files` property

* Allow importing of package.json

* Make library ESM first

* - Fix merge conflicts
- Refactor `bundleAny` into `defaultInstance.js` and `browserBundle.cjs`
- Refactor unit tests to be able to run with plain nodejs (no transpiling)
- Fix browser examples

* Fix browser and browserstack tests

* Fix running unit tests on Node 10 (which has no support for modules)

* Fix node.js examples (those are still commonjs)

* Remove the need for `browserBundle.cjs`

* Generate minified bundle only

* [Security] Bump node-fetch from 2.6.0 to 2.6.1 (#1963)

Bumps [node-fetch](https://github.com/bitinn/node-fetch) from 2.6.0 to 2.6.1. **This update includes a security fix.**
- [Release notes](https://github.com/bitinn/node-fetch/releases)
- [Changelog](https://github.com/node-fetch/node-fetch/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/bitinn/node-fetch/compare/v2.6.0...v2.6.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* Cleanup console.log

* Add integration tests to test the entry points (commonjs/esm, full/number only)

* Create backward compatibility error messages in the files moved/removed since v8

* Describe breaking changes in HISTORY.md

* Bump karma from 5.2.1 to 5.2.2 (#1965)

Bumps [karma](https://github.com/karma-runner/karma) from 5.2.1 to 5.2.2.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/compare/v5.2.1...v5.2.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

Co-authored-by: Lee Langley-Rees <lee@greenimp.co.uk>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-09-20 18:01:29 +02:00

174 lines
6.2 KiB
JavaScript

import assert from 'assert'
import math from '../../../src/defaultInstance.js'
const replacer = math.replacer
describe('replacer', function () {
it('should stringify generic JSON', function () {
const data = { foo: [1, 2, 3], bar: null, baz: 'str' }
const json = '{"foo":[1,2,3],"bar":null,"baz":"str"}'
assert.deepStrictEqual(JSON.stringify(data), json)
assert.deepStrictEqual(JSON.stringify(data, replacer), json)
})
it('should stringify a number with special values like Infinity', function () {
assert.deepStrictEqual(JSON.stringify(2.3, replacer), '2.3')
assert.deepStrictEqual(JSON.stringify(Infinity, replacer), '{"mathjs":"number","value":"Infinity"}')
assert.deepStrictEqual(JSON.stringify(-Infinity, replacer), '{"mathjs":"number","value":"-Infinity"}')
assert.deepStrictEqual(JSON.stringify(NaN, replacer), '{"mathjs":"number","value":"NaN"}')
})
it('should stringify a Complex number', function () {
const c = new math.Complex(2, 4)
const json = '{"mathjs":"Complex","re":2,"im":4}'
assert.deepStrictEqual(JSON.stringify(c), json)
assert.deepStrictEqual(JSON.stringify(c, replacer), json)
})
it('should stringify a BigNumber', function () {
const b = new math.BigNumber(5)
const json = '{"mathjs":"BigNumber","value":"5"}'
assert.deepStrictEqual(JSON.stringify(b), json)
assert.deepStrictEqual(JSON.stringify(b, replacer), json)
})
it('should stringify a Fraction', function () {
const b = new math.Fraction(0.375)
const json = '{"mathjs":"Fraction","n":3,"d":8}'
assert.deepStrictEqual(JSON.stringify(b), json)
assert.deepStrictEqual(JSON.stringify(b, replacer), json)
})
it('should stringify a Range', function () {
const r = new math.Range(2, 10)
const json = '{"mathjs":"Range","start":2,"end":10,"step":1}'
assert.deepStrictEqual(JSON.stringify(r), json)
assert.deepStrictEqual(JSON.stringify(r, replacer), json)
})
it('should stringify an Index', function () {
const i = new math.Index(new math.Range(0, 10), 2)
const json = '{"mathjs":"Index","dimensions":[' +
'{"mathjs":"Range","start":0,"end":10,"step":1},' +
'{"mathjs":"ImmutableDenseMatrix","data":[2],"size":[1]}' +
']}'
assert.deepStrictEqual(JSON.stringify(i), json)
assert.deepStrictEqual(JSON.stringify(i, replacer), json)
})
it('should stringify a Range (2)', function () {
const r = new math.Range(2, 10, 2)
const json = '{"mathjs":"Range","start":2,"end":10,"step":2}'
assert.deepStrictEqual(JSON.stringify(r), json)
assert.deepStrictEqual(JSON.stringify(r, replacer), json)
})
it('should stringify a Unit', function () {
const u = new math.Unit(5, 'cm')
const json = '{"mathjs":"Unit","value":5,"unit":"cm","fixPrefix":false}'
assert.deepStrictEqual(JSON.stringify(u), json)
assert.deepStrictEqual(JSON.stringify(u, replacer), json)
})
it('should stringify a Matrix, dense', function () {
const m = math.matrix([[1, 2], [3, 4]], 'dense')
const json = '{"mathjs":"DenseMatrix","data":[[1,2],[3,4]],"size":[2,2]}'
assert.deepStrictEqual(JSON.stringify(m), json)
assert.deepStrictEqual(JSON.stringify(m, replacer), json)
})
it('should stringify a Matrix, sparse', function () {
const m = math.matrix([[1, 2], [3, 4]], 'sparse')
const json = '{"mathjs":"SparseMatrix","values":[1,3,2,4],"index":[0,1,0,1],"ptr":[0,2,4],"size":[2,2]}'
assert.deepStrictEqual(JSON.stringify(m), json)
assert.deepStrictEqual(JSON.stringify(m, replacer), json)
})
it('should stringify a ResultSet', function () {
const r = new math.ResultSet([1, 2, new math.Complex(3, 4)])
const json = '{"mathjs":"ResultSet","entries":[1,2,{"mathjs":"Complex","re":3,"im":4}]}'
assert.deepStrictEqual(JSON.stringify(r), json)
assert.deepStrictEqual(JSON.stringify(r, replacer), json)
})
it('should stringify a Matrix containing a complex number, dense', function () {
const c = new math.Complex(4, 5)
const m = math.matrix([[1, 2], [3, c]], 'dense')
const json = '{"mathjs":"DenseMatrix","data":[[1,2],[3,{"mathjs":"Complex","re":4,"im":5}]],"size":[2,2]}'
assert.deepStrictEqual(JSON.stringify(m), json)
assert.deepStrictEqual(JSON.stringify(m, replacer), json)
})
it('should stringify a Matrix containing a complex number, sparse', function () {
const c = new math.Complex(4, 5)
const m = math.matrix([[1, 2], [3, c]], 'sparse')
const json = '{"mathjs":"SparseMatrix","values":[1,3,2,{"mathjs":"Complex","re":4,"im":5}],"index":[0,1,0,1],"ptr":[0,2,4],"size":[2,2]}'
assert.deepStrictEqual(JSON.stringify(m), json)
assert.deepStrictEqual(JSON.stringify(m, replacer), json)
})
it('should stringify a Chain', function () {
const c = math.chain(2.3)
const json = '{"mathjs":"Chain","value":2.3}'
assert.deepStrictEqual(JSON.stringify(c), json)
assert.deepStrictEqual(JSON.stringify(c, replacer), json)
})
it('should stringify a node tree', function () {
const node = math.parse('2 + sin(3 x)')
const json = {
mathjs: 'OperatorNode',
op: '+',
fn: 'add',
args: [
{
mathjs: 'ConstantNode',
value: 2
},
{
mathjs: 'FunctionNode',
fn: {
mathjs: 'SymbolNode',
name: 'sin'
},
args: [
{
mathjs: 'OperatorNode',
op: '*',
fn: 'multiply',
args: [
{
mathjs: 'ConstantNode',
value: 3
},
{
mathjs: 'SymbolNode',
name: 'x'
}
],
implicit: true
}
]
}
],
implicit: false
}
assert.deepStrictEqual(JSON.parse(JSON.stringify(node)), json)
assert.deepStrictEqual(JSON.parse(JSON.stringify(node, replacer)), json)
})
it('should stringify Help', function () {
const h = new math.Help({ name: 'foo', description: 'bar' })
const json = '{"mathjs":"Help","name":"foo","description":"bar"}'
assert.deepStrictEqual(JSON.parse(JSON.stringify(h)), JSON.parse(json))
assert.deepStrictEqual(JSON.parse(JSON.stringify(h, replacer)), JSON.parse(json))
})
})