BigW Consortium Gitlab

todos_spec.js 1.66 KB
Newer Older
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
require('~/todos');
require('~/lib/utils/common_utils');

describe('Todos', () => {
  preloadFixtures('todos/todos.html.raw');
  let todoItem;

  beforeEach(() => {
    loadFixtures('todos/todos.html.raw');
    todoItem = document.querySelector('.todos-list .todo');

    return new gl.Todos();
  });

  describe('goToTodoUrl', () => {
    it('opens the todo url', (done) => {
      const todoLink = todoItem.dataset.url;

      spyOn(gl.utils, 'visitUrl').and.callFake((url) => {
        expect(url).toEqual(todoLink);
        done();
      });

      todoItem.click();
    });

    describe('meta click', () => {
      let visitUrlSpy;

      beforeEach(() => {
        spyOn(gl.utils, 'isMetaClick').and.returnValue(true);
        visitUrlSpy = spyOn(gl.utils, 'visitUrl').and.callFake(() => {});
      });

      it('opens the todo url in another tab', (done) => {
        const todoLink = todoItem.dataset.url;

        spyOn(window, 'open').and.callFake((url, target) => {
          expect(todoLink).toEqual(url);
          expect(target).toEqual('_blank');
          done();
        });

        todoItem.click();
        expect(visitUrlSpy).not.toHaveBeenCalled();
      });

      it('opens the avatar\'s url in another tab when the avatar is clicked', (done) => {
        const avatarImage = todoItem.querySelector('img');
        const avatarUrl = avatarImage.parentElement.getAttribute('href');

        spyOn(window, 'open').and.callFake((url, target) => {
          expect(avatarUrl).toEqual(url);
          expect(target).toEqual('_blank');
          done();
        });

        avatarImage.click();
        expect(visitUrlSpy).not.toHaveBeenCalled();
      });
    });
  });
});