mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Page: Pages that have hideFromBreadcrumbs set to true should not be added to page Title * Updated test
125 lines
3.4 KiB
TypeScript
125 lines
3.4 KiB
TypeScript
import { Location as HistoryLocation } from 'history';
|
|
|
|
import { NavIndex, NavModelItem } from '@grafana/data';
|
|
import { config } from '@grafana/runtime';
|
|
import { HOME_NAV_ID } from 'app/core/reducers/navModel';
|
|
|
|
import { buildPluginSectionNav } from './utils';
|
|
|
|
describe('buildPluginSectionNav', () => {
|
|
const pluginNav = { main: { text: 'Plugin nav' }, node: { text: 'Plugin nav' } };
|
|
const app1: NavModelItem = {
|
|
text: 'App1',
|
|
id: 'plugin-page-app1',
|
|
url: '/a/plugin1',
|
|
children: [
|
|
{
|
|
text: 'page1',
|
|
url: '/a/plugin1/page1',
|
|
},
|
|
{
|
|
text: 'page2',
|
|
url: '/a/plugin1/page2',
|
|
},
|
|
],
|
|
};
|
|
|
|
const appsSection = {
|
|
text: 'apps',
|
|
id: 'apps',
|
|
children: [app1],
|
|
};
|
|
|
|
const home = {
|
|
id: HOME_NAV_ID,
|
|
text: 'Home',
|
|
};
|
|
|
|
const adminSection: NavModelItem = {
|
|
text: 'Admin',
|
|
id: 'admin',
|
|
children: [],
|
|
parentItem: home,
|
|
};
|
|
|
|
const standalonePluginPage = {
|
|
id: 'standalone-plugin-page-/a/app2/config',
|
|
text: 'Standalone page',
|
|
parentItem: adminSection,
|
|
};
|
|
|
|
adminSection.children = [standalonePluginPage];
|
|
|
|
app1.parentItem = appsSection;
|
|
|
|
const navIndex: NavIndex = {
|
|
apps: appsSection,
|
|
[app1.id!]: appsSection.children[0],
|
|
[standalonePluginPage.id]: standalonePluginPage,
|
|
[HOME_NAV_ID]: home,
|
|
};
|
|
|
|
it('Should return pluginNav if topnav is disabled', () => {
|
|
config.featureToggles.topnav = false;
|
|
const result = buildPluginSectionNav({} as HistoryLocation, pluginNav, {}, 'app1');
|
|
expect(result).toBe(pluginNav);
|
|
});
|
|
|
|
it('Should return return section nav if topnav is enabled', () => {
|
|
config.featureToggles.topnav = true;
|
|
const result = buildPluginSectionNav({} as HistoryLocation, pluginNav, navIndex, 'app1');
|
|
expect(result?.main.text).toBe('apps');
|
|
});
|
|
|
|
it('Should set active page', () => {
|
|
config.featureToggles.topnav = true;
|
|
const result = buildPluginSectionNav(
|
|
{ pathname: '/a/plugin1/page2', search: '' } as HistoryLocation,
|
|
null,
|
|
navIndex,
|
|
'app1'
|
|
);
|
|
expect(result?.main.children![0].children![1].active).toBe(true);
|
|
expect(result?.node.text).toBe('page2');
|
|
});
|
|
|
|
it('Should set app section to active', () => {
|
|
config.featureToggles.topnav = true;
|
|
const result = buildPluginSectionNav(
|
|
{ pathname: '/a/plugin1', search: '' } as HistoryLocation,
|
|
null,
|
|
navIndex,
|
|
'app1'
|
|
);
|
|
expect(result?.main.children![0].active).toBe(true);
|
|
expect(result?.node.text).toBe('App1');
|
|
});
|
|
|
|
it('Should handle standalone page', () => {
|
|
config.featureToggles.topnav = true;
|
|
const result = buildPluginSectionNav(
|
|
{ pathname: '/a/app2/config', search: '' } as HistoryLocation,
|
|
pluginNav,
|
|
navIndex,
|
|
'app2'
|
|
);
|
|
expect(result?.main.text).toBe('Admin');
|
|
expect(result?.node.text).toBe('Standalone page');
|
|
});
|
|
|
|
it('Should not throw error just return a root nav model without children for plugins that dont exist in navtree', () => {
|
|
config.featureToggles.topnav = true;
|
|
const result = buildPluginSectionNav({} as HistoryLocation, pluginNav, navIndex, 'app3');
|
|
expect(result?.main.id).toBe(HOME_NAV_ID);
|
|
});
|
|
|
|
it('Should throw error if app has no section', () => {
|
|
config.featureToggles.topnav = true;
|
|
app1.parentItem = undefined;
|
|
const action = () => {
|
|
buildPluginSectionNav({} as HistoryLocation, pluginNav, navIndex, 'app1');
|
|
};
|
|
expect(action).toThrowError();
|
|
});
|
|
});
|