Welcome to mirror list, hosted at ThFree Co, Russian Federation.

organization_form_wrapper_spec.js « crm « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f15fcac71d5fe7400e953f93ada496a05fe67afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import OrganizationFormWrapper from '~/crm/organizations/components/organization_form_wrapper.vue';
import CrmForm from '~/crm/components/crm_form.vue';
import getGroupOrganizationsQuery from '~/crm/organizations/components/graphql/get_group_organizations.query.graphql';
import createOrganizationMutation from '~/crm/organizations/components/graphql/create_customer_relations_organization.mutation.graphql';
import updateOrganizationMutation from '~/crm/organizations/components/graphql/update_organization.mutation.graphql';

describe('Customer relations organization form wrapper', () => {
  let wrapper;

  const findOrganizationForm = () => wrapper.findComponent(CrmForm);

  const $apollo = {
    queries: {
      organizations: {
        loading: false,
      },
    },
  };
  const $route = {
    params: {
      id: 7,
    },
  };
  const organizations = [{ id: 'gid://gitlab/CustomerRelations::Organization/7' }];

  const mountComponent = ({ isEditMode = false } = {}) => {
    wrapper = shallowMountExtended(OrganizationFormWrapper, {
      propsData: {
        isEditMode,
      },
      provide: {
        groupFullPath: 'flightjs',
        groupId: 26,
      },
      mocks: {
        $apollo,
        $route,
      },
    });
  };

  describe('in edit mode', () => {
    it('should render organization form with correct props', () => {
      mountComponent({ isEditMode: true });

      const organizationForm = findOrganizationForm();
      expect(organizationForm.props('fields')).toHaveLength(4);
      expect(organizationForm.props('title')).toBe('Edit organization');
      expect(organizationForm.props('successMessage')).toBe('Organization has been updated.');
      expect(organizationForm.props('mutation')).toBe(updateOrganizationMutation);
      expect(organizationForm.props('getQuery')).toMatchObject({
        query: getGroupOrganizationsQuery,
        variables: { groupFullPath: 'flightjs' },
      });
      expect(organizationForm.props('getQueryNodePath')).toBe('group.organizations');
      expect(organizationForm.props('existingId')).toBe(organizations[0].id);
      expect(organizationForm.props('additionalCreateParams')).toMatchObject({
        groupId: 'gid://gitlab/Group/26',
      });
    });
  });

  describe('in create mode', () => {
    it('should render organization form with correct props', () => {
      mountComponent();

      const organizationForm = findOrganizationForm();
      expect(organizationForm.props('fields')).toHaveLength(3);
      expect(organizationForm.props('title')).toBe('New organization');
      expect(organizationForm.props('successMessage')).toBe('Organization has been added.');
      expect(organizationForm.props('mutation')).toBe(createOrganizationMutation);
      expect(organizationForm.props('getQuery')).toMatchObject({
        query: getGroupOrganizationsQuery,
        variables: { groupFullPath: 'flightjs' },
      });
      expect(organizationForm.props('getQueryNodePath')).toBe('group.organizations');
      expect(organizationForm.props('existingId')).toBeNull();
      expect(organizationForm.props('additionalCreateParams')).toMatchObject({
        groupId: 'gid://gitlab/Group/26',
      });
    });
  });
});