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

file_icon_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: b0e623520a8089920443e5741f19bbfd93046fab (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
import { GlLoadingIcon, GlIcon } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import FileIcon from '~/vue_shared/components/file_icon.vue';
import { FILE_SYMLINK_MODE } from '~/vue_shared/constants';

describe('File Icon component', () => {
  let wrapper;
  const findSvgIcon = () => wrapper.find('svg');
  const findGlIcon = () => wrapper.find(GlIcon);
  const getIconName = () =>
    findSvgIcon()
      .find('use')
      .element.getAttribute('xlink:href')
      .replace(`${gon.sprite_file_icons}#`, '');

  const createComponent = (props = {}) => {
    wrapper = shallowMount(FileIcon, {
      propsData: { ...props },
    });
  };

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

  it('should render a span element and an icon', () => {
    createComponent({
      fileName: 'test.js',
    });

    expect(wrapper.element.tagName).toEqual('SPAN');
    expect(findSvgIcon().exists()).toBeDefined();
  });

  it.each`
    fileName        | iconName
    ${'index.js'}   | ${'javascript'}
    ${'test.png'}   | ${'image'}
    ${'test.PNG'}   | ${'image'}
    ${'.npmrc'}     | ${'npm'}
    ${'.Npmrc'}     | ${'file'}
    ${'webpack.js'} | ${'webpack'}
  `('should render a $iconName icon based on file ending', ({ fileName, iconName }) => {
    createComponent({ fileName });
    expect(getIconName()).toBe(iconName);
  });

  it('should render a standard folder icon', () => {
    createComponent({
      fileName: 'js',
      folder: true,
    });

    expect(findSvgIcon().exists()).toBe(false);
    expect(findGlIcon().classes()).toContain('folder-icon');
  });

  it('should render a loading icon', () => {
    createComponent({
      fileName: 'test.js',
      loading: true,
    });

    expect(wrapper.find(GlLoadingIcon).exists()).toBe(true);
  });

  it('should add a special class and a size class', () => {
    const size = 120;
    createComponent({
      fileName: 'test.js',
      cssClasses: 'extraclasses',
      size,
    });
    const classes = findSvgIcon().classes();

    expect(classes).toContain(`s${size}`);
    expect(classes).toContain('extraclasses');
  });

  it('should render a symlink icon', () => {
    createComponent({
      fileName: 'anything',
      fileMode: FILE_SYMLINK_MODE,
    });

    expect(findSvgIcon().exists()).toBe(false);
    expect(findGlIcon().attributes('name')).toBe('symlink');
  });
});