]> source.dussan.org Git - sonarqube.git/blob
fbb17c78fe27a2ba63630bc72961563cf11e2f4c
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2018 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 * as React from 'react';
21 import { shallow } from 'enzyme';
22 import AutoPersonalOrganizationBind from '../AutoPersonalOrganizationBind';
23 import { waitAndUpdate, click } from '../../../../helpers/testUtils';
24 import { Step } from '../utils';
25
26 const personalOrg = { key: 'personalorg', name: 'Personal Org' };
27 const almOrganization = {
28   avatar: 'http://example.com/avatar',
29   description: 'description-foo',
30   key: 'key-foo',
31   name: 'name-foo',
32   personal: true,
33   url: 'http://example.com/foo'
34 };
35
36 it('should render correctly', async () => {
37   const updateOrganization = jest.fn().mockResolvedValue({ key: personalOrg.key });
38   const handleOrgDetailsFinish = jest.fn();
39   const wrapper = shallowRender({
40     almInstallId: 'id-foo',
41     importPersonalOrg: personalOrg,
42     handleOrgDetailsFinish,
43     updateOrganization
44   });
45
46   expect(wrapper).toMatchSnapshot();
47
48   wrapper.find('OrganizationDetailsForm').prop<Function>('onContinue')(personalOrg);
49   await waitAndUpdate(wrapper);
50   expect(handleOrgDetailsFinish).toBeCalled();
51
52   wrapper.setProps({ organization: personalOrg });
53   wrapper.find('PlanStep').prop<Function>('createOrganization')();
54   expect(updateOrganization).toBeCalledWith({ ...personalOrg, installationId: 'id-foo' });
55 });
56
57 it('should allow to cancel org import', () => {
58   const handleCancelImport = jest.fn();
59   const wrapper = shallowRender({
60     almInstallId: 'id-foo',
61     importPersonalOrg: personalOrg,
62     handleCancelImport
63   });
64
65   click(wrapper.find('DeleteButton'));
66   expect(handleCancelImport).toBeCalled();
67 });
68
69 function shallowRender(props: Partial<AutoPersonalOrganizationBind['props']> = {}) {
70   return shallow(
71     <AutoPersonalOrganizationBind
72       almApplication={{
73         backgroundColor: '#0052CC',
74         iconPath: '"/static/authbitbucket/bitbucket.svg"',
75         installationUrl: 'https://bitbucket.org/install/app',
76         key: 'bitbucket',
77         name: 'BitBucket'
78       }}
79       almOrganization={almOrganization}
80       handleCancelImport={jest.fn()}
81       handleOrgDetailsFinish={jest.fn()}
82       handleOrgDetailsStepOpen={jest.fn()}
83       importPersonalOrg={{ key: 'personalorg', name: 'Personal Org' }}
84       onDone={jest.fn()}
85       step={Step.OrganizationDetails}
86       subscriptionPlans={[{ maxNcloc: 100000, price: 10 }, { maxNcloc: 250000, price: 75 }]}
87       updateOrganization={jest.fn()}
88       {...props}
89     />
90   );
91 }