2020-08-22 19:32:48 +03:00
|
|
|
import { determineOrderDir, rangeOf } from '../../src/utils/utils';
|
2019-01-08 23:19:38 +03:00
|
|
|
|
|
|
|
describe('utils', () => {
|
|
|
|
describe('determineOrderDir', () => {
|
|
|
|
it('returns ASC when current order field and selected field are different', () => {
|
|
|
|
expect(determineOrderDir('foo', 'bar')).toEqual('ASC');
|
|
|
|
expect(determineOrderDir('bar', 'foo')).toEqual('ASC');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns ASC when no current order dir is provided', () => {
|
|
|
|
expect(determineOrderDir('foo', 'foo')).toEqual('ASC');
|
|
|
|
expect(determineOrderDir('bar', 'bar')).toEqual('ASC');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns DESC when current order field and selected field are equal and current order dir is ASC', () => {
|
|
|
|
expect(determineOrderDir('foo', 'foo', 'ASC')).toEqual('DESC');
|
|
|
|
expect(determineOrderDir('bar', 'bar', 'ASC')).toEqual('DESC');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns undefined when current order field and selected field are equal and current order dir is DESC', () => {
|
|
|
|
expect(determineOrderDir('foo', 'foo', 'DESC')).toBeUndefined();
|
|
|
|
expect(determineOrderDir('bar', 'bar', 'DESC')).toBeUndefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-03-09 14:19:33 +03:00
|
|
|
describe('rangeOf', () => {
|
2020-11-14 01:06:03 +03:00
|
|
|
const func = (i: number) => `result_${i}`;
|
2019-03-09 14:19:33 +03:00
|
|
|
const size = 5;
|
|
|
|
|
|
|
|
it('builds a range of specified size invike provided function', () => {
|
|
|
|
expect(rangeOf(size, func)).toEqual([
|
|
|
|
'result_1',
|
|
|
|
'result_2',
|
|
|
|
'result_3',
|
|
|
|
'result_4',
|
|
|
|
'result_5',
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('builds a range starting at provided pos', () => {
|
|
|
|
const startAt = 3;
|
|
|
|
|
|
|
|
expect(rangeOf(size, func, startAt)).toEqual([
|
|
|
|
'result_3',
|
|
|
|
'result_4',
|
|
|
|
'result_5',
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2019-01-08 23:19:38 +03:00
|
|
|
});
|