12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import {descopeFeatureName} from 'sentry/utils';
- import ProviderItem from 'sentry/views/settings/organizationAuth/providerItem';
- describe('ProviderItem', function () {
- const provider = TestStubs.AuthProviders()[0];
- const org = TestStubs.Organization({
- features: [descopeFeatureName(provider.requiredFeature)],
- });
- const routerContext = TestStubs.routerContext([{organization: org}]);
- it('renders', function () {
- render(
- <ProviderItem organization={org} provider={provider} onConfigure={() => {}} />,
- {context: routerContext}
- );
- expect(
- screen.getByText('Enable your organization to sign in with Dummy.')
- ).toBeInTheDocument();
- });
- it('calls configure callback', function () {
- const mock = jest.fn();
- render(<ProviderItem organization={org} provider={provider} onConfigure={mock} />, {
- context: routerContext,
- });
- userEvent.click(screen.getByRole('button', {name: 'Configure'}));
- expect(mock).toHaveBeenCalledWith('dummy', expect.anything());
- });
- it('renders a disabled Tag when disabled', function () {
- const noFeatureRouterContext = TestStubs.routerContext();
- render(
- <ProviderItem organization={org} provider={provider} onConfigure={() => {}} />,
- {context: noFeatureRouterContext}
- );
- expect(screen.getByRole('status')).toHaveTextContent('disabled');
- });
- });
|