]> source.dussan.org Git - sonarqube.git/blob
df963115cc7d51be92326a250d893f434d77bc43
[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 userEvent from '@testing-library/user-event';
21 import React from 'react';
22 import AlmSettingsServiceMock from '../../../../../api/mocks/AlmSettingsServiceMock';
23 import { renderComponent } from '../../../../../helpers/testReactTestingUtils';
24 import { byRole, byText } from '../../../../../helpers/testSelector';
25 import { AlmKeys } from '../../../../../types/alm-settings';
26 import AlmBindingDefinitionForm, {
27   AlmBindingDefinitionFormProps,
28 } from '../AlmBindingDefinitionForm';
29
30 jest.mock('../../../../../api/alm-settings');
31
32 let almSettings: AlmSettingsServiceMock;
33
34 beforeAll(() => {
35   almSettings = new AlmSettingsServiceMock();
36 });
37
38 afterEach(() => {
39   almSettings.reset();
40 });
41
42 const ui = {
43   bitbucketConfiguration: (almKey: AlmKeys.BitbucketCloud | AlmKeys.BitbucketServer) =>
44     byRole('button', { name: `alm.${almKey}.long` }),
45   configurationInput: (id: string) =>
46     byRole('textbox', { name: `settings.almintegration.form.${id}` }),
47   saveConfigurationButton: byRole('button', { name: 'settings.almintegration.form.save' }),
48   cancelButton: byRole('button', { name: 'cancel' }),
49   validationError: (text: string) => byText(text),
50 };
51
52 const onCancel = jest.fn();
53
54 it('enforceValidation enabled', async () => {
55   almSettings.setDefinitionErrorMessage('Validation Error');
56   renderAlmBindingDefinitionForm();
57
58   // Fill in form
59   await userEvent.type(await ui.configurationInput('name.gitlab').find(), 'Name');
60   await userEvent.type(ui.configurationInput('url.gitlab').get(), 'https://api.alm.com');
61   await userEvent.type(ui.configurationInput('personal_access_token').get(), 'Access Token');
62
63   await userEvent.click(ui.saveConfigurationButton.get());
64   expect(ui.validationError('Validation Error').get()).toBeInTheDocument();
65
66   await userEvent.click(ui.cancelButton.get());
67   expect(onCancel).toHaveBeenCalled();
68 });
69
70 function renderAlmBindingDefinitionForm(props: Partial<AlmBindingDefinitionFormProps> = {}) {
71   return renderComponent(
72     <AlmBindingDefinitionForm
73       onCancel={onCancel}
74       afterSubmit={jest.fn()}
75       enforceValidation
76       alm={AlmKeys.GitLab}
77       {...props}
78     />,
79   );
80 }