import React from 'react'; import { render, screen } from '@testing-library/react'; import { PluginSignatureStatus } from '@grafana/data'; import { PluginBadges } from './PluginBadges'; import { CatalogPlugin } from '../types'; import { config } from '@grafana/runtime'; describe('PluginBadges', () => { const plugin: CatalogPlugin = { description: 'The test plugin', downloads: 5, id: 'test-plugin', info: { logos: { small: 'https://grafana.com/api/plugins/test-plugin/versions/0.0.10/logos/small', large: 'https://grafana.com/api/plugins/test-plugin/versions/0.0.10/logos/large', }, }, name: 'Testing Plugin', orgName: 'Test', popularity: 0, signature: PluginSignatureStatus.valid, publishedAt: '2020-09-01', updatedAt: '2021-06-28', version: '1.0.0', hasUpdate: false, isInstalled: false, isCore: false, isDev: false, isEnterprise: false, }; afterEach(() => { jest.clearAllMocks(); }); it('renders a plugin signature badge', () => { render(); expect(screen.getByText(/signed/i)).toBeVisible(); }); it('renders an installed badge', () => { render(); expect(screen.getByText(/signed/i)).toBeVisible(); expect(screen.getByText(/installed/i)).toBeVisible(); }); it('renders an enterprise badge (when a license is valid)', () => { config.licenseInfo.hasValidLicense = true; render(); expect(screen.getByText(/enterprise/i)).toBeVisible(); expect(screen.queryByRole('button', { name: /learn more/i })).not.toBeInTheDocument(); }); it('renders an enterprise badge with icon and link (when a license is invalid)', () => { config.licenseInfo.hasValidLicense = false; render(); expect(screen.getByText(/enterprise/i)).toBeVisible(); expect(screen.getByLabelText(/lock icon/i)).toBeInTheDocument(); expect(screen.getByRole('button', { name: /learn more/i })).toBeInTheDocument(); }); });