123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- import {AuthProvidersFixture} from 'sentry-fixture/authProviders';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {OrganizationAuthList} from 'sentry/views/settings/organizationAuth/organizationAuthList';
- describe('OrganizationAuthList', function () {
- it('renders with no providers', function () {
- render(
- <OrganizationAuthList organization={OrganizationFixture()} providerList={[]} />
- );
- expect(
- screen.queryByText('No authentication providers are available.')
- ).toBeInTheDocument();
- });
- it('renders', function () {
- render(
- <OrganizationAuthList
- organization={OrganizationFixture()}
- providerList={AuthProvidersFixture()}
- />
- );
- expect(screen.getAllByLabelText('Configure').length).toBe(2);
- expect(screen.queryByText('Dummy')).toBeInTheDocument();
- expect(screen.queryByText('Dummy SAML')).toBeInTheDocument();
- });
- it('renders for members', function () {
- const organization = OrganizationFixture({access: ['org:read']});
- render(
- <OrganizationAuthList
- organization={organization}
- providerList={AuthProvidersFixture()}
- activeProvider={AuthProvidersFixture()[0]}
- />
- );
- expect(screen.getByText('Active')).toBeInTheDocument();
- });
- describe('with 2fa warning', function () {
- const require2fa = {require2FA: true};
- const withSSO = {features: ['sso-basic']};
- const withSAML = {features: ['sso-saml2']};
- it('renders', function () {
- const organization = OrganizationFixture({...require2fa, ...withSSO});
- render(
- <OrganizationAuthList
- organization={organization}
- providerList={AuthProvidersFixture()}
- />
- );
- expect(
- screen.getByText('Require 2FA will be disabled if you enable SSO.')
- ).toBeInTheDocument();
- });
- it('renders with saml available', function () {
- const organization = OrganizationFixture({...require2fa, ...withSAML});
- render(
- <OrganizationAuthList
- organization={organization}
- providerList={AuthProvidersFixture()}
- />
- );
- expect(
- screen.getByText('Require 2FA will be disabled if you enable SSO.')
- ).toBeInTheDocument();
- });
- it('does not render without sso available', function () {
- const organization = OrganizationFixture({...require2fa});
- render(
- <OrganizationAuthList
- organization={organization}
- providerList={AuthProvidersFixture()}
- />
- );
- expect(
- screen.queryByText('Require 2FA will be disabled if you enable SSO.')
- ).not.toBeInTheDocument();
- });
- it('does not render with sso and require 2fa disabled', function () {
- const organization = OrganizationFixture({...withSSO});
- render(
- <OrganizationAuthList
- organization={organization}
- providerList={AuthProvidersFixture()}
- />
- );
- expect(
- screen.queryByText('Require 2FA will be disabled if you enable SSO.')
- ).not.toBeInTheDocument();
- });
- it('does not render with saml and require 2fa disabled', function () {
- const organization = OrganizationFixture({...withSAML});
- render(
- <OrganizationAuthList
- organization={organization}
- providerList={AuthProvidersFixture()}
- />
- );
- expect(
- screen.queryByText('Require 2FA will be disabled if you enable SSO.')
- ).not.toBeInTheDocument();
- });
- });
- });
|