1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/test/common/unit/Utils.spec.ts

38 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-01-19 20:00:38 +08:00
import {expect} from 'chai';
2019-12-10 17:44:35 +08:00
import {Utils} from '../../../src/common/Utils';
2019-01-19 20:00:38 +08:00
describe('Utils', () => {
it('should concat urls', () => {
2020-01-08 05:17:54 +08:00
expect(Utils.concatUrls('\\')).to.be.equal('.');
expect(Utils.concatUrls('\\*')).to.be.equal('/*');
2019-01-19 20:00:38 +08:00
expect(Utils.concatUrls('abc', 'cde')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc/', 'cde')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc\\', 'cde')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc/', 'cde/')).to.be.equal('abc/cde');
expect(Utils.concatUrls('./abc\\', 'cde/')).to.be.equal('./abc/cde');
expect(Utils.concatUrls('abc/', '\\cde/')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc\\', '\\cde/')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc\\', '/cde/')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc/', '/cde/')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc\\/', '/cde/')).to.be.equal('abc/cde');
expect(Utils.concatUrls('abc\\/', '/cde/', 'fgh')).to.be.equal('abc/cde/fgh');
});
it('should find closest number', () => {
expect(Utils.findClosest(10, [10, 13, 4, 20])).to.be.equal(10);
expect(Utils.findClosest(10, [13, 4, 20])).to.be.equal(13);
expect(Utils.findClosest(10, [4, 20])).to.be.equal(4);
expect(Utils.findClosest(10, [20])).to.be.equal(20);
});
it('should find closest number in sorted array', () => {
expect(Utils.findClosestinSorted(10, [3, 5, 8, 10, 15, 20])).to.be.equal(10);
expect(Utils.findClosestinSorted(10, [3, 5, 8, 15, 20])).to.be.equal(8);
expect(Utils.findClosestinSorted(10, [3, 5, 15, 20])).to.be.equal(15);
expect(Utils.findClosestinSorted(10, [3, 5, 20])).to.be.equal(5);
expect(Utils.findClosestinSorted(10, [3, 20])).to.be.equal(3);
expect(Utils.findClosestinSorted(10, [20])).to.be.equal(20);
});
2019-01-19 20:00:38 +08:00
});