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

upload_spec.js « new_dropdown « components « ide « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc643589d515bf01d30d8bf2bac5751a03ecef4e (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
import { mount } from '@vue/test-utils';
import Upload from '~/ide/components/new_dropdown/upload.vue';

describe('new dropdown upload', () => {
  let wrapper;

  beforeEach(() => {
    wrapper = mount(Upload, {
      propsData: {
        path: '',
      },
    });
  });

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

  describe('openFile', () => {
    it('calls for each file', () => {
      const files = ['test', 'test2', 'test3'];

      jest.spyOn(wrapper.vm, 'readFile').mockImplementation(() => {});
      jest.spyOn(wrapper.vm.$refs.fileUpload, 'files', 'get').mockReturnValue(files);

      wrapper.vm.openFile();

      expect(wrapper.vm.readFile.mock.calls.length).toBe(3);

      files.forEach((file, i) => {
        expect(wrapper.vm.readFile.mock.calls[i]).toEqual([file]);
      });
    });
  });

  describe('readFile', () => {
    beforeEach(() => {
      jest.spyOn(FileReader.prototype, 'readAsDataURL').mockImplementation(() => {});
    });

    it('calls readAsDataURL for all files', () => {
      const file = {
        type: 'images/png',
      };

      wrapper.vm.readFile(file);

      expect(FileReader.prototype.readAsDataURL).toHaveBeenCalledWith(file);
    });
  });

  describe('createFile', () => {
    const textTarget = {
      result: 'base64,cGxhaW4gdGV4dA==',
    };
    const binaryTarget = {
      result: 'base64,8PDw8A==', // ðððð
    };

    const textFile = new File(['plain text'], 'textFile', { type: 'test/mime-text' });
    const binaryFile = new File(['😺'], 'binaryFile', { type: 'test/mime-binary' });

    beforeEach(() => {
      jest.spyOn(FileReader.prototype, 'readAsText');
    });

    it('calls readAsText and creates file in plain text (without encoding) if the file content is plain text', async () => {
      const waitForCreate = new Promise((resolve) => {
        wrapper.vm.$on('create', resolve);
      });

      wrapper.vm.createFile(textTarget, textFile);

      expect(FileReader.prototype.readAsText).toHaveBeenCalledWith(textFile);

      await waitForCreate;
      expect(wrapper.emitted('create')[0]).toStrictEqual([
        {
          name: textFile.name,
          type: 'blob',
          content: 'plain text',
          rawPath: '',
          mimeType: 'test/mime-text',
        },
      ]);
    });

    it('creates a blob URL for the content if binary', () => {
      wrapper.vm.createFile(binaryTarget, binaryFile);

      expect(FileReader.prototype.readAsText).not.toHaveBeenCalled();

      expect(wrapper.emitted('create')[0]).toStrictEqual([
        {
          name: binaryFile.name,
          type: 'blob',
          content: 'ðððð',
          rawPath: 'blob:https://gitlab.com/048c7ac1-98de-4a37-ab1b-0206d0ea7e1b',
          mimeType: 'test/mime-binary',
        },
      ]);
    });
  });
});