]> source.dussan.org Git - sonarqube.git/blob
6a0c61741f2cd7949b501753b10871f912a2f9f5
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 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 React from 'react';
21 import { shallow } from 'enzyme';
22 import ProjectActivityAnalysesList from '../ProjectActivityAnalysesList';
23 import * as dates from '../../../../helpers/dates';
24 import { DEFAULT_GRAPH } from '../../utils';
25
26 const ANALYSES = [
27   {
28     key: 'A1',
29     date: new Date('2016-10-27T16:33:50+0000'),
30     events: [
31       {
32         key: 'E1',
33         category: 'VERSION',
34         name: '6.5-SNAPSHOT'
35       }
36     ]
37   },
38   {
39     key: 'A2',
40     date: new Date('2016-10-27T12:21:15+0000'),
41     events: []
42   },
43   {
44     key: 'A3',
45     date: new Date('2016-10-26T12:17:29+0000'),
46     events: [
47       {
48         key: 'E2',
49         category: 'VERSION',
50         name: '6.4'
51       },
52       {
53         key: 'E3',
54         category: 'OTHER',
55         name: 'foo'
56       }
57     ]
58   },
59   {
60     key: 'A4',
61     date: new Date('2016-10-24T16:33:50+0000'),
62     events: [
63       {
64         key: 'E1',
65         category: 'QUALITY_GATE',
66         name: 'Quality gate changed to red...'
67       }
68     ]
69   }
70 ];
71
72 const DEFAULT_PROPS = {
73   addCustomEvent: () => {},
74   addVersion: () => {},
75   analyses: ANALYSES,
76   analysesLoading: false,
77   canAdmin: false,
78   changeEvent: () => {},
79   deleteAnalysis: () => {},
80   deleteEvent: () => {},
81   inizializing: false,
82   project: { qualifier: 'TRK' },
83   query: { category: '', graph: DEFAULT_GRAPH, project: 'org.sonarsource.sonarqube:sonarqube' },
84   updateQuery: () => {}
85 };
86
87 window.Number = val => val;
88
89 dates.startOfDay = jest.fn(date => {
90   const startDay = new Date(date);
91   startDay.setUTCHours(0, 0, 0, 0);
92   return startDay;
93 });
94
95 it('should render correctly', () => {
96   expect(shallow(<ProjectActivityAnalysesList {...DEFAULT_PROPS} />)).toMatchSnapshot();
97 });
98
99 it('should correctly filter analyses by category', () => {
100   const wrapper = shallow(<ProjectActivityAnalysesList {...DEFAULT_PROPS} />);
101   wrapper.setProps({ query: { ...DEFAULT_PROPS.query, category: 'QUALITY_GATE' } });
102   expect(wrapper).toMatchSnapshot();
103 });
104
105 it('should correctly filter analyses by date range', () => {
106   const wrapper = shallow(<ProjectActivityAnalysesList {...DEFAULT_PROPS} />);
107   wrapper.setProps({
108     query: {
109       ...DEFAULT_PROPS.query,
110       from: new Date('2016-10-27T16:33:50+0000'),
111       to: new Date('2016-10-27T16:33:50+0000')
112     }
113   });
114   expect(wrapper).toMatchSnapshot();
115 });