search_autocomplete_spec.js 6.65 KB
Newer Older
1
/* eslint-disable space-before-function-paren, max-len, no-var, one-var, one-var-declaration-per-line, no-unused-expressions, consistent-return, no-param-reassign, default-case, no-return-assign, comma-dangle, object-shorthand, prefer-template, quotes, new-parens, vars-on-top, new-cap, max-len */
2

3 4 5 6
require('~/gl_dropdown');
require('~/search_autocomplete');
require('~/lib/utils/common_utils');
require('~/lib/utils/type_utility');
7
require('vendor/fuzzaldrin-plus');
Fatih Acet's avatar
Fatih Acet committed
8 9 10

(function() {
  var addBodyAttributes, assertLinks, dashboardIssuesPath, dashboardMRsPath, groupIssuesPath, groupMRsPath, groupName, mockDashboardOptions, mockGroupOptions, mockProjectOptions, projectIssuesPath, projectMRsPath, projectName, userId, widget;
11
  var userName = 'root';
Fatih Acet's avatar
Fatih Acet committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

  widget = null;

  userId = 1;

  dashboardIssuesPath = '/dashboard/issues';

  dashboardMRsPath = '/dashboard/merge_requests';

  projectIssuesPath = '/gitlab-org/gitlab-ce/issues';

  projectMRsPath = '/gitlab-org/gitlab-ce/merge_requests';

  groupIssuesPath = '/groups/gitlab-org/issues';

  groupMRsPath = '/groups/gitlab-org/merge_requests';

  projectName = 'GitLab Community Edition';

  groupName = 'Gitlab Org';

33 34
  // Add required attributes to body before starting the test.
  // section would be dashboard|group|project
Fatih Acet's avatar
Fatih Acet committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  addBodyAttributes = function(section) {
    var $body;
    if (section == null) {
      section = 'dashboard';
    }
    $body = $('body');
    $body.removeAttr('data-page');
    $body.removeAttr('data-project');
    $body.removeAttr('data-group');
    switch (section) {
      case 'dashboard':
        return $body.data('page', 'root:index');
      case 'group':
        $body.data('page', 'groups:show');
        return $body.data('group', 'gitlab-org');
      case 'project':
        $body.data('page', 'projects:show');
        return $body.data('project', 'gitlab-ce');
    }
  };

56
  // Mock `gl` object in window for dashboard specific page. App code will need it.
Fatih Acet's avatar
Fatih Acet committed
57 58 59 60 61 62 63 64
  mockDashboardOptions = function() {
    window.gl || (window.gl = {});
    return window.gl.dashboardOptions = {
      issuesPath: dashboardIssuesPath,
      mrPath: dashboardMRsPath
    };
  };

65
  // Mock `gl` object in window for project specific page. App code will need it.
Fatih Acet's avatar
Fatih Acet committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  mockProjectOptions = function() {
    window.gl || (window.gl = {});
    return window.gl.projectOptions = {
      'gitlab-ce': {
        issuesPath: projectIssuesPath,
        mrPath: projectMRsPath,
        projectName: projectName
      }
    };
  };

  mockGroupOptions = function() {
    window.gl || (window.gl = {});
    return window.gl.groupOptions = {
      'gitlab-org': {
        issuesPath: groupIssuesPath,
        mrPath: groupMRsPath,
        projectName: groupName
      }
    };
  };

  assertLinks = function(list, issuesPath, mrsPath) {
    var a1, a2, a3, a4, issuesAssignedToMeLink, issuesIHaveCreatedLink, mrsAssignedToMeLink, mrsIHaveCreatedLink;
90 91
    issuesAssignedToMeLink = issuesPath + "/?assignee_username=" + userName;
    issuesIHaveCreatedLink = issuesPath + "/?author_username=" + userName;
Fatih Acet's avatar
Fatih Acet committed
92 93 94 95 96 97 98
    mrsAssignedToMeLink = mrsPath + "/?assignee_id=" + userId;
    mrsIHaveCreatedLink = mrsPath + "/?author_id=" + userId;
    a1 = "a[href='" + issuesAssignedToMeLink + "']";
    a2 = "a[href='" + issuesIHaveCreatedLink + "']";
    a3 = "a[href='" + mrsAssignedToMeLink + "']";
    a4 = "a[href='" + mrsIHaveCreatedLink + "']";
    expect(list.find(a1).length).toBe(1);
Luke Bennett's avatar
Luke Bennett committed
99
    expect(list.find(a1).text()).toBe('Issues assigned to me');
Fatih Acet's avatar
Fatih Acet committed
100
    expect(list.find(a2).length).toBe(1);
Luke Bennett's avatar
Luke Bennett committed
101
    expect(list.find(a2).text()).toBe("Issues I've created");
Fatih Acet's avatar
Fatih Acet committed
102
    expect(list.find(a3).length).toBe(1);
Luke Bennett's avatar
Luke Bennett committed
103
    expect(list.find(a3).text()).toBe('Merge requests assigned to me');
Fatih Acet's avatar
Fatih Acet committed
104
    expect(list.find(a4).length).toBe(1);
Luke Bennett's avatar
Luke Bennett committed
105
    return expect(list.find(a4).text()).toBe("Merge requests I've created");
Fatih Acet's avatar
Fatih Acet committed
106 107 108
  };

  describe('Search autocomplete dropdown', function() {
109
    preloadFixtures('static/search_autocomplete.html.raw');
Fatih Acet's avatar
Fatih Acet committed
110
    beforeEach(function() {
111
      loadFixtures('static/search_autocomplete.html.raw');
112 113
      widget = new gl.SearchAutocomplete;
      // Prevent turbolinks from triggering within gl_dropdown
114
      spyOn(window.gl.utils, 'visitUrl').and.returnValue(true);
115 116 117 118 119 120 121 122 123 124

      window.gon = {};
      window.gon.current_user_id = userId;
      window.gon.current_username = userName;

      return widget = new gl.SearchAutocomplete;
    });

    afterEach(function() {
      window.gon = {};
Fatih Acet's avatar
Fatih Acet committed
125 126 127 128 129
    });
    it('should show Dashboard specific dropdown menu', function() {
      var list;
      addBodyAttributes();
      mockDashboardOptions();
130
      widget.searchInput.triggerHandler('focus');
Fatih Acet's avatar
Fatih Acet committed
131 132 133 134 135 136 137
      list = widget.wrap.find('.dropdown-menu').find('ul');
      return assertLinks(list, dashboardIssuesPath, dashboardMRsPath);
    });
    it('should show Group specific dropdown menu', function() {
      var list;
      addBodyAttributes('group');
      mockGroupOptions();
138
      widget.searchInput.triggerHandler('focus');
Fatih Acet's avatar
Fatih Acet committed
139 140 141 142 143 144 145
      list = widget.wrap.find('.dropdown-menu').find('ul');
      return assertLinks(list, groupIssuesPath, groupMRsPath);
    });
    it('should show Project specific dropdown menu', function() {
      var list;
      addBodyAttributes('project');
      mockProjectOptions();
146
      widget.searchInput.triggerHandler('focus');
Fatih Acet's avatar
Fatih Acet committed
147 148 149
      list = widget.wrap.find('.dropdown-menu').find('ul');
      return assertLinks(list, projectIssuesPath, projectMRsPath);
    });
150
    it('should not show category related menu if there is text in the input', function() {
Fatih Acet's avatar
Fatih Acet committed
151 152 153 154
      var link, list;
      addBodyAttributes('project');
      mockProjectOptions();
      widget.searchInput.val('help');
155
      widget.searchInput.triggerHandler('focus');
Fatih Acet's avatar
Fatih Acet committed
156 157 158 159
      list = widget.wrap.find('.dropdown-menu').find('ul');
      link = "a[href='" + projectIssuesPath + "/?assignee_id=" + userId + "']";
      return expect(list.find(link).length).toBe(0);
    });
160 161 162 163 164 165
    return it('should not submit the search form when selecting an autocomplete row with the keyboard', function() {
      var ENTER = 13;
      var DOWN = 40;
      addBodyAttributes();
      mockDashboardOptions(true);
      var submitSpy = spyOnEvent('form', 'submit');
166
      widget.searchInput.triggerHandler('focus');
167 168 169 170 171 172 173 174 175 176
      widget.wrap.trigger($.Event('keydown', { which: DOWN }));
      var enterKeyEvent = $.Event('keydown', { which: ENTER });
      widget.searchInput.trigger(enterKeyEvent);
      // This does not currently catch failing behavior. For security reasons,
      // browsers will not trigger default behavior (form submit, in this
      // example) on JavaScript-created keypresses.
      expect(submitSpy).not.toHaveBeenTriggered();
      // Does a worse job at capturing the intent of the test, but works.
      expect(enterKeyEvent.isDefaultPrevented()).toBe(true);
    });
Fatih Acet's avatar
Fatih Acet committed
177 178
  });
}).call(this);