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

tag_field_new_spec.js « components « releases « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eba0e286b27835164231d2f84fad23ef17863ff9 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import { mount, shallowMount } from '@vue/test-utils';
import { GlFormInput } from '@gitlab/ui';
import TagFieldNew from '~/releases/components/tag_field_new.vue';
import createStore from '~/releases/stores';
import createDetailModule from '~/releases/stores/modules/detail';
import RefSelector from '~/ref/components/ref_selector.vue';

const TEST_TAG_NAME = 'test-tag-name';
const TEST_PROJECT_ID = '1234';
const TEST_CREATE_FROM = 'test-create-from';

describe('releases/components/tag_field_new', () => {
  let store;
  let wrapper;

  const createComponent = (mountFn = shallowMount) => {
    wrapper = mountFn(TagFieldNew, {
      store,
      stubs: {
        RefSelector: true,
      },
    });
  };

  beforeEach(() => {
    store = createStore({
      modules: {
        detail: createDetailModule({
          projectId: TEST_PROJECT_ID,
        }),
      },
    });

    store.state.detail.createFrom = TEST_CREATE_FROM;

    store.state.detail.release = {
      tagName: TEST_TAG_NAME,
      assets: {
        links: [],
      },
    };
  });

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

  const findTagNameFormGroup = () => wrapper.find('[data-testid="tag-name-field"]');
  const findTagNameGlInput = () => findTagNameFormGroup().find(GlFormInput);
  const findTagNameInput = () => findTagNameFormGroup().find('input');

  const findCreateFromFormGroup = () => wrapper.find('[data-testid="create-from-field"]');
  const findCreateFromDropdown = () => findCreateFromFormGroup().find(RefSelector);

  describe('"Tag name" field', () => {
    describe('rendering and behavior', () => {
      beforeEach(() => createComponent());

      it('renders a label', () => {
        expect(findTagNameFormGroup().attributes().label).toBe('Tag name');
      });

      describe('when the user updates the field', () => {
        it("updates the store's release.tagName property", () => {
          const updatedTagName = 'updated-tag-name';
          findTagNameGlInput().vm.$emit('input', updatedTagName);

          return wrapper.vm.$nextTick().then(() => {
            expect(store.state.detail.release.tagName).toBe(updatedTagName);
          });
        });
      });
    });

    describe('validation', () => {
      beforeEach(() => {
        createComponent(mount);
      });

      /**
       * Utility function to test the visibility of the validation message
       * @param {'shown' | 'hidden'} state The expected state of the validation message.
       * Should be passed either 'shown' or 'hidden'
       */
      const expectValidationMessageToBe = (state) => {
        return wrapper.vm.$nextTick().then(() => {
          expect(findTagNameFormGroup().element).toHaveClass(
            state === 'shown' ? 'is-invalid' : 'is-valid',
          );
          expect(findTagNameFormGroup().element).not.toHaveClass(
            state === 'shown' ? 'is-valid' : 'is-invalid',
          );
        });
      };

      describe('when the user has not yet interacted with the component', () => {
        it('does not display a validation error', () => {
          findTagNameInput().setValue('');

          return expectValidationMessageToBe('hidden');
        });
      });

      describe('when the user has interacted with the component and the value is not empty', () => {
        it('does not display validation error', () => {
          findTagNameInput().trigger('blur');

          return expectValidationMessageToBe('hidden');
        });
      });

      describe('when the user has interacted with the component and the value is empty', () => {
        it('displays a validation error', () => {
          const tagNameInput = findTagNameInput();

          tagNameInput.setValue('');
          tagNameInput.trigger('blur');

          return expectValidationMessageToBe('shown');
        });
      });
    });
  });

  describe('"Create from" field', () => {
    beforeEach(() => createComponent());

    it('renders a label', () => {
      expect(findCreateFromFormGroup().attributes().label).toBe('Create from');
    });

    describe('when the user selects a git ref', () => {
      it("updates the store's createFrom property", () => {
        const updatedCreateFrom = 'update-create-from';
        findCreateFromDropdown().vm.$emit('input', updatedCreateFrom);

        return wrapper.vm.$nextTick().then(() => {
          expect(store.state.detail.createFrom).toBe(updatedCreateFrom);
        });
      });
    });
  });
});