You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.0 KiB
48 lines
2.0 KiB
6 years ago
|
import { ANALYTIC_UNIT_COLORS } from '../src/colors';
|
||
|
import { MetricExpanded } from '../src/models/metric';
|
||
|
import { DatasourceRequest } from '../src/models/datasource';
|
||
|
|
||
|
import { analyticController } from './setup_tests';
|
||
|
|
||
|
|
||
|
describe('AnalyticController', function () {
|
||
|
it('should create analytic units with colors from palette', async function () {
|
||
|
for (let color of ANALYTIC_UNIT_COLORS) {
|
||
|
analyticController.createNew();
|
||
|
expect(analyticController.newAnalyticUnit.color).toBe(color);
|
||
|
await analyticController.saveNew({} as MetricExpanded, {} as DatasourceRequest, 1);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
it('should save analytic units', function () {
|
||
|
expect(analyticController.analyticUnits).toHaveLength(ANALYTIC_UNIT_COLORS.length);
|
||
|
});
|
||
|
|
||
|
it('should remove analytic unit with right id', async function () {
|
||
|
await analyticController.removeAnalyticUnit('2');
|
||
|
for (let analyticUnit of analyticController.analyticUnits) {
|
||
|
expect(analyticUnit.id).not.toBe('2');
|
||
|
}
|
||
|
});
|
||
|
|
||
6 years ago
|
it('should set different color to newly created Analytic Unit, afer NOT last AU was deleted', async function() {
|
||
|
let auArray = analyticController.analyticUnits;
|
||
|
analyticController.createNew();
|
||
|
await analyticController.saveNew({} as MetricExpanded, {} as DatasourceRequest, 1);
|
||
|
expect(auArray[auArray.length - 2].panelObject.color).not.toBe(auArray[auArray.length - 1].panelObject.color);
|
||
|
});
|
||
|
|
||
|
it('should set different color to newly created Analytic Unit, afer LAST AU was deleted', async function () {
|
||
|
let auArray = analyticController.analyticUnits;
|
||
|
auArray.splice(-1, 1);
|
||
|
analyticController.createNew();
|
||
|
await analyticController.saveNew({} as MetricExpanded, {} as DatasourceRequest, 1);
|
||
|
expect(auArray[auArray.length - 2].panelObject.color).not.toBe(auArray[auArray.length - 1].panelObject.color);
|
||
|
});
|
||
|
|
||
6 years ago
|
it('should change color on choosing from palette', function () {
|
||
|
analyticController.onAnalyticUnitColorChange('1', 'red');
|
||
|
expect(analyticController.analyticUnits[0].color).toBe('red');
|
||
|
});
|
||
|
});
|