12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import { PanelModel } from '@grafana/data';
- import { BigValueGraphMode, BigValueColorMode } from '@grafana/ui';
- import { BigValueTextMode } from '@grafana/ui/src/components/BigValue/BigValue';
- import { statPanelChangedHandler } from './StatMigrations';
- describe('Stat Panel Migrations', () => {
- it('change from angular singlestat sparkline disabled', () => {
- const old: any = {
- angular: {
- format: 'ms',
- decimals: 7,
- sparkline: {
- show: false,
- },
- },
- };
- const panel = {} as PanelModel;
- const options = statPanelChangedHandler(panel, 'singlestat', old);
- expect(options.graphMode).toBe(BigValueGraphMode.None);
- });
- it('change from angular singlestat sparkline enabled', () => {
- const old: any = {
- angular: {
- format: 'ms',
- decimals: 7,
- sparkline: {
- show: true,
- },
- },
- };
- const panel = {} as PanelModel;
- const options = statPanelChangedHandler(panel, 'singlestat', old);
- expect(options.graphMode).toBe(BigValueGraphMode.Area);
- });
- it('change from angular singlestat color background', () => {
- const old: any = {
- angular: {
- format: 'ms',
- decimals: 7,
- colorBackground: true,
- },
- };
- const panel = {} as PanelModel;
- const options = statPanelChangedHandler(panel, 'singlestat', old);
- expect(options.colorMode).toBe(BigValueColorMode.Background);
- });
- it('change from angular singlestat with name stat', () => {
- const old: any = {
- angular: {
- valueName: 'name',
- },
- };
- const panel = {} as PanelModel;
- const options = statPanelChangedHandler(panel, 'singlestat', old);
- expect(options.textMode).toBe(BigValueTextMode.Name);
- });
- it('use no color unless one was configured', () => {
- let old: any = {
- angular: {
- valueName: 'name',
- },
- };
- let panel = {} as PanelModel;
- let options = statPanelChangedHandler(panel, 'singlestat', old);
- expect(options.colorMode).toBe(BigValueColorMode.None);
- old = {
- angular: {
- valueName: 'name',
- colorBackground: true,
- },
- };
- panel = {} as PanelModel;
- options = statPanelChangedHandler(panel, 'singlestat', old);
- expect(options.colorMode).toBe(BigValueColorMode.Background);
- });
- });
|