3 * Copyright (C) 2009-2021 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 import { shallow } from 'enzyme';
21 import * as React from 'react';
22 import Select from 'sonar-ui-common/components/controls/Select';
23 import { waitAndUpdate } from 'sonar-ui-common/helpers/testUtils';
24 import { AlmKeys } from '../../../../../types/alm-settings';
25 import PRDecorationBindingRenderer, {
26 PRDecorationBindingRendererProps
27 } from '../PRDecorationBindingRenderer';
29 it('should render correctly', () => {
30 expect(shallowRender()).toMatchSnapshot();
31 expect(shallowRender({ loading: false })).toMatchSnapshot();
34 it('should render single instance correctly', () => {
35 const singleInstance = {
37 url: 'http://single.url',
43 instances: [singleInstance]
48 it('should render multiple instances correctly', () => {
49 const urls = ['http://github.enterprise.com', 'http://bbs.enterprise.com'];
62 alm: AlmKeys.Bitbucket,
85 repository: 'account/repo'
95 it('should display action state correctly', () => {
96 const urls = ['http://url.com'];
97 const instances = [{ key: 'key', url: urls[0], alm: AlmKeys.GitHub }];
99 expect(shallowRender({ instances, loading: false, saving: true })).toMatchSnapshot();
100 expect(shallowRender({ instances, loading: false, success: true })).toMatchSnapshot();
110 it('should render select options correctly', async () => {
122 const wrapper = shallowRender({ loading: false, instances });
123 await waitAndUpdate(wrapper);
125 const optionRenderer = wrapper.find(Select).prop('optionRenderer');
127 expect(optionRenderer!(instances[0])).toMatchSnapshot();
129 expect(optionRenderer!(instances[1])).toMatchSnapshot();
132 function shallowRender(props: Partial<PRDecorationBindingRendererProps> = {}) {
134 <PRDecorationBindingRenderer
144 onFieldChange={jest.fn()}
149 monorepoEnabled={false}