2017-08-17 22:00:37 +05:30
|
|
|
import Vue from 'vue';
|
2018-03-27 19:54:05 +05:30
|
|
|
import Assignee from '~/sidebar/components/assignees/assignees.vue';
|
2017-08-17 22:00:37 +05:30
|
|
|
import UsersMock from './mock_data';
|
|
|
|
import UsersMockHelper from '../helpers/user_mock_data_helper';
|
|
|
|
|
|
|
|
describe('Assignee component', () => {
|
|
|
|
let component;
|
|
|
|
let AssigneeComponent;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
AssigneeComponent = Vue.extend(Assignee);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('No assignees/users', () => {
|
|
|
|
it('displays no assignee icon when collapsed', () => {
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users: [],
|
|
|
|
editable: false,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
const collapsed = component.$el.querySelector('.sidebar-collapsed-icon');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(collapsed.childElementCount).toEqual(1);
|
2019-07-31 22:56:46 +05:30
|
|
|
expect(collapsed.children[0].getAttribute('aria-label')).toEqual('None');
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(collapsed.children[0].classList.contains('fa')).toEqual(true);
|
|
|
|
expect(collapsed.children[0].classList.contains('fa-user')).toEqual(true);
|
|
|
|
});
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
it('displays only "None" when no users are assigned and the issue is read-only', () => {
|
2017-08-17 22:00:37 +05:30
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users: [],
|
|
|
|
editable: false,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
const componentTextNoUsers = component.$el.querySelector('.assign-yourself').innerText.trim();
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
expect(componentTextNoUsers).toBe('None');
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(componentTextNoUsers.indexOf('assign yourself')).toEqual(-1);
|
|
|
|
});
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
it('displays only "None" when no users are assigned and the issue can be edited', () => {
|
2017-08-17 22:00:37 +05:30
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users: [],
|
|
|
|
editable: true,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
const componentTextNoUsers = component.$el.querySelector('.assign-yourself').innerText.trim();
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
expect(componentTextNoUsers.indexOf('None')).toEqual(0);
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(componentTextNoUsers.indexOf('assign yourself')).toBeGreaterThan(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('emits the assign-self event when "assign yourself" is clicked', () => {
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users: [],
|
|
|
|
editable: true,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
spyOn(component, '$emit');
|
|
|
|
component.$el.querySelector('.assign-yourself .btn-link').click();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(component.$emit).toHaveBeenCalledWith('assign-self');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('One assignee/user', () => {
|
|
|
|
it('displays one assignee icon when collapsed', () => {
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
2018-12-13 13:39:08 +05:30
|
|
|
users: [UsersMock.user],
|
2017-08-17 22:00:37 +05:30
|
|
|
editable: false,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
const collapsed = component.$el.querySelector('.sidebar-collapsed-icon');
|
|
|
|
const assignee = collapsed.children[0];
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(collapsed.childElementCount).toEqual(1);
|
|
|
|
expect(assignee.querySelector('.avatar').getAttribute('src')).toEqual(UsersMock.user.avatar);
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(assignee.querySelector('.avatar').getAttribute('alt')).toEqual(
|
|
|
|
`${UsersMock.user.name}'s avatar`,
|
|
|
|
);
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(assignee.querySelector('.author').innerText.trim()).toEqual(UsersMock.user.name);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Two or more assignees/users', () => {
|
2019-07-31 22:56:46 +05:30
|
|
|
it('has no "cannot merge" tooltip when every user can merge', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(2);
|
|
|
|
users[0].can_merge = true;
|
|
|
|
users[1].can_merge = true;
|
|
|
|
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000/',
|
|
|
|
users,
|
|
|
|
editable: true,
|
|
|
|
issuableType: 'merge_request',
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
expect(component.collapsedTooltipTitle).not.toContain('cannot merge');
|
2019-07-31 22:56:46 +05:30
|
|
|
});
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
it('displays two assignee icons when collapsed', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(2);
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users,
|
|
|
|
editable: false,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
const collapsed = component.$el.querySelector('.sidebar-collapsed-icon');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(collapsed.childElementCount).toEqual(2);
|
|
|
|
|
|
|
|
const first = collapsed.children[0];
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(first.querySelector('.avatar').getAttribute('src')).toEqual(users[0].avatar);
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(first.querySelector('.avatar').getAttribute('alt')).toEqual(
|
|
|
|
`${users[0].name}'s avatar`,
|
|
|
|
);
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(first.querySelector('.author').innerText.trim()).toEqual(users[0].name);
|
|
|
|
|
|
|
|
const second = collapsed.children[1];
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(second.querySelector('.avatar').getAttribute('src')).toEqual(users[1].avatar);
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(second.querySelector('.avatar').getAttribute('alt')).toEqual(
|
|
|
|
`${users[1].name}'s avatar`,
|
|
|
|
);
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(second.querySelector('.author').innerText.trim()).toEqual(users[1].name);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('displays one assignee icon and counter when collapsed', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(3);
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users,
|
|
|
|
editable: false,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
const collapsed = component.$el.querySelector('.sidebar-collapsed-icon');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(collapsed.childElementCount).toEqual(2);
|
|
|
|
|
|
|
|
const first = collapsed.children[0];
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(first.querySelector('.avatar').getAttribute('src')).toEqual(users[0].avatar);
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(first.querySelector('.avatar').getAttribute('alt')).toEqual(
|
|
|
|
`${users[0].name}'s avatar`,
|
|
|
|
);
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(first.querySelector('.author').innerText.trim()).toEqual(users[0].name);
|
|
|
|
|
|
|
|
const second = collapsed.children[1];
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(second.querySelector('.avatar-counter').innerText.trim()).toEqual('+2');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Shows two assignees', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(2);
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users,
|
|
|
|
editable: true,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
expect(component.$el.querySelectorAll('.user-item').length).toEqual(users.length);
|
|
|
|
expect(component.$el.querySelector('.user-list-more')).toBe(null);
|
|
|
|
});
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
it('shows sorted assignee where "can merge" users are sorted first', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(3);
|
|
|
|
users[0].can_merge = false;
|
|
|
|
users[1].can_merge = false;
|
|
|
|
users[2].can_merge = true;
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users,
|
|
|
|
editable: true,
|
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
expect(component.sortedAssigness[0].can_merge).toBe(true);
|
2019-07-07 11:18:12 +05:30
|
|
|
});
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
it('passes the sorted assignees to the uncollapsed-assignee-list', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(3);
|
|
|
|
users[0].can_merge = false;
|
|
|
|
users[1].can_merge = false;
|
|
|
|
users[2].can_merge = true;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users,
|
2019-12-04 20:38:33 +05:30
|
|
|
editable: false,
|
2017-08-17 22:00:37 +05:30
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
const userItems = component.$el.querySelectorAll('.user-list .user-item a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
expect(userItems.length).toBe(3);
|
|
|
|
expect(userItems[0].dataset.originalTitle).toBe(users[2].name);
|
2017-08-17 22:00:37 +05:30
|
|
|
});
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
it('passes the sorted assignees to the collapsed-assignee-list', () => {
|
|
|
|
const users = UsersMockHelper.createNumberRandomUsers(3);
|
|
|
|
users[0].can_merge = false;
|
|
|
|
users[1].can_merge = false;
|
|
|
|
users[2].can_merge = true;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
component = new AssigneeComponent({
|
|
|
|
propsData: {
|
|
|
|
rootPath: 'http://localhost:3000',
|
|
|
|
users,
|
2019-12-04 20:38:33 +05:30
|
|
|
editable: false,
|
2017-08-17 22:00:37 +05:30
|
|
|
},
|
|
|
|
}).$mount();
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
const collapsedButton = component.$el.querySelector('.sidebar-collapsed-user button');
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
expect(collapsedButton.innerText.trim()).toBe(users[2].name);
|
2017-08-17 22:00:37 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|