You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NonAdminPagesContainer-test.tsx 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2021 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. import { shallow } from 'enzyme';
  21. import * as React from 'react';
  22. import { mockComponent } from '../../../helpers/mocks/component';
  23. import { ComponentQualifier } from '../../../types/component';
  24. import NonAdminPagesContainer, { NonAdminPagesContainerProps } from '../NonAdminPagesContainer';
  25. function Child() {
  26. return <div />;
  27. }
  28. it('should render correctly', () => {
  29. expect(
  30. shallowRender()
  31. .find(Child)
  32. .exists()
  33. ).toBe(true);
  34. expect(
  35. shallowRender({
  36. component: mockComponent({
  37. qualifier: ComponentQualifier.Application,
  38. canBrowseAllChildProjects: true
  39. })
  40. })
  41. .find(Child)
  42. .exists()
  43. ).toBe(true);
  44. const wrapper = shallowRender({
  45. component: mockComponent({
  46. qualifier: ComponentQualifier.Application
  47. })
  48. });
  49. expect(wrapper.find(Child).exists()).toBe(false);
  50. expect(wrapper).toMatchSnapshot();
  51. });
  52. function shallowRender(props: Partial<NonAdminPagesContainerProps> = {}) {
  53. return shallow<NonAdminPagesContainerProps>(
  54. <NonAdminPagesContainer
  55. branchLikes={[]}
  56. component={mockComponent()}
  57. onBranchesChange={jest.fn()}
  58. onComponentChange={jest.fn()}
  59. {...props}>
  60. <Child />
  61. </NonAdminPagesContainer>
  62. );
  63. }