Auto build warehouse, granary and crop fields

This commit is contained in:
2020-07-01 18:06:11 +03:00
parent 7653c7b6e7
commit effc1b1626
14 changed files with 252 additions and 54 deletions

View File

@ -1,25 +1,39 @@
import { it, describe } from 'mocha';
import { expect } from 'chai';
import { getNumber } from '../src/utils';
import { elClassId, getNumber } from '../src/utils';
describe('Utils', function() {
it('Can parse positive number', function() {
const text = '123';
expect(getNumber(text)).to.be.equals(123);
describe('getNumber', function() {
it('Can parse positive number', function() {
const text = '123';
expect(getNumber(text)).to.be.equals(123);
});
it('Can parse positive number with noise', function() {
const text = ' 123 ';
expect(getNumber(text)).to.be.equals(123);
});
it('Can parse negative number', function() {
const text = '-146';
expect(getNumber(text)).to.be.equals(-146);
});
it('Can parse negative number with minus sign', function() {
const text = '\u2212132';
expect(getNumber(text)).to.be.equals(-132);
});
});
it('Can parse positive number with noise', function() {
const text = ' 123 ';
expect(getNumber(text)).to.be.equals(123);
});
describe('elClassId', function() {
it('Can parse number with prefix', function() {
const text = 'foo bar12 baz';
expect(elClassId(text, 'bar')).to.be.equals(12);
});
it('Can parse negative number', function() {
const text = '-146';
expect(getNumber(text)).to.be.equals(-146);
});
it('Can parse negative number with minus sign', function() {
const text = '\u2212132';
expect(getNumber(text)).to.be.equals(-132);
it('Can parse number from parts with same prefix', function() {
const text = 'foo12 foobar';
expect(elClassId(text, 'foo')).to.be.equals(12);
});
});
});