2015-04-20 09:28:11 +00:00
|
|
|
import {expect} from 'chai';
|
|
|
|
import M from '../index.js';
|
|
|
|
|
|
|
|
describe('Basic math operators', () => {
|
|
|
|
it('should work for add +', () => {
|
|
|
|
expect(M.solve('2+2')).to.equal(4);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for minus -', () => {
|
|
|
|
expect(M.solve('15-3')).to.equal(12);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for divison /', () => {
|
|
|
|
expect(M.solve('20/2')).to.equal(10);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for multiplication *', () => {
|
|
|
|
expect(M.solve('6*3')).to.equal(18);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for power ^', () => {
|
|
|
|
expect(M.solve('5^2')).to.equal(25);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for multi-digit numbers', () => {
|
|
|
|
expect(M.solve('12+15')).to.equal(27);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Precedence', () => {
|
|
|
|
it('Test case 1', () => {
|
|
|
|
expect(M.solve('2+(2+1)*(1+1)^2')).to.equal(14);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Test case 2', () => {
|
|
|
|
expect(M.solve('2+5*4/2-2')).to.equal(10);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Test case 3', () => {
|
|
|
|
expect(M.solve('2+(5*4/2)-2')).to.equal(10);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Test case 4', () => {
|
|
|
|
expect(M.solve('(2+2)^2+(5+1)*4+(2+(4/2)/2)')).to.equal(16 + 24 + 3);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Functions', () => {
|
|
|
|
it('should work for with parantheses', () => {
|
|
|
|
expect(M.solve('lg(4) * 5')).to.equal(10);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for without parantheses', () => {
|
|
|
|
expect(M.solve('lg4 * 5')).to.equal(10);
|
|
|
|
});
|
2015-04-20 09:55:41 +00:00
|
|
|
|
|
|
|
it('should work for wrapped functions', () => {
|
|
|
|
expect(M.solve('(lg4)*2')).to.equal(4);
|
|
|
|
});
|
2015-04-20 09:28:11 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Constats', () => {
|
|
|
|
it('should work for constant values', () => {
|
|
|
|
expect(M.solve('sin(PI/2)')).to.equal(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for functions as constants', () => {
|
|
|
|
expect(M.solve('RAND')).to.not.equal(M.solve('RAND'));
|
|
|
|
});
|
|
|
|
});
|