grafana/public/app/features/plugins/extensions/getPluginExtensions.test.tsx

567 lines
20 KiB
TypeScript

import * as React from 'react';
import { PluginExtensionAddedComponentConfig, PluginExtensionAddedLinkConfig } from '@grafana/data';
import { reportInteraction } from '@grafana/runtime';
import { getPluginExtensions } from './getPluginExtensions';
import { log } from './logs/log';
import { resetLogMock } from './logs/testUtils';
import { AddedComponentsRegistry } from './registry/AddedComponentsRegistry';
import { AddedLinksRegistry } from './registry/AddedLinksRegistry';
import { isReadOnlyProxy } from './utils';
import { assertPluginExtensionLink } from './validators';
jest.mock('@grafana/runtime', () => {
return {
...jest.requireActual('@grafana/runtime'),
reportInteraction: jest.fn(),
};
});
jest.mock('./logs/log', () => {
const { createLogMock } = jest.requireActual('./logs/testUtils');
const original = jest.requireActual('./logs/log');
return {
...original,
log: createLogMock(),
};
});
async function createRegistries(
preloadResults: Array<{
pluginId: string;
addedComponentConfigs: PluginExtensionAddedComponentConfig[];
addedLinkConfigs: PluginExtensionAddedLinkConfig[];
}>
) {
const addedLinksRegistry = new AddedLinksRegistry();
const addedComponentsRegistry = new AddedComponentsRegistry();
for (const { pluginId, addedLinkConfigs, addedComponentConfigs } of preloadResults) {
addedLinksRegistry.register({
pluginId,
configs: addedLinkConfigs,
});
addedComponentsRegistry.register({
pluginId,
configs: addedComponentConfigs,
});
}
return {
addedLinksRegistry: await addedLinksRegistry.getState(),
addedComponentsRegistry: await addedComponentsRegistry.getState(),
};
}
describe('getPluginExtensions()', () => {
const extensionPoint1 = 'grafana/dashboard/panel/menu/v1';
const extensionPoint2 = 'plugins/myorg-basic-app/start/v1';
const extensionPoint3 = 'grafana/datasources/config/v1';
const pluginId = 'grafana-basic-app';
// Sample extension configs that are used in the tests below
let link1: PluginExtensionAddedLinkConfig,
link2: PluginExtensionAddedLinkConfig,
component1: PluginExtensionAddedComponentConfig;
beforeEach(() => {
link1 = {
title: 'Link 1',
description: 'Link 1 description',
path: `/a/${pluginId}/declare-incident`,
targets: extensionPoint1,
configure: jest.fn().mockReturnValue({}),
};
link2 = {
title: 'Link 2',
description: 'Link 2 description',
path: `/a/${pluginId}/declare-incident`,
targets: extensionPoint2,
configure: jest.fn().mockImplementation((context) => ({ title: context?.title })),
};
component1 = {
title: 'Component 1',
description: 'Component 1 description',
targets: extensionPoint3,
component: (context) => {
return <div>Hello world!</div>;
},
};
jest.mocked(reportInteraction).mockReset();
resetLogMock(log);
});
test('should return the extensions for the given placement', async () => {
const registries = await createRegistries([
{ pluginId, addedLinkConfigs: [link1, link2], addedComponentConfigs: [] },
]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint1,
});
expect(extensions).toHaveLength(1);
expect(extensions[0]).toEqual(
expect.objectContaining({
pluginId,
title: link1.title,
description: link1.description,
path: expect.stringContaining(link1.path!),
})
);
});
test('should not limit the number of extensions per plugin by default', async () => {
// Registering 3 extensions for the same plugin for the same placement
const registries = await createRegistries([
{ pluginId, addedLinkConfigs: [link1, link1, link1, link2], addedComponentConfigs: [] },
]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint1,
});
expect(extensions).toHaveLength(3);
expect(extensions[0]).toEqual(
expect.objectContaining({
pluginId,
title: link1.title,
description: link1.description,
path: expect.stringContaining(link1.path!),
})
);
});
test('should be possible to limit the number of extensions per plugin for a given placement', async () => {
const registries = await createRegistries([
{ pluginId, addedLinkConfigs: [link1, link1, link1, link2], addedComponentConfigs: [] },
{
pluginId: 'my-plugin',
addedComponentConfigs: [],
addedLinkConfigs: [
{ ...link1, path: '/a/my-plugin/declare-incident' },
{ ...link1, path: '/a/my-plugin/declare-incident' },
{ ...link1, path: '/a/my-plugin/declare-incident' },
{ ...link2, path: '/a/my-plugin/declare-incident' },
],
},
]);
// Limit to 1 extension per plugin
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint1,
limitPerPlugin: 1,
});
expect(extensions).toHaveLength(2);
expect(extensions[0]).toEqual(
expect.objectContaining({
pluginId,
title: link1.title,
description: link1.description,
path: expect.stringContaining(link1.path!),
})
);
});
test('should return with an empty list if there are no extensions registered for a placement yet', async () => {
const registries = await createRegistries([
{ pluginId, addedLinkConfigs: [link1, link2], addedComponentConfigs: [] },
]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: 'placement-with-no-extensions',
});
expect(extensions).toEqual([]);
});
test('should pass the context to the configure() function', async () => {
const context = { title: 'New title from the context!' };
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
getPluginExtensions({ ...registries, context, extensionPointId: extensionPoint2 });
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(link2.configure).toHaveBeenCalledWith(context);
});
test('should be possible to update the basic properties with the configure() function', async () => {
link2.configure = jest.fn().mockImplementation(() => ({
title: 'Updated title',
description: 'Updated description',
path: `/a/${pluginId}/updated-path`,
icon: 'search',
category: 'Machine Learning',
}));
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint2,
});
const [extension] = extensions;
assertPluginExtensionLink(extension);
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(extension.title).toBe('Updated title');
expect(extension.description).toBe('Updated description');
expect(extension.path?.startsWith(`/a/${pluginId}/updated-path`)).toBeTruthy();
expect(extension.icon).toBe('search');
expect(extension.category).toBe('Machine Learning');
});
test('should append link tracking to path when running configure() function', async () => {
link2.configure = jest.fn().mockImplementation(() => ({
title: 'Updated title',
description: 'Updated description',
path: `/a/${pluginId}/updated-path`,
icon: 'search',
category: 'Machine Learning',
}));
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint2,
});
const [extension] = extensions;
assertPluginExtensionLink(extension);
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(extension.path).toBe(
`/a/${pluginId}/updated-path?uel_pid=grafana-basic-app&uel_epid=plugins%2Fmyorg-basic-app%2Fstart%2Fv1`
);
});
test('should ignore restricted properties passed via the configure() function', async () => {
link2.configure = jest.fn().mockImplementation(() => ({
// The following props are not allowed to override
type: 'unknown-type',
pluginId: 'another-plugin',
// Unknown properties
testing: false,
// The following props are allowed to override
title: 'test',
}));
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint2,
});
const [extension] = extensions;
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(extensions).toHaveLength(1);
expect(extension.title).toBe('test');
expect(extension.type).toBe('link');
expect(extension.pluginId).toBe('grafana-basic-app');
//@ts-ignore
expect(extension.testing).toBeUndefined();
});
test('should pass a read only context to the configure() function', async () => {
const context = { title: 'New title from the context!' };
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({
...registries,
context,
extensionPointId: extensionPoint2,
});
const [extension] = extensions;
const readOnlyContext = (link2.configure as jest.Mock).mock.calls[0][0];
assertPluginExtensionLink(extension);
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(isReadOnlyProxy(readOnlyContext)).toBe(true);
expect(() => {
readOnlyContext.title = 'New title';
}).toThrow();
expect(context.title).toBe('New title from the context!');
});
test('should catch errors in the configure() function and log them as error', async () => {
link2.configure = jest.fn().mockImplementation(() => {
throw new Error('Something went wrong!');
});
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
expect(() => {
getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
}).not.toThrow();
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledWith('Failed to configure link with title "Link 2"', {
message: 'Something went wrong!',
stack: expect.stringContaining('Error: Something went wrong!'),
});
});
test('should skip the link extension if the configure() function returns with an invalid path', async () => {
link1.configure = jest.fn().mockImplementation(() => ({
path: '/a/another-plugin/page-a',
}));
link2.configure = jest.fn().mockImplementation(() => ({
path: 'invalid-path',
}));
const registries = await createRegistries([
{ pluginId, addedLinkConfigs: [link1, link2], addedComponentConfigs: [] },
]);
const { extensions: extensionsAtPlacement1 } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint1,
});
const { extensions: extensionsAtPlacement2 } = getPluginExtensions({
...registries,
extensionPointId: extensionPoint2,
});
expect(extensionsAtPlacement1).toHaveLength(0);
expect(extensionsAtPlacement2).toHaveLength(0);
expect(link1.configure).toHaveBeenCalledTimes(1);
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledTimes(2);
});
test('should skip the extension if any of the updated props returned by the configure() function are invalid', async () => {
const overrides = {
title: '', // Invalid empty string for title - should be ignored
description: 'A valid description.', // This should be updated
};
link2.configure = jest.fn().mockImplementation(() => overrides);
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
expect(extensions).toHaveLength(0);
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledTimes(1);
});
test('should skip the extension if the configure() function returns a promise', async () => {
link2.configure = jest.fn().mockImplementation(() => Promise.resolve({}));
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
expect(extensions).toHaveLength(0);
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledTimes(1);
});
test('should skip (hide) the extension if the configure() function returns undefined', async () => {
link2.configure = jest.fn().mockImplementation(() => undefined);
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
expect(extensions).toHaveLength(0);
expect(log.warning).toHaveBeenCalledTimes(0); // As this is intentional, no warning should be logged
});
test('should pass event, context and helper to extension onClick()', async () => {
link2.path = undefined;
link2.onClick = jest.fn().mockImplementation(() => {
throw new Error('Something went wrong!');
});
const context = {};
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
const [extension] = extensions;
assertPluginExtensionLink(extension);
const event = {} as React.MouseEvent;
extension.onClick?.(event);
expect(link2.onClick).toHaveBeenCalledTimes(1);
expect(link2.onClick).toHaveBeenCalledWith(
event,
expect.objectContaining({
context,
openModal: expect.any(Function),
})
);
});
test('should catch errors in async/promise-based onClick function and log them as errors', async () => {
link2.path = undefined;
link2.onClick = jest.fn().mockRejectedValue(new Error('testing'));
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
const [extension] = extensions;
assertPluginExtensionLink(extension);
await extension.onClick?.({} as React.MouseEvent);
expect(extensions).toHaveLength(1);
expect(link2.onClick).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledTimes(1);
});
test('should catch errors in the onClick() function and log them as errors', async () => {
link2.path = undefined;
link2.onClick = jest.fn().mockImplementation(() => {
throw new Error('Something went wrong!');
});
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint2 });
const [extension] = extensions;
assertPluginExtensionLink(extension);
extension.onClick?.({} as React.MouseEvent);
expect(link2.onClick).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledTimes(1);
expect(log.error).toHaveBeenCalledWith('Something went wrong!', {
message: 'Something went wrong!',
stack: expect.stringContaining('Error: Something went wrong!'),
});
});
test('should pass a read only context to the onClick() function', async () => {
const context = { title: 'New title from the context!' };
link2.path = undefined;
link2.onClick = jest.fn();
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
const { extensions } = getPluginExtensions({ ...registries, context, extensionPointId: extensionPoint2 });
const [extension] = extensions;
assertPluginExtensionLink(extension);
extension.onClick?.({} as React.MouseEvent);
const helpers = (link2.onClick as jest.Mock).mock.calls[0][1];
expect(link2.configure).toHaveBeenCalledTimes(1);
expect(isReadOnlyProxy(helpers.context)).toBe(true);
expect(() => {
helpers.context.title = 'New title';
}).toThrow();
});
test('should not make original context read only', async () => {
const context = {
title: 'New title from the context!',
nested: { title: 'title' },
array: ['a'],
};
const registries = await createRegistries([{ pluginId, addedLinkConfigs: [link2], addedComponentConfigs: [] }]);
getPluginExtensions({ ...registries, context, extensionPointId: extensionPoint2 });
expect(() => {
context.title = 'Updating the title';
context.nested.title = 'new title';
context.array.push('b');
}).not.toThrow();
});
test('should report interaction when onClick is triggered', async () => {
const reportInteractionMock = jest.mocked(reportInteraction);
const registries = await createRegistries([
{
pluginId,
addedLinkConfigs: [
{
...link1,
path: undefined,
onClick: jest.fn(),
},
],
addedComponentConfigs: [],
},
]);
const { extensions } = getPluginExtensions({ ...registries, extensionPointId: extensionPoint1 });
const [extension] = extensions;
assertPluginExtensionLink(extension);
extension.onClick?.();
expect(reportInteractionMock).toBeCalledTimes(1);
expect(reportInteractionMock).toBeCalledWith('ui_extension_link_clicked', {
pluginId: extension.pluginId,
extensionPointId: extensionPoint1,
title: extension.title,
category: extension.category,
});
});
test('should be possible to register and get component type extensions', async () => {
const registries = await createRegistries([
{
pluginId,
addedLinkConfigs: [],
addedComponentConfigs: [component1],
},
]);
const { extensions } = getPluginExtensions({
...registries,
extensionPointId: Array.isArray(component1.targets) ? component1.targets[0] : component1.targets,
});
expect(extensions).toHaveLength(1);
expect(extensions[0]).toEqual(
expect.objectContaining({
pluginId,
title: component1.title,
description: component1.description,
})
);
});
test('should honour the limitPerPlugin also for component extensions', async () => {
const registries = await createRegistries([
{
pluginId,
addedLinkConfigs: [],
addedComponentConfigs: [
component1,
{
title: 'Component 2',
description: 'Component 2 description',
targets: component1.targets,
component: (context) => {
return <div>Hello world2!</div>;
},
},
],
},
]);
const { extensions } = getPluginExtensions({
...registries,
limitPerPlugin: 1,
extensionPointId: Array.isArray(component1.targets) ? component1.targets[0] : component1.targets,
});
expect(extensions).toHaveLength(1);
expect(extensions[0]).toEqual(
expect.objectContaining({
pluginId,
title: component1.title,
description: component1.description,
})
);
});
});