123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import Feature from 'sentry/components/acl/feature';
- import ConfigStore from 'sentry/stores/configStore';
- import HookStore from 'sentry/stores/hookStore';
- describe('Feature', function () {
- const organization = TestStubs.Organization({
- features: ['org-foo', 'org-bar', 'bar'],
- });
- const project = TestStubs.Project({
- features: ['project-foo', 'project-bar'],
- });
- const routerContext = TestStubs.routerContext([
- {
- organization,
- project,
- },
- ]);
- describe('as render prop', function () {
- const childrenMock = jest.fn().mockReturnValue(null);
- beforeEach(function () {
- childrenMock.mockClear();
- });
- it('has features', function () {
- const features = ['org-foo', 'project-foo'];
- render(<Feature features={features}>{childrenMock}</Feature>, {
- context: routerContext,
- });
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: true,
- features,
- organization,
- project,
- renderDisabled: false,
- });
- });
- it('has features when requireAll is false', function () {
- const features = ['org-foo', 'project-foo', 'apple'];
- render(
- <Feature features={features} requireAll={false}>
- {childrenMock}
- </Feature>,
- {context: routerContext}
- );
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: true,
- organization,
- project,
- features,
- renderDisabled: false,
- });
- });
- it('has no features', function () {
- render(<Feature features={['org-baz']}>{childrenMock}</Feature>, {
- context: routerContext,
- });
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: false,
- organization,
- project,
- features: ['org-baz'],
- renderDisabled: false,
- });
- });
- it('calls render function when no features', function () {
- const noFeatureRenderer = jest.fn(() => null);
- render(
- <Feature features={['org-baz']} renderDisabled={noFeatureRenderer}>
- {childrenMock}
- </Feature>,
- {context: routerContext}
- );
- expect(childrenMock).not.toHaveBeenCalled();
- expect(noFeatureRenderer).toHaveBeenCalledWith({
- hasFeature: false,
- children: childrenMock,
- organization,
- project,
- features: ['org-baz'],
- });
- });
- it('can specify org from props', function () {
- const customOrg = TestStubs.Organization({features: ['org-bazar']});
- render(
- <Feature organization={customOrg} features={['org-bazar']}>
- {childrenMock}
- </Feature>,
- {context: routerContext}
- );
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: true,
- organization: customOrg,
- project,
- features: ['org-bazar'],
- renderDisabled: false,
- });
- });
- it('can specify project from props', function () {
- const customProject = TestStubs.Project({features: ['project-baz']});
- render(
- <Feature project={customProject} features={['project-baz']}>
- {childrenMock}
- </Feature>,
- {context: routerContext}
- );
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: true,
- organization,
- project: customProject,
- features: ['project-baz'],
- renderDisabled: false,
- });
- });
- it('handles no org/project', function () {
- const features = ['org-foo', 'project-foo'];
- render(<Feature features={features}>{childrenMock}</Feature>, {
- context: routerContext,
- });
- expect(childrenMock).toHaveBeenCalledWith(
- expect.objectContaining({
- hasFeature: true,
- organization,
- project,
- features,
- renderDisabled: false,
- })
- );
- });
- it('handles features prefixed with org/project', function () {
- render(<Feature features={['organizations:org-bar']}>{childrenMock}</Feature>, {
- context: routerContext,
- });
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: true,
- organization,
- project,
- features: ['organizations:org-bar'],
- renderDisabled: false,
- });
- render(<Feature features={['projects:bar']}>{childrenMock}</Feature>, {
- context: routerContext,
- });
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: false,
- organization,
- project,
- features: ['projects:bar'],
- renderDisabled: false,
- });
- });
- it('checks ConfigStore.config.features (e.g. `organizations:create`)', function () {
- ConfigStore.config = {
- features: new Set(['organizations:create']),
- };
- render(<Feature features={['organizations:create']}>{childrenMock}</Feature>, {
- context: routerContext,
- });
- expect(childrenMock).toHaveBeenCalledWith({
- hasFeature: true,
- organization,
- project,
- features: ['organizations:create'],
- renderDisabled: false,
- });
- });
- });
- describe('no children', function () {
- it('should display renderDisabled with no feature', function () {
- render(
- <Feature features={['nope']} renderDisabled={() => <span>disabled</span>} />,
- {context: routerContext}
- );
- expect(screen.getByText('disabled')).toBeInTheDocument();
- });
- it('should display be empty when on', function () {
- render(
- <Feature features={['org-bar']} renderDisabled={() => <span>disabled</span>} />,
- {context: routerContext}
- );
- expect(screen.queryByText('disabled')).not.toBeInTheDocument();
- });
- });
- describe('as React node', function () {
- it('has features', function () {
- render(
- <Feature features={['org-bar']}>
- <div>The Child</div>
- </Feature>,
- {context: routerContext}
- );
- expect(screen.getByText('The Child')).toBeInTheDocument();
- });
- it('has no features', function () {
- render(
- <Feature features={['org-baz']}>
- <div>The Child</div>
- </Feature>,
- {context: routerContext}
- );
- expect(screen.queryByText('The Child')).not.toBeInTheDocument();
- });
- it('renders a default disabled component', function () {
- render(
- <Feature features={['org-baz']} renderDisabled>
- <div>The Child</div>
- </Feature>,
- {context: routerContext}
- );
- expect(screen.getByText('This feature is coming soon!')).toBeInTheDocument();
- expect(screen.queryByText('The Child')).not.toBeInTheDocument();
- });
- it('calls renderDisabled function when no features', function () {
- const noFeatureRenderer = jest.fn(() => null);
- const children = <div>The Child</div>;
- render(
- <Feature features={['org-baz']} renderDisabled={noFeatureRenderer}>
- {children}
- </Feature>,
- {context: routerContext}
- );
- expect(screen.queryByText('The Child')).not.toBeInTheDocument();
- expect(noFeatureRenderer).toHaveBeenCalledWith({
- hasFeature: false,
- children,
- organization,
- project,
- features: ['org-baz'],
- });
- });
- });
- describe('using HookStore for renderDisabled', function () {
- let hookFn;
- beforeEach(function () {
- hookFn = jest.fn(() => null);
- HookStore.hooks['feature-disabled:org-baz'] = [hookFn];
- HookStore.hooks['feature-disabled:test-hook'] = [hookFn];
- });
- afterEach(function () {
- delete HookStore.hooks['feature-disabled:org-baz'];
- });
- it('uses hookName if provided', function () {
- const children = <div>The Child</div>;
- render(
- <Feature features={['org-bazar']} hookName="feature-disabled:test-hook">
- {children}
- </Feature>,
- {context: routerContext}
- );
- expect(screen.queryByText('The Child')).not.toBeInTheDocument();
- expect(hookFn).toHaveBeenCalledWith({
- hasFeature: false,
- children,
- organization,
- project,
- features: ['org-bazar'],
- });
- });
- });
- });
|