summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/mr_widget_author_time_spec.js
blob: 515ddcbb8755a27b907e1743710e0817a6b782a4 (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
import Vue from 'vue';
import authorTimeComponent from '~/vue_merge_request_widget/components/mr_widget_author_time';

const props = {
  actionText: 'Merged by',
  author: {
    webUrl: 'http://foo.bar',
    avatarUrl: 'http://gravatar.com/foo',
    name: 'fatihacet',
  },
  dateTitle: '2017-03-23T23:02:00.807Z',
  dateReadable: '12 hours ago',
};
const createComponent = () => {
  const Component = Vue.extend(authorTimeComponent);

  return new Component({
    el: document.createElement('div'),
    propsData: props,
  });
};

describe('MRWidgetAuthorTime', () => {
  describe('props', () => {
    it('should have props', () => {
      const { actionText, author, dateTitle, dateReadable } = authorTimeComponent.props;
      const ActionTextClass = actionText.type;
      const DateTitleClass = dateTitle.type;
      const DateReadableClass = dateReadable.type;

      expect(new ActionTextClass() instanceof String).toBeTruthy();
      expect(actionText.required).toBeTruthy();

      expect(author.type instanceof Object).toBeTruthy();
      expect(author.required).toBeTruthy();

      expect(new DateTitleClass() instanceof String).toBeTruthy();
      expect(dateTitle.required).toBeTruthy();

      expect(new DateReadableClass() instanceof String).toBeTruthy();
      expect(dateReadable.required).toBeTruthy();
    });
  });

  describe('components', () => {
    it('should have components', () => {
      expect(authorTimeComponent.components['mr-widget-author']).toBeDefined();
    });
  });

  describe('template', () => {
    it('should have correct elements', () => {
      const el = createComponent().$el;

      expect(el.tagName).toEqual('H4');
      expect(el.querySelector('a').getAttribute('href')).toEqual(props.author.webUrl);
      expect(el.querySelector('time').innerText).toContain(props.dateReadable);
      expect(el.querySelector('time').getAttribute('title')).toEqual(props.dateTitle);
    });
  });
});