]> source.dussan.org Git - sonarqube.git/blob
8f35a1c252fb39125ad8598b1f7d746480399945
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2018 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 * as React from 'react';
21 import { shallow } from 'enzyme';
22 import ComponentNavBranchesMenu from '../ComponentNavBranchesMenu';
23 import { elementKeydown } from '../../../../../helpers/testUtils';
24
25 const component = { key: 'component' } as T.Component;
26
27 it('renders list', () => {
28   expect(
29     shallow(
30       <ComponentNavBranchesMenu
31         branchLikes={[
32           mainBranch(),
33           shortBranch('foo'),
34           longBranch('bar'),
35           shortBranch('baz', true),
36           pullRequest('qux')
37         ]}
38         component={component}
39         currentBranchLike={mainBranch()}
40         onClose={jest.fn()}
41       />
42     )
43   ).toMatchSnapshot();
44 });
45
46 it('searches', () => {
47   const wrapper = shallow(
48     <ComponentNavBranchesMenu
49       branchLikes={[
50         mainBranch(),
51         shortBranch('foo'),
52         shortBranch('foobar'),
53         longBranch('bar'),
54         longBranch('BARBAZ')
55       ]}
56       component={component}
57       currentBranchLike={mainBranch()}
58       onClose={jest.fn()}
59     />
60   );
61   wrapper.setState({ query: 'bar' });
62   expect(wrapper).toMatchSnapshot();
63 });
64
65 it('selects next & previous', () => {
66   const wrapper = shallow<ComponentNavBranchesMenu>(
67     <ComponentNavBranchesMenu
68       branchLikes={[mainBranch(), shortBranch('foo'), shortBranch('foobar'), longBranch('bar')]}
69       component={component}
70       currentBranchLike={mainBranch()}
71       onClose={jest.fn()}
72     />
73   );
74   elementKeydown(wrapper.find('SearchBox'), 40);
75   wrapper.update();
76   expect(wrapper.state().selected).toEqual(shortBranch('foo'));
77   elementKeydown(wrapper.find('SearchBox'), 40);
78   wrapper.update();
79   expect(wrapper.state().selected).toEqual(shortBranch('foobar'));
80   elementKeydown(wrapper.find('SearchBox'), 38);
81   wrapper.update();
82   expect(wrapper.state().selected).toEqual(shortBranch('foo'));
83 });
84
85 function mainBranch(): T.MainBranch {
86   return { isMain: true, name: 'master' };
87 }
88
89 function shortBranch(name: string, isOrphan?: true): T.ShortLivingBranch {
90   return {
91     isMain: false,
92     isOrphan,
93     mergeBranch: 'master',
94     name,
95     status: { bugs: 0, codeSmells: 0, qualityGateStatus: 'OK', vulnerabilities: 0 },
96     type: 'SHORT'
97   };
98 }
99
100 function longBranch(name: string): T.LongLivingBranch {
101   return { isMain: false, name, type: 'LONG' };
102 }
103
104 function pullRequest(title: string): T.PullRequest {
105   return {
106     base: 'master',
107     branch: 'feature',
108     key: '1234',
109     status: { bugs: 0, codeSmells: 0, qualityGateStatus: 'OK', vulnerabilities: 0 },
110     title
111   };
112 }