2018-12-05 23:21:45 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import { TEST_HOST } from 'spec/test_constants';
|
|
|
|
import mountComponent from 'spec/helpers/vue_mount_component_helper';
|
|
|
|
import { trimText } from 'spec/helpers/vue_component_helper';
|
|
|
|
import { getTimeago } from '~/lib/utils/datetime_utility';
|
|
|
|
import CommitItem from '~/diffs/components/commit_item.vue';
|
|
|
|
import getDiffWithCommit from '../mock_data/diff_with_commit';
|
|
|
|
|
|
|
|
const TEST_AUTHOR_NAME = 'test';
|
|
|
|
const TEST_AUTHOR_EMAIL = 'test+test@gitlab.com';
|
|
|
|
const TEST_AUTHOR_GRAVATAR = `${TEST_HOST}/avatar/test?s=36`;
|
|
|
|
const TEST_SIGNATURE_HTML = '<a>Legit commit</a>';
|
|
|
|
const TEST_PIPELINE_STATUS_PATH = `${TEST_HOST}/pipeline/status`;
|
|
|
|
|
|
|
|
const getTitleElement = vm => vm.$el.querySelector('.commit-row-message.item-title');
|
|
|
|
const getDescElement = vm => vm.$el.querySelector('pre.commit-row-description');
|
2018-12-13 13:39:08 +05:30
|
|
|
const getDescExpandElement = vm =>
|
|
|
|
vm.$el.querySelector('.commit-content .text-expander.js-toggle-button');
|
2018-12-05 23:21:45 +05:30
|
|
|
const getShaElement = vm => vm.$el.querySelector('.commit-sha-group');
|
|
|
|
const getAvatarElement = vm => vm.$el.querySelector('.user-avatar-link');
|
|
|
|
const getCommitterElement = vm => vm.$el.querySelector('.commiter');
|
|
|
|
const getCommitActionsElement = vm => vm.$el.querySelector('.commit-actions');
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
describe('diffs/components/commit_item', () => {
|
2018-12-05 23:21:45 +05:30
|
|
|
const Component = Vue.extend(CommitItem);
|
|
|
|
const timeago = getTimeago();
|
|
|
|
const { commit } = getDiffWithCommit();
|
|
|
|
|
|
|
|
let vm;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
vm = mountComponent(Component, {
|
|
|
|
commit: getDiffWithCommit().commit,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders commit title', () => {
|
|
|
|
const titleElement = getTitleElement(vm);
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
expect(titleElement).toHaveAttr('href', commit.commit_url);
|
|
|
|
expect(titleElement).toHaveText(commit.title_html);
|
2018-12-05 23:21:45 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('renders commit description', () => {
|
|
|
|
const descElement = getDescElement(vm);
|
|
|
|
const descExpandElement = getDescExpandElement(vm);
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
const expected = commit.description_html.replace(/
/g, '');
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
expect(trimText(descElement.innerHTML)).toEqual(trimText(expected));
|
|
|
|
expect(descExpandElement).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders commit sha', () => {
|
|
|
|
const shaElement = getShaElement(vm);
|
|
|
|
const labelElement = shaElement.querySelector('.label');
|
|
|
|
const buttonElement = shaElement.querySelector('button');
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
expect(labelElement.textContent).toEqual(commit.short_id);
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(buttonElement).toHaveData('clipboard-text', commit.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders author avatar', () => {
|
|
|
|
const avatarElement = getAvatarElement(vm);
|
|
|
|
const imgElement = avatarElement.querySelector('img');
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
expect(avatarElement).toHaveAttr('href', commit.author.web_url);
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(imgElement).toHaveClass('s36');
|
|
|
|
expect(imgElement).toHaveAttr('alt', commit.author.name);
|
2018-12-23 12:14:25 +05:30
|
|
|
expect(imgElement).toHaveAttr('src', commit.author.avatar_url);
|
2018-12-05 23:21:45 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('renders committer text', () => {
|
|
|
|
const committerElement = getCommitterElement(vm);
|
|
|
|
const nameElement = committerElement.querySelector('a');
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
const expectTimeText = timeago.format(commit.authored_date);
|
2018-12-05 23:21:45 +05:30
|
|
|
const expectedText = `${commit.author.name} authored ${expectTimeText}`;
|
|
|
|
|
|
|
|
expect(trimText(committerElement.textContent)).toEqual(expectedText);
|
2018-12-23 12:14:25 +05:30
|
|
|
expect(nameElement).toHaveAttr('href', commit.author.web_url);
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(nameElement).toHaveText(commit.author.name);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('without commit description', () => {
|
|
|
|
beforeEach(done => {
|
2018-12-23 12:14:25 +05:30
|
|
|
vm.commit.description_html = '';
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
vm.$nextTick()
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('hides description', () => {
|
|
|
|
const descElement = getDescElement(vm);
|
|
|
|
const descExpandElement = getDescExpandElement(vm);
|
|
|
|
|
|
|
|
expect(descElement).toBeNull();
|
|
|
|
expect(descExpandElement).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with no matching user', () => {
|
|
|
|
beforeEach(done => {
|
|
|
|
vm.commit.author = null;
|
2018-12-23 12:14:25 +05:30
|
|
|
vm.commit.author_email = TEST_AUTHOR_EMAIL;
|
|
|
|
vm.commit.author_name = TEST_AUTHOR_NAME;
|
|
|
|
vm.commit.author_gravatar_url = TEST_AUTHOR_GRAVATAR;
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
vm.$nextTick()
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders author avatar', () => {
|
|
|
|
const avatarElement = getAvatarElement(vm);
|
|
|
|
const imgElement = avatarElement.querySelector('img');
|
|
|
|
|
|
|
|
expect(avatarElement).toHaveAttr('href', `mailto:${TEST_AUTHOR_EMAIL}`);
|
|
|
|
expect(imgElement).toHaveAttr('alt', TEST_AUTHOR_NAME);
|
|
|
|
expect(imgElement).toHaveAttr('src', TEST_AUTHOR_GRAVATAR);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders committer text', () => {
|
|
|
|
const committerElement = getCommitterElement(vm);
|
|
|
|
const nameElement = committerElement.querySelector('a');
|
|
|
|
|
|
|
|
expect(nameElement).toHaveAttr('href', `mailto:${TEST_AUTHOR_EMAIL}`);
|
|
|
|
expect(nameElement).toHaveText(TEST_AUTHOR_NAME);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with signature', () => {
|
|
|
|
beforeEach(done => {
|
2018-12-23 12:14:25 +05:30
|
|
|
vm.commit.signature_html = TEST_SIGNATURE_HTML;
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
vm.$nextTick()
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders signature html', () => {
|
|
|
|
const actionsElement = getCommitActionsElement(vm);
|
|
|
|
|
|
|
|
expect(actionsElement).toContainHtml(TEST_SIGNATURE_HTML);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with pipeline status', () => {
|
|
|
|
beforeEach(done => {
|
2018-12-23 12:14:25 +05:30
|
|
|
vm.commit.pipeline_status_path = TEST_PIPELINE_STATUS_PATH;
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
vm.$nextTick()
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders pipeline status', () => {
|
|
|
|
const actionsElement = getCommitActionsElement(vm);
|
|
|
|
|
|
|
|
expect(actionsElement).toContainElement('.ci-status-link');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|