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

mini_pipeline_graph_dropdown_spec.js.es6 « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32b80a4f4bd638da3bbaf49d351c918c95eec548 (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
/* eslint-disable no-new */

require('flash');
require('mini_pipeline_graph_dropdown');

(() => {
  describe('Mini Pipeline Graph Dropdown', () => {
    preloadFixtures('static/mini_dropdown_graph.html.raw');

    beforeEach(() => {
      loadFixtures('static/mini_dropdown_graph.html.raw');
    });

    describe('When is initialized', () => {
      it('should initialize without errors when no options are given', () => {
        const miniPipelineGraph = new window.gl.MiniPipelineGraph();

        expect(miniPipelineGraph.dropdownListSelector).toEqual('.js-builds-dropdown-container');
      });

      it('should set the container as the given prop', () => {
        const container = '.foo';

        const miniPipelineGraph = new window.gl.MiniPipelineGraph({ container });

        expect(miniPipelineGraph.container).toEqual(container);
      });
    });

    describe('When dropdown is clicked', () => {
      it('should call getBuildsList', () => {
        const getBuildsListSpy = spyOn(gl.MiniPipelineGraph.prototype, 'getBuildsList').and.callFake(function () {});

        new gl.MiniPipelineGraph({ container: '.js-builds-dropdown-tests' });

        document.querySelector('.js-builds-dropdown-button').click();

        expect(getBuildsListSpy).toHaveBeenCalled();
      });

      it('should make a request to the endpoint provided in the html', () => {
        const ajaxSpy = spyOn($, 'ajax').and.callFake(function () {});

        new gl.MiniPipelineGraph({ container: '.js-builds-dropdown-tests' });

        document.querySelector('.js-builds-dropdown-button').click();
        expect(ajaxSpy.calls.allArgs()[0][0].url).toEqual('foobar');
      });
    });
  });
})();