]> source.dussan.org Git - sonarqube.git/blob
f47e0713fcf85b0a2d2ddfd6e97a40ad12d32d3a
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 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 PRDecorationBindingRenderer, {
23   PRDecorationBindingRendererProps
24 } from '../PRDecorationBindingRenderer';
25
26 it('should render correctly', () => {
27   expect(shallowRender()).toMatchSnapshot();
28   expect(shallowRender({ loading: false })).toMatchSnapshot();
29 });
30
31 it('should render single instance correctly', () => {
32   const singleInstance = {
33     key: 'single',
34     url: 'http://single.url',
35     alm: 'github'
36   };
37   expect(
38     shallowRender({
39       loading: false,
40       instances: [singleInstance]
41     })
42   ).toMatchSnapshot();
43 });
44
45 it('should render multiple instances correctly', () => {
46   const urls = ['http://github.enterprise.com', 'http://github2.enterprise.com'];
47   const instances = [
48     {
49       alm: 'github',
50       key: 'i1',
51       url: urls[0]
52     },
53     {
54       alm: 'github',
55       key: 'i2',
56       url: urls[0]
57     },
58     {
59       alm: 'github',
60       key: 'i3',
61       url: urls[1]
62     }
63   ];
64
65   //unfilled
66   expect(
67     shallowRender({
68       instances,
69       loading: false
70     })
71   ).toMatchSnapshot();
72
73   // filled
74   expect(
75     shallowRender({
76       formData: {
77         key: 'Github - main instance',
78         repository: 'account/repo'
79       },
80       hasBinding: true,
81       instances,
82       loading: false
83     })
84   ).toMatchSnapshot();
85 });
86
87 it('should display action state correctly', () => {
88   const urls = ['http://url.com'];
89   const instances = [{ key: 'key', url: urls[0], alm: 'github' }];
90
91   expect(shallowRender({ instances, loading: false, saving: true })).toMatchSnapshot();
92   expect(shallowRender({ instances, loading: false, success: true })).toMatchSnapshot();
93   expect(
94     shallowRender({
95       instances,
96       isValid: true,
97       loading: false
98     })
99   ).toMatchSnapshot();
100 });
101
102 function shallowRender(props: Partial<PRDecorationBindingRendererProps> = {}) {
103   return shallow(
104     <PRDecorationBindingRenderer
105       formData={{
106         key: '',
107         repository: ''
108       }}
109       hasBinding={false}
110       instances={[]}
111       isValid={false}
112       loading={true}
113       onFieldChange={jest.fn()}
114       onReset={jest.fn()}
115       onSubmit={jest.fn()}
116       saving={false}
117       success={false}
118       {...props}
119     />
120   );
121 }