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

load_branches_spec.js « info « commit_box « projects « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8100200cbdd6905c9b33f13e29959d6032115132 (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
import axios from 'axios';
import MockAdapter from 'axios-mock-adapter';
import waitForPromises from 'helpers/wait_for_promises';
import { loadBranches } from '~/projects/commit_box/info/load_branches';

const mockCommitPath = '/commit/abcd/branches';
const mockBranchesRes =
  '<a href="/-/commits/master">master</a><span><a href="/-/commits/my-branch">my-branch</a></span>';

describe('~/projects/commit_box/info/load_branches', () => {
  let mock;
  let el;

  beforeEach(() => {
    mock = new MockAdapter(axios);
    mock.onGet(mockCommitPath).reply(200, mockBranchesRes);

    el = document.createElement('div');
    el.dataset.commitPath = mockCommitPath;
    el.innerHTML = '<div class="commit-info branches"><span class="spinner"/></div>';
  });

  it('loads and renders branches info', async () => {
    loadBranches(el);
    await waitForPromises();

    expect(el.innerHTML).toBe(`<div class="commit-info branches">${mockBranchesRes}</div>`);
  });

  it('does not load when no container is provided', async () => {
    loadBranches(null);
    await waitForPromises();

    expect(mock.history.get).toHaveLength(0);
  });

  describe('when braches request returns unsafe content', () => {
    beforeEach(() => {
      mock
        .onGet(mockCommitPath)
        .reply(200, '<a onload="alert(\'xss!\');" href="/-/commits/master">master</a>');
    });

    it('displays sanitized html', async () => {
      loadBranches(el);
      await waitForPromises();

      expect(el.innerHTML).toBe(
        '<div class="commit-info branches"><a href="/-/commits/master">master</a></div>',
      );
    });
  });

  describe('when braches request fails', () => {
    beforeEach(() => {
      mock.onGet(mockCommitPath).reply(500, 'Error!');
    });

    it('attempts to load and renders an error', async () => {
      loadBranches(el);
      await waitForPromises();

      expect(el.innerHTML).toBe(
        '<div class="commit-info branches">Failed to load branches. Please try again.</div>',
      );
    });
  });
});