⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
panel
/
text
/
View File Name :
textPanelMigrationHandler.test.ts
import { FieldConfigSource, PanelModel } from '@grafana/data'; import { TextMode, Options } from './panelcfg.gen'; import { textPanelMigrationHandler } from './textPanelMigrationHandler'; describe('textPanelMigrationHandler', () => { describe('when invoked and previous version was old Angular text panel', () => { it('then should migrate options', () => { const panel = { content: '
Hello World
', mode: 'html', options: {}, }; const result = textPanelMigrationHandler(panel as unknown as PanelModel); expect(result.content).toEqual('
Hello World
'); expect(result.mode).toEqual('html'); expect(panel.content).toBeUndefined(); expect(panel.mode).toBeUndefined(); }); }); describe('when invoked and previous version 7.1 or later', () => { it('then not migrate options', () => { const panel = { content: '
Hello World
', mode: 'html', options: { content: 'New content' }, pluginVersion: '7.1.0', }; const result = textPanelMigrationHandler(panel as unknown as PanelModel); expect(result.content).toEqual('New content'); }); }); describe('when invoked and previous version was not old Angular text panel', () => { it('then should just pass options through', () => { const panel: PanelModel
= { id: 1, type: 'text', fieldConfig: {} as unknown as FieldConfigSource, options: { content: `# Title For markdown syntax help: [commonmark.org/help](https://commonmark.org/help/) `, mode: TextMode.Markdown, }, }; const result = textPanelMigrationHandler(panel); expect(result.content).toEqual(`# Title For markdown syntax help: [commonmark.org/help](https://commonmark.org/help/) `); expect(result.mode).toEqual('markdown'); }); }); describe('when invoked and previous version was using text mode', () => { it('then should switch to markdown', () => { const mode = 'text' as unknown as TextMode; const panel: PanelModel
= { id: 1, type: 'text', fieldConfig: {} as unknown as FieldConfigSource, options: { content: `# Title For markdown syntax help: [commonmark.org/help](https://commonmark.org/help/) `, mode, }, }; const result = textPanelMigrationHandler(panel); expect(result.content).toEqual(`# Title For markdown syntax help: [commonmark.org/help](https://commonmark.org/help/) `); expect(result.mode).toEqual('markdown'); }); }); });