]> source.dussan.org Git - sonarqube.git/blob
095d4b3194804c9b7afda9966a17481b4a9c1250
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2020 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
21 import { get, remove, save } from 'sonar-ui-common/helpers/storage';
22 import { getIndexationStatus } from '../../../../api/ce';
23 import { IndexationStatus } from '../../../../types/indexation';
24 import IndexationNotificationHelper from '../IndexationNotificationHelper';
25
26 beforeEach(() => {
27   jest.clearAllMocks();
28   jest.useFakeTimers();
29 });
30
31 jest.mock('../../../../api/ce', () => ({
32   getIndexationStatus: jest.fn()
33 }));
34
35 jest.mock('sonar-ui-common/helpers/storage', () => ({
36   get: jest.fn(),
37   remove: jest.fn(),
38   save: jest.fn()
39 }));
40
41 it('should properly start & stop polling for indexation status', async () => {
42   const onNewStatus = jest.fn();
43   const newStatus: IndexationStatus = {
44     isCompleted: true,
45     percentCompleted: 100,
46     hasFailures: false
47   };
48   (getIndexationStatus as jest.Mock).mockResolvedValueOnce(newStatus);
49
50   IndexationNotificationHelper.startPolling(onNewStatus);
51   expect(getIndexationStatus).toHaveBeenCalled();
52
53   await new Promise(setImmediate);
54   expect(onNewStatus).toHaveBeenCalledWith(newStatus);
55
56   jest.runOnlyPendingTimers();
57   expect(getIndexationStatus).toHaveBeenCalledTimes(2);
58
59   (getIndexationStatus as jest.Mock).mockClear();
60
61   IndexationNotificationHelper.stopPolling();
62   jest.runAllTimers();
63
64   expect(getIndexationStatus).not.toHaveBeenCalled();
65 });
66
67 it('should properly handle the flag to show the completed banner', () => {
68   IndexationNotificationHelper.markInProgressNotificationAsDisplayed();
69
70   expect(save).toHaveBeenCalledWith(expect.any(String), 'true');
71
72   (get as jest.Mock).mockReturnValueOnce('true');
73   let shouldDisplay = IndexationNotificationHelper.shouldDisplayCompletedNotification();
74
75   expect(shouldDisplay).toBe(true);
76   expect(get).toHaveBeenCalled();
77
78   IndexationNotificationHelper.markCompletedNotificationAsDismissed();
79
80   expect(remove).toHaveBeenCalled();
81
82   shouldDisplay = IndexationNotificationHelper.shouldDisplayCompletedNotification();
83
84   expect(shouldDisplay).toBe(false);
85 });