]> source.dussan.org Git - sonarqube.git/blob
c3b12396834384feff683f117e88057181272cf3
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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 { mockAnalysisEvent, mockParsedAnalysis } from '../../../../helpers/mocks/project-activity';
23 import BranchAnalysisListRenderer, {
24   BranchAnalysisListRendererProps,
25 } from '../BranchAnalysisListRenderer';
26
27 jest.mock('date-fns', () => {
28   const actual = jest.requireActual('date-fns');
29   return {
30     ...actual,
31     startOfDay: (date: Date) => {
32       const startDay = new Date(date);
33       startDay.setUTCHours(0, 0, 0, 0);
34       return startDay;
35     },
36   };
37 });
38
39 jest.mock('../../../../helpers/dates', () => {
40   const actual = jest.requireActual('../../../../helpers/dates');
41   return { ...actual, toShortNotSoISOString: (date: string) => `ISO.${date}` };
42 });
43
44 const analyses = [
45   mockParsedAnalysis({
46     key: '4',
47     date: new Date('2017-03-02T10:36:01Z'),
48     projectVersion: '4.2',
49   }),
50   mockParsedAnalysis({
51     key: '3',
52     date: new Date('2017-03-02T09:36:01Z'),
53     events: [mockAnalysisEvent()],
54     projectVersion: '4.2',
55   }),
56   mockParsedAnalysis({
57     key: '2',
58     date: new Date('2017-03-02T08:36:01Z'),
59     events: [
60       mockAnalysisEvent(),
61       mockAnalysisEvent({ category: 'VERSION', qualityGate: undefined }),
62     ],
63     projectVersion: '4.1',
64   }),
65   mockParsedAnalysis({ key: '1', projectVersion: '4.1' }),
66 ];
67
68 it('should render correctly', () => {
69   expect(shallowRender()).toMatchSnapshot('empty');
70   expect(shallowRender({ loading: true })).toMatchSnapshot('loading');
71   expect(shallowRender({ analyses, selectedAnalysisKey: '2' })).toMatchSnapshot('Analyses');
72 });
73
74 function shallowRender(props: Partial<BranchAnalysisListRendererProps> = {}) {
75   return shallow(
76     <BranchAnalysisListRenderer
77       analyses={[]}
78       handleRangeChange={jest.fn()}
79       handleScroll={jest.fn()}
80       loading={false}
81       onSelectAnalysis={jest.fn()}
82       range={30}
83       registerBadgeNode={jest.fn()}
84       registerScrollableNode={jest.fn()}
85       selectedAnalysisKey=""
86       shouldStick={jest.fn()}
87       {...props}
88     />
89   );
90 }