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

papa_parse_alert_spec.js « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a44a1aba8c078e52d5e2abd4cd7a5115b244dfc1 (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
import { GlAlert } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import { nextTick } from 'vue';
import PapaParseAlert from '~/vue_shared/components/papa_parse_alert.vue';

describe('app/assets/javascripts/vue_shared/components/papa_parse_alert.vue', () => {
  let wrapper;

  const createComponent = ({ errorMessages } = {}) => {
    wrapper = shallowMount(PapaParseAlert, {
      propsData: {
        papaParseErrors: errorMessages,
      },
    });
  };

  const findAlert = () => wrapper.findComponent(GlAlert);

  it('should render alert with correct props', async () => {
    createComponent({ errorMessages: [{ code: 'MissingQuotes' }] });
    await nextTick();

    expect(findAlert().props()).toMatchObject({
      variant: 'danger',
    });
    expect(findAlert().text()).toContain(
      'Failed to render the CSV file for the following reasons:',
    );
    expect(findAlert().text()).toContain('Quoted field unterminated');
  });

  it('should render original message if no translation available', async () => {
    createComponent({
      errorMessages: [{ code: 'NotDefined', message: 'Error code is undefined' }],
    });
    await nextTick();

    expect(findAlert().text()).toContain('Error code is undefined');
  });
});