import {Organization} from 'sentry-fixture/organization'; import {render, screen} from 'sentry-test/reactTestingLibrary'; import NoProjectMessage from 'sentry/components/noProjectMessage'; import ConfigStore from 'sentry/stores/configStore'; import ProjectsStore from 'sentry/stores/projectsStore'; import TeamStore from 'sentry/stores/teamStore'; describe('NoProjectMessage', function () { beforeEach(function () { ProjectsStore.reset(); }); const org = Organization(); it('renders', function () { const organization = Organization({slug: 'org-slug'}); const childrenMock = jest.fn().mockReturnValue(null); ProjectsStore.loadInitialData([]); render( {childrenMock} ); expect(childrenMock).not.toHaveBeenCalled(); expect(screen.getByText('Remain Calm')).toBeInTheDocument(); }); it('shows "Create Project" button when there are no projects', function () { ProjectsStore.loadInitialData([]); render(); expect(screen.getByRole('button', {name: 'Create project'})).toBeEnabled(); }); it('disable "Create Project" when user has no org-level access', function () { ProjectsStore.loadInitialData([]); render(); expect(screen.getByRole('button', {name: 'Create project'})).toBeDisabled(); }); it('shows "Create Project" button when user has team-level access', function () { ProjectsStore.loadInitialData([]); TeamStore.loadInitialData([ {...TestStubs.Team(), access: ['team:admin', 'team:write', 'team:read']}, ]); // No org-level access render(); expect(screen.getByRole('button', {name: 'Create project'})).toBeEnabled(); }); it('has no "Join a Team" button when projects are missing', function () { ProjectsStore.loadInitialData([]); render(); expect(screen.queryByRole('button', {name: 'Join a Team'})).not.toBeInTheDocument(); expect(screen.getByRole('button', {name: 'Create project'})).toBeEnabled(); }); it('has a "Join a Team" button when no projects but org has projects', function () { ProjectsStore.loadInitialData([TestStubs.Project({hasAccess: false})]); render(); expect(screen.getByRole('button', {name: 'Join a Team'})).toBeInTheDocument(); }); it('has a disabled "Join a Team" button if no access to `team:read`', function () { ProjectsStore.loadInitialData([TestStubs.Project({hasAccess: false})]); render(); expect(screen.getByRole('button', {name: 'Join a Team'})).toBeDisabled(); }); it('shows empty message to superusers that are not members', function () { ProjectsStore.loadInitialData([ TestStubs.Project({hasAccess: true, isMember: false}), ]); ConfigStore.set('user', {...ConfigStore.get('user'), isSuperuser: true}); render( {null} ); expect( screen.getByText('You need at least one project to use this view') ).toBeInTheDocument(); }); });