]> source.dussan.org Git - sonarqube.git/blob
c2d05b1853fbaa9a49811d71aaf32d21fd96eee4
[sonarqube.git] /
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 { click } from '../../../../../helpers/testUtils';
23 import SystemUpgradeIntermediate from '../SystemUpgradeIntermediate';
24
25 const UPGRADES = [
26   {
27     version: '5.6.6',
28     description: 'Version 5.6.6 description',
29     releaseDate: '2017-04-02',
30     changeLogUrl: 'changelogurl',
31     downloadUrl: 'downloadurl',
32     plugins: {}
33   },
34   {
35     version: '5.6.5',
36     description: 'Version 5.6.5 description',
37     releaseDate: '2017-03-01',
38     changeLogUrl: 'changelogurl',
39     downloadUrl: 'downloadurl',
40     plugins: {}
41   }
42 ];
43
44 it('should display correctly', () => {
45   const wrapper = shallow(<SystemUpgradeIntermediate upgrades={UPGRADES} />);
46   expect(wrapper).toMatchSnapshot();
47   wrapper.setState({ showMore: true });
48   expect(wrapper).toMatchSnapshot();
49 });
50
51 it('should allow to show and hide intermediates', () => {
52   const wrapper = shallow(<SystemUpgradeIntermediate upgrades={UPGRADES} />);
53   expect(wrapper.find('.system-upgrade-intermediate').exists()).toBe(false);
54   click(wrapper.find('ButtonLink'));
55   expect(wrapper.find('.system-upgrade-intermediate').exists()).toBe(true);
56   click(wrapper.find('ButtonLink'));
57   expect(wrapper.find('.system-upgrade-intermediate').exists()).toBe(false);
58 });