mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
* 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>
99 lines
3.5 KiB
JavaScript
99 lines
3.5 KiB
JavaScript
import assert from 'assert'
|
|
import { sortFactories, factory, isFactory } from '../../../src/utils/factory.js'
|
|
|
|
describe('factory', function () {
|
|
it('should test whether something is a factory', () => {
|
|
assert.strictEqual(isFactory(), false)
|
|
assert.strictEqual(isFactory({}), false)
|
|
|
|
const factory1 = () => {}
|
|
factory1.fn = 'fn1'
|
|
factory1.dependencies = ['fn2']
|
|
assert.strictEqual(isFactory(factory1), true)
|
|
|
|
const factory2 = () => {}
|
|
factory2.fn = 'fn2'
|
|
factory2.dependencies = 'foo'
|
|
assert.strictEqual(isFactory(factory2), false)
|
|
|
|
const factory3 = factory('fn3', ['fn2'], () => {})
|
|
assert.strictEqual(isFactory(factory3), true)
|
|
})
|
|
|
|
it('should only pass the dependencies, not the whole scope', (done) => {
|
|
const f = factory('fn1', ['a', 'c'], (scope) => {
|
|
assert.deepStrictEqual(scope, { a: 1, c: 3 })
|
|
|
|
done()
|
|
})
|
|
|
|
f({ a: 1, b: 2, c: 3 })
|
|
})
|
|
|
|
// FIXME: this unit test doesn't work on IE either remove sortFactories if redundant, or use it and get the test working
|
|
it.skip('should order functions by their dependencies (1)', () => {
|
|
function fn1 () { return 1 }
|
|
const fn2factory = factory('fn2', ['fn1'], () => {})
|
|
const fn3factory = factory('fn3', ['fn2'], () => {})
|
|
function fn4 () { return 4 }
|
|
function fn5 () { return 5 }
|
|
|
|
assert.deepStrictEqual(sortFactories([fn3factory, fn2factory, fn1, fn4, fn5])
|
|
.map(f => f.fn || f.name), ['fn1', 'fn2', 'fn3', 'fn4', 'fn5'])
|
|
|
|
assert.deepStrictEqual(sortFactories([fn1, fn2factory, fn3factory, fn4, fn5])
|
|
.map(f => f.fn || f.name), ['fn1', 'fn2', 'fn3', 'fn4', 'fn5'])
|
|
|
|
assert.deepStrictEqual(sortFactories([fn4, fn5, fn1, fn2factory, fn3factory])
|
|
.map(f => f.fn || f.name), ['fn1', 'fn2', 'fn3', 'fn4', 'fn5'])
|
|
|
|
assert.deepStrictEqual(sortFactories([fn5, fn4, fn1, fn2factory, fn3factory])
|
|
.map(f => f.fn || f.name), ['fn1', 'fn2', 'fn3', 'fn5', 'fn4'])
|
|
})
|
|
|
|
it('should order functions by their dependencies (2)', () => {
|
|
const fn1 = factory('fn1', [], () => {})
|
|
const fn2 = factory('fn2', ['fn4'], () => {})
|
|
const fn3 = factory('fn3', [], () => {})
|
|
const fn4 = factory('fn4', ['fn3'], () => {})
|
|
|
|
assert.deepStrictEqual(sortFactories([fn1, fn2, fn3, fn4])
|
|
.map(f => f.fn || f.name), ['fn1', 'fn3', 'fn4', 'fn2'])
|
|
})
|
|
|
|
// TODO: throw an error in case of circular dependencies
|
|
it.skip('should not go crazy with circular dependencies', () => {
|
|
const fn1factory = factory('fn1', ['fn2'], () => {})
|
|
const fn2factory = factory('fn2', ['fn1'], () => {})
|
|
|
|
assert.deepStrictEqual(sortFactories([fn1factory, fn2factory])
|
|
.map(f => f.fn), ['fn1', 'fn2'])
|
|
|
|
assert.deepStrictEqual(sortFactories([fn2factory, fn1factory])
|
|
.map(f => f.fn), ['fn2', 'fn1'])
|
|
})
|
|
|
|
it('should allow optional dependencies', () => {
|
|
const createFn1 = factory('fn1', ['a', '?b'], ({ a, b }) => {
|
|
return () => ({ a, b })
|
|
})
|
|
|
|
const ab = createFn1({ a: 2, b: 3 })
|
|
assert.deepStrictEqual(ab(), { a: 2, b: 3 })
|
|
const a = createFn1({ a: 2 })
|
|
assert.deepStrictEqual(a(), { a: 2, b: undefined })
|
|
})
|
|
|
|
it('should attach meta information to a factory function', () => {
|
|
const createFn1 = factory('fn1', [], () => {})
|
|
assert.strictEqual(createFn1.meta, undefined)
|
|
|
|
const createClass1 = factory('Class1', [], () => {}, {
|
|
isClass: true
|
|
})
|
|
assert.deepStrictEqual(createClass1.meta, { isClass: true })
|
|
})
|
|
|
|
// TODO: test whether a factory function is created only once for the same dependencies
|
|
})
|