2020-11-05 07:09:05 -05:00
|
|
|
import { GlButton } from '@gitlab/ui';
|
2021-02-14 13:09:20 -05:00
|
|
|
import { shallowMount } from '@vue/test-utils';
|
2022-01-25 10:12:32 -05:00
|
|
|
import { nextTick } from 'vue';
|
2020-05-07 08:09:46 -04:00
|
|
|
import DesignScaler from '~/design_management/components/design_scaler.vue';
|
|
|
|
|
|
|
|
describe('Design management design scaler component', () => {
|
|
|
|
let wrapper;
|
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
const getButtons = () => wrapper.findAll(GlButton);
|
|
|
|
const getDecreaseScaleButton = () => getButtons().at(0);
|
|
|
|
const getResetScaleButton = () => getButtons().at(1);
|
|
|
|
const getIncreaseScaleButton = () => getButtons().at(2);
|
2020-05-07 08:09:46 -04:00
|
|
|
|
2020-12-23 16:10:24 -05:00
|
|
|
const setScale = (scale) => wrapper.vm.setScale(scale);
|
2020-05-07 08:09:46 -04:00
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
const createComponent = () => {
|
2021-09-01 11:10:20 -04:00
|
|
|
wrapper = shallowMount(DesignScaler, {
|
|
|
|
propsData: {
|
|
|
|
maxScale: 2,
|
|
|
|
},
|
|
|
|
});
|
2020-05-07 08:09:46 -04:00
|
|
|
};
|
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
beforeEach(() => {
|
2020-05-07 08:09:46 -04:00
|
|
|
createComponent();
|
2020-11-05 07:09:05 -05:00
|
|
|
});
|
2020-05-07 08:09:46 -04:00
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
afterEach(() => {
|
|
|
|
wrapper.destroy();
|
|
|
|
wrapper = null;
|
2020-05-07 08:09:46 -04:00
|
|
|
});
|
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
describe('when `scale` value is greater than 1', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
setScale(1.6);
|
2022-01-25 10:12:32 -05:00
|
|
|
await nextTick();
|
2020-05-07 08:09:46 -04:00
|
|
|
});
|
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
it('emits @scale event when "reset" button clicked', () => {
|
|
|
|
getResetScaleButton().vm.$emit('click');
|
|
|
|
expect(wrapper.emitted('scale')[1]).toEqual([1]);
|
|
|
|
});
|
2020-05-07 08:09:46 -04:00
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
it('emits @scale event when "decrement" button clicked', async () => {
|
|
|
|
getDecreaseScaleButton().vm.$emit('click');
|
|
|
|
expect(wrapper.emitted('scale')[1]).toEqual([1.4]);
|
2020-05-07 08:09:46 -04:00
|
|
|
});
|
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
it('enables the "reset" button', () => {
|
|
|
|
const resetButton = getResetScaleButton();
|
|
|
|
|
|
|
|
expect(resetButton.exists()).toBe(true);
|
|
|
|
expect(resetButton.props('disabled')).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('enables the "decrement" button', () => {
|
|
|
|
const decrementButton = getDecreaseScaleButton();
|
2020-05-07 08:09:46 -04:00
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
expect(decrementButton.exists()).toBe(true);
|
|
|
|
expect(decrementButton.props('disabled')).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('emits @scale event when "plus" button clicked', () => {
|
|
|
|
getIncreaseScaleButton().vm.$emit('click');
|
|
|
|
expect(wrapper.emitted('scale')).toEqual([[1.2]]);
|
2020-05-07 08:09:46 -04:00
|
|
|
});
|
|
|
|
|
2021-09-01 11:10:20 -04:00
|
|
|
it('computes & increments correct stepSize based on maxScale', async () => {
|
|
|
|
wrapper.setProps({ maxScale: 11 });
|
|
|
|
|
2022-01-25 10:12:32 -05:00
|
|
|
await nextTick();
|
2021-09-01 11:10:20 -04:00
|
|
|
|
|
|
|
getIncreaseScaleButton().vm.$emit('click');
|
|
|
|
|
2022-01-25 10:12:32 -05:00
|
|
|
await nextTick();
|
2021-09-01 11:10:20 -04:00
|
|
|
|
|
|
|
expect(wrapper.emitted().scale[0][0]).toBe(3);
|
|
|
|
});
|
|
|
|
|
2020-11-05 07:09:05 -05:00
|
|
|
describe('when `scale` value is 1', () => {
|
|
|
|
it('disables the "reset" button', () => {
|
|
|
|
const resetButton = getResetScaleButton();
|
|
|
|
|
|
|
|
expect(resetButton.exists()).toBe(true);
|
|
|
|
expect(resetButton.props('disabled')).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('disables the "decrement" button', () => {
|
|
|
|
const decrementButton = getDecreaseScaleButton();
|
|
|
|
|
|
|
|
expect(decrementButton.exists()).toBe(true);
|
|
|
|
expect(decrementButton.props('disabled')).toBe(true);
|
2020-05-07 08:09:46 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-09-01 11:10:20 -04:00
|
|
|
describe('when `scale` value is maximum', () => {
|
2020-11-05 07:09:05 -05:00
|
|
|
beforeEach(async () => {
|
|
|
|
setScale(2);
|
2022-01-25 10:12:32 -05:00
|
|
|
await nextTick();
|
2020-11-05 07:09:05 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('disables the "increment" button', () => {
|
|
|
|
const incrementButton = getIncreaseScaleButton();
|
|
|
|
|
|
|
|
expect(incrementButton.exists()).toBe(true);
|
|
|
|
expect(incrementButton.props('disabled')).toBe(true);
|
2020-05-07 08:09:46 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|