mini_pipeline_graph_dropdown_spec.js 3.3 KB
Newer Older
1 2
/* eslint-disable no-new */

3 4
import MockAdapter from 'axios-mock-adapter';
import axios from '~/lib/utils/axios_utils';
5
import MiniPipelineGraph from '~/mini_pipeline_graph_dropdown';
6
import timeoutPromise from './helpers/set_timeout_promise_helper';
7

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

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

15 16 17
  describe('When is initialized', () => {
    it('should initialize without errors when no options are given', () => {
      const miniPipelineGraph = new MiniPipelineGraph();
18

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

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

25
      const miniPipelineGraph = new MiniPipelineGraph({ container });
26

27
      expect(miniPipelineGraph.container).toEqual(container);
28
    });
29
  });
30

31
  describe('When dropdown is clicked', () => {
32 33 34 35 36 37 38 39 40 41
    let mock;

    beforeEach(() => {
      mock = new MockAdapter(axios);
    });

    afterEach(() => {
      mock.restore();
    });

42 43 44 45 46
    it('should call getBuildsList', () => {
      const getBuildsListSpy = spyOn(
        MiniPipelineGraph.prototype,
        'getBuildsList',
      ).and.callFake(function () {});
47

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

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

52 53
      expect(getBuildsListSpy).toHaveBeenCalled();
    });
54

55
    it('should make a request to the endpoint provided in the html', () => {
56 57 58 59 60
      const ajaxSpy = spyOn(axios, 'get').and.callThrough();

      mock.onGet('foobar').reply(200, {
        html: '',
      });
61

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

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

68 69 70 71 72 73 74 75 76
    it('should not close when user uses cmd/ctrl + click', (done) => {
      mock.onGet('foobar').reply(200, {
        html: `<li>
          <a class="mini-pipeline-graph-dropdown-item" href="#">
            <span class="ci-status-icon ci-status-icon-failed"></span>
            <span class="ci-build-text">build</span>
          </a>
          <a class="ci-action-icon-wrapper js-ci-action-icon" href="#"></a>
        </li>`,
77 78
      });
      new MiniPipelineGraph({ container: '.js-builds-dropdown-tests' }).bindEvents();
79

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

82 83 84 85 86 87 88 89 90 91
      timeoutPromise()
        .then(() => {
          document.querySelector('a.mini-pipeline-graph-dropdown-item').click();
        })
        .then(timeoutPromise)
        .then(() => {
          expect($('.js-builds-dropdown-list').is(':visible')).toEqual(true);
        })
        .then(done)
        .catch(done.fail);
92
    });
93

94 95
    it('should close the dropdown when request returns an error', (done) => {
      mock.onGet('foobar').networkError();
96

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

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

101 102 103 104 105
      setTimeout(() => {
        expect($('.js-builds-dropdown-tests .dropdown').hasClass('open')).toEqual(false);
        done();
      });
    });
106 107
  });
});