mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.
36 lines (28 loc) • 1.15 kB
JavaScript
// test parse
var assert = require('assert'),
error = require('../../../lib/error/index'),
math = require('../../../index'),
Node = require('../../../lib/expression/node/Node');
describe('parse', function() {
it('should compile an expression', function() {
var code = math.compile('(5+3)/4');
assert.ok(code instanceof Object);
assert.ok(code.eval instanceof Function);
assert.equal(code.eval(), 2);
});
it('should parse multiple expressions', function() {
var codes = math.compile(['2+3', '4+5']);
assert.ok(Array.isArray(codes));
assert.equal(codes.length, 2);
assert.equal(codes[0].eval(), 5);
assert.equal(codes[1].eval(), 9);
});
it('should throw an error on wrong number of arguments', function() {
assert.throws(function () {math.compile()}, error.ArgumentsError);
assert.throws(function () {math.compile('2+3', '3+4')}, error.ArgumentsError);
});
it('should throw an error on wrong type of argument', function() {
assert.throws(function () {math.compile(2)}, TypeError);
assert.throws(function () {math.compile(math.complex(2, 3))}, TypeError);
});
});