summaryrefslogtreecommitdiff
path: root/spec/frontend/packages/details/components/installation_title_spec.js
blob: 14e990d301132bfea2df5e6908644e1e4383fc57 (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
import { shallowMount } from '@vue/test-utils';

import InstallationTitle from '~/packages/details/components/installation_title.vue';
import PersistedDropdownSelection from '~/vue_shared/components/registry/persisted_dropdown_selection.vue';

describe('InstallationTitle', () => {
  let wrapper;

  const defaultProps = { packageType: 'foo', options: [{ value: 'foo', label: 'bar' }] };

  const findPersistedDropdownSelection = () => wrapper.findComponent(PersistedDropdownSelection);
  const findTitle = () => wrapper.find('h3');

  function createComponent({ props = {} } = {}) {
    wrapper = shallowMount(InstallationTitle, {
      propsData: {
        ...defaultProps,
        ...props,
      },
    });
  }

  afterEach(() => {
    wrapper.destroy();
  });

  it('has a title', () => {
    createComponent();

    expect(findTitle().exists()).toBe(true);
    expect(findTitle().text()).toBe('Installation');
  });

  describe('persisted dropdown selection', () => {
    it('exists', () => {
      createComponent();

      expect(findPersistedDropdownSelection().exists()).toBe(true);
    });

    it('has the correct props', () => {
      createComponent();

      expect(findPersistedDropdownSelection().props()).toMatchObject({
        storageKey: 'package_foo_installation_instructions',
        options: defaultProps.options,
      });
    });

    it('on change event emits a change event', () => {
      createComponent();

      findPersistedDropdownSelection().vm.$emit('change', 'baz');

      expect(wrapper.emitted('change')).toEqual([['baz']]);
    });
  });
});