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

web_ide_navigator_spec.js « utils « lib « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f5cd09d50e911ee0aa2a21b3693e1e2b5ed687c (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
import { visitUrl, webIDEUrl } from '~/lib/utils/url_utility';
import { openWebIDE } from '~/lib/utils/web_ide_navigator';

jest.mock('~/lib/utils/url_utility', () => ({
  visitUrl: jest.fn(),
  webIDEUrl: jest.fn().mockImplementation((path) => `/-/ide/projects${path}`),
}));

describe('openWebIDE', () => {
  it('when called without projectPath throws TypeError and does not call visitUrl', () => {
    expect(() => {
      openWebIDE();
    }).toThrow(new TypeError('projectPath parameter is required'));
    expect(visitUrl).not.toHaveBeenCalled();
  });

  it('when called with projectPath and without fileName calls visitUrl with correct path', () => {
    const params = { projectPath: 'project-path' };
    const expectedNonIDEPath = `/${params.projectPath}/edit/main/-/`;
    const expectedIDEPath = `/-/ide/projects${expectedNonIDEPath}`;

    openWebIDE(params.projectPath);

    expect(webIDEUrl).toHaveBeenCalledWith(expectedNonIDEPath);
    expect(visitUrl).toHaveBeenCalledWith(expectedIDEPath);
  });

  it('when called with projectPath and fileName calls visitUrl with correct path', () => {
    const params = { projectPath: 'project-path', fileName: 'README' };
    const expectedNonIDEPath = `/${params.projectPath}/edit/main/-/${params.fileName}/`;
    const expectedIDEPath = `/-/ide/projects${expectedNonIDEPath}`;

    openWebIDE(params.projectPath, params.fileName);

    expect(webIDEUrl).toHaveBeenCalledWith(expectedNonIDEPath);
    expect(visitUrl).toHaveBeenCalledWith(expectedIDEPath);
  });
});