mirror of
https://github.com/apache/superset.git
synced 2026-04-09 11:25:23 +00:00
* remove lodash.throttle from dependency * add babel-plugin-lodash' * use lodash instead of underscore for isFunction * switch underscore to lodash * switch from underscore to lodash flatten * Remove slugify and use kebabCase from lodash instead
93 lines
3.0 KiB
JavaScript
93 lines
3.0 KiB
JavaScript
import { expect, assert } from 'chai';
|
|
import {
|
|
formatSelectOptionsForRange,
|
|
d3format,
|
|
d3FormatPreset,
|
|
d3TimeFormatPreset,
|
|
defaultNumberFormatter,
|
|
mainMetric,
|
|
} from '../../../src/modules/utils';
|
|
|
|
describe('utils', () => {
|
|
it('formatSelectOptionsForRange', () => {
|
|
expect(formatSelectOptionsForRange(0, 4)).to.deep.equal([
|
|
[0, '0'],
|
|
[1, '1'],
|
|
[2, '2'],
|
|
[3, '3'],
|
|
[4, '4'],
|
|
]);
|
|
expect(formatSelectOptionsForRange(1, 2)).to.deep.equal([
|
|
[1, '1'],
|
|
[2, '2'],
|
|
]);
|
|
});
|
|
it('d3format', () => {
|
|
expect(d3format('.3s', 1234)).to.equal('1.23k');
|
|
expect(d3format('.3s', 1237)).to.equal('1.24k');
|
|
expect(d3format('', 1237)).to.equal('1.24k');
|
|
});
|
|
describe('d3FormatPreset', () => {
|
|
it('is a function', () => {
|
|
assert.isFunction(d3FormatPreset);
|
|
});
|
|
it('returns a working formatter', () => {
|
|
expect(d3FormatPreset('.3s')(3000000)).to.equal('3.00M');
|
|
});
|
|
});
|
|
describe('d3TimeFormatPreset', () => {
|
|
it('is a function', () => {
|
|
assert.isFunction(d3TimeFormatPreset);
|
|
});
|
|
it('returns a working time formatter', () => {
|
|
expect(d3FormatPreset('smart_date')(0)).to.equal('1970');
|
|
});
|
|
});
|
|
describe('defaultNumberFormatter', () => {
|
|
expect(defaultNumberFormatter(10)).to.equal('10');
|
|
expect(defaultNumberFormatter(1)).to.equal('1');
|
|
expect(defaultNumberFormatter(1.0)).to.equal('1');
|
|
expect(defaultNumberFormatter(10.0)).to.equal('10');
|
|
expect(defaultNumberFormatter(10001)).to.equal('10.0k');
|
|
expect(defaultNumberFormatter(10100)).to.equal('10.1k');
|
|
expect(defaultNumberFormatter(111000000)).to.equal('111M');
|
|
expect(defaultNumberFormatter(0.23)).to.equal('230m');
|
|
|
|
expect(defaultNumberFormatter(-10)).to.equal('-10');
|
|
expect(defaultNumberFormatter(-1)).to.equal('-1');
|
|
expect(defaultNumberFormatter(-1.0)).to.equal('-1');
|
|
expect(defaultNumberFormatter(-10.0)).to.equal('-10');
|
|
expect(defaultNumberFormatter(-10001)).to.equal('-10.0k');
|
|
expect(defaultNumberFormatter(-10101)).to.equal('-10.1k');
|
|
expect(defaultNumberFormatter(-111000000)).to.equal('-111M');
|
|
expect(defaultNumberFormatter(-0.23)).to.equal('-230m');
|
|
});
|
|
describe('mainMetric', () => {
|
|
it('is null when no options', () => {
|
|
expect(mainMetric([])).to.equal(undefined);
|
|
expect(mainMetric(null)).to.equal(undefined);
|
|
});
|
|
it('prefers the "count" metric when first', () => {
|
|
const metrics = [
|
|
{ metric_name: 'count' },
|
|
{ metric_name: 'foo' },
|
|
];
|
|
expect(mainMetric(metrics)).to.equal('count');
|
|
});
|
|
it('prefers the "count" metric when not first', () => {
|
|
const metrics = [
|
|
{ metric_name: 'foo' },
|
|
{ metric_name: 'count' },
|
|
];
|
|
expect(mainMetric(metrics)).to.equal('count');
|
|
});
|
|
it('selects the first metric when "count" is not an option', () => {
|
|
const metrics = [
|
|
{ metric_name: 'foo' },
|
|
{ metric_name: 'not_count' },
|
|
];
|
|
expect(mainMetric(metrics)).to.equal('foo');
|
|
});
|
|
});
|
|
});
|