summaryrefslogtreecommitdiff
path: root/spec/frontend/packages_and_registries/container_registry/explorer/components/delete_button_spec.js
blob: ff11c8843bb08500d9c41584b0c91310ff687f93 (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 { GlButton, GlTooltip, GlSprintf } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import component from '~/packages_and_registries/container_registry/explorer/components/delete_button.vue';
import { LIST_DELETE_BUTTON_DISABLED_FOR_MIGRATION } from '~/packages_and_registries/container_registry/explorer/constants/list';

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

  const defaultProps = {
    title: 'Foo title',
    tooltipTitle: 'Bar tooltipTitle',
  };

  const findButton = () => wrapper.findComponent(GlButton);
  const findTooltip = () => wrapper.findComponent(GlTooltip);

  const mountComponent = (props) => {
    wrapper = shallowMount(component, {
      propsData: {
        ...defaultProps,
        ...props,
      },
      stubs: {
        GlTooltip,
        GlSprintf,
      },
    });
  };

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

  describe('tooltip', () => {
    it('the title is controlled by tooltipTitle prop', () => {
      mountComponent();
      const tooltip = findTooltip();
      expect(tooltip).toBeDefined();
      expect(tooltip.text()).toBe(defaultProps.tooltipTitle);
    });

    it('is disabled when tooltipTitle is disabled', () => {
      mountComponent({ tooltipDisabled: true });
      expect(findTooltip().props('disabled')).toBe(true);
    });

    it('works with a link', () => {
      mountComponent({
        tooltipTitle: LIST_DELETE_BUTTON_DISABLED_FOR_MIGRATION,
        tooltipLink: 'foo',
      });
      expect(findTooltip().text()).toMatchInterpolatedText(
        LIST_DELETE_BUTTON_DISABLED_FOR_MIGRATION,
      );
    });
  });

  describe('button', () => {
    it('exists', () => {
      mountComponent();
      expect(findButton().exists()).toBe(true);
    });

    it('has the correct props/attributes bound', () => {
      mountComponent({ disabled: true });
      expect(findButton().attributes()).toMatchObject({
        'aria-label': 'Foo title',
        icon: 'remove',
        title: 'Foo title',
        variant: 'danger',
        disabled: 'true',
        category: 'secondary',
      });
    });

    it('emits a delete event', () => {
      mountComponent();
      expect(wrapper.emitted('delete')).toEqual(undefined);
      findButton().vm.$emit('click');
      expect(wrapper.emitted('delete')).toEqual([[]]);
    });
  });
});