gitlab-org--gitlab-foss/spec/frontend/vue_shared/components/identicon_spec.js

66 lines
1.6 KiB
JavaScript
Raw Normal View History

2017-08-01 05:08:09 -04:00
import Vue from 'vue';
import identiconComponent from '~/vue_shared/components/identicon.vue';
2017-08-01 05:08:09 -04:00
2018-10-17 03:13:26 -04:00
const createComponent = sizeClass => {
const Component = Vue.extend(identiconComponent);
2017-08-01 05:08:09 -04:00
return new Component({
propsData: {
entityId: 1,
entityName: 'entity-name',
sizeClass,
2017-08-01 05:08:09 -04:00
},
}).$mount();
2017-08-01 05:08:09 -04:00
};
describe('IdenticonComponent', () => {
describe('computed', () => {
let vm;
2017-08-01 05:08:09 -04:00
beforeEach(() => {
vm = createComponent();
});
afterEach(() => {
vm.$destroy();
});
2017-08-01 05:08:09 -04:00
describe('identiconBackgroundClass', () => {
it('should return bg class based on entityId', () => {
2017-08-01 05:08:09 -04:00
vm.entityId = 4;
expect(vm.identiconBackgroundClass).toBeDefined();
expect(vm.identiconBackgroundClass).toBe('bg5');
2017-08-01 05:08:09 -04:00
});
});
describe('identiconTitle', () => {
it('should return first letter of entity title in uppercase', () => {
vm.entityName = 'dummy-group';
expect(vm.identiconTitle).toBeDefined();
expect(vm.identiconTitle).toBe('D');
});
});
});
describe('template', () => {
it('should render identicon', () => {
const vm = createComponent();
expect(vm.$el.nodeName).toBe('DIV');
expect(vm.$el.classList.contains('identicon')).toBeTruthy();
expect(vm.$el.classList.contains('s40')).toBeTruthy();
expect(vm.$el.classList.contains('bg2')).toBeTruthy();
vm.$destroy();
});
it('should render identicon with provided sizing class', () => {
const vm = createComponent('s32');
expect(vm.$el.classList.contains('s32')).toBeTruthy();
vm.$destroy();
2017-08-01 05:08:09 -04:00
});
});
});