Commit e13d67a5 authored by Nicolò Maria Mezzopera's avatar Nicolò Maria Mezzopera Committed by Mark Florian

Move isLoading to form, add toast

- move isLoading to form
- add loader to save button
- add $toast
- wire $toast to actions
- update unit tests
parent 96ddac4f
<script> <script>
import { mapState, mapActions } from 'vuex'; import { mapActions } from 'vuex';
import { GlLoadingIcon } from '@gitlab/ui'; import { FETCH_SETTINGS_ERROR_MESSAGE } from '../constants';
import SettingsForm from './settings_form.vue'; import SettingsForm from './settings_form.vue';
export default { export default {
components: { components: {
GlLoadingIcon,
SettingsForm, SettingsForm,
}, },
computed: {
...mapState({
isLoading: 'isLoading',
}),
},
mounted() { mounted() {
this.fetchSettings(); this.fetchSettings().catch(() =>
this.$toast.show(FETCH_SETTINGS_ERROR_MESSAGE, { type: 'error' }),
);
}, },
methods: { methods: {
...mapActions(['fetchSettings']), ...mapActions(['fetchSettings']),
...@@ -37,7 +34,6 @@ export default { ...@@ -37,7 +34,6 @@ export default {
}} }}
</li> </li>
</ul> </ul>
<gl-loading-icon v-if="isLoading" ref="loading-icon" size="xl" /> <settings-form ref="settings-form" />
<settings-form v-else ref="settings-form" />
</div> </div>
</template> </template>
<script> <script>
import { mapActions, mapState } from 'vuex'; import { mapActions, mapState } from 'vuex';
import { GlFormGroup, GlToggle, GlFormSelect, GlFormTextarea, GlButton, GlCard } from '@gitlab/ui'; import {
GlFormGroup,
GlToggle,
GlFormSelect,
GlFormTextarea,
GlButton,
GlCard,
GlLoadingIcon,
} from '@gitlab/ui';
import { s__, __, sprintf } from '~/locale'; import { s__, __, sprintf } from '~/locale';
import { NAME_REGEX_LENGTH } from '../constants'; import {
NAME_REGEX_LENGTH,
UPDATE_SETTINGS_ERROR_MESSAGE,
UPDATE_SETTINGS_SUCCESS_MESSAGE,
} from '../constants';
import { mapComputed } from '~/vuex_shared/bindings'; import { mapComputed } from '~/vuex_shared/bindings';
export default { export default {
...@@ -13,13 +25,14 @@ export default { ...@@ -13,13 +25,14 @@ export default {
GlFormTextarea, GlFormTextarea,
GlButton, GlButton,
GlCard, GlCard,
GlLoadingIcon,
}, },
labelsConfig: { labelsConfig: {
cols: 3, cols: 3,
align: 'right', align: 'right',
}, },
computed: { computed: {
...mapState(['formOptions']), ...mapState(['formOptions', 'isLoading']),
...mapComputed( ...mapComputed(
[ [
'enabled', 'enabled',
...@@ -64,15 +77,26 @@ export default { ...@@ -64,15 +77,26 @@ export default {
formIsInvalid() { formIsInvalid() {
return this.nameRegexState === false; return this.nameRegexState === false;
}, },
isFormElementDisabled() {
return !this.enabled || this.isLoading;
},
isSubmitButtonDisabled() {
return this.formIsInvalid || this.isLoading;
},
}, },
methods: { methods: {
...mapActions(['resetSettings', 'saveSettings']), ...mapActions(['resetSettings', 'saveSettings']),
submit() {
this.saveSettings()
.then(() => this.$toast.show(UPDATE_SETTINGS_SUCCESS_MESSAGE, { type: 'success' }))
.catch(() => this.$toast.show(UPDATE_SETTINGS_ERROR_MESSAGE, { type: 'error' }));
},
}, },
}; };
</script> </script>
<template> <template>
<form ref="form-element" @submit.prevent="saveSettings" @reset.prevent="resetSettings"> <form ref="form-element" @submit.prevent="submit" @reset.prevent="resetSettings">
<gl-card> <gl-card>
<template #header> <template #header>
{{ s__('ContainerRegistry|Tag expiration policy') }} {{ s__('ContainerRegistry|Tag expiration policy') }}
...@@ -86,7 +110,7 @@ export default { ...@@ -86,7 +110,7 @@ export default {
:label="s__('ContainerRegistry|Expiration policy:')" :label="s__('ContainerRegistry|Expiration policy:')"
> >
<div class="d-flex align-items-start"> <div class="d-flex align-items-start">
<gl-toggle id="expiration-policy-toggle" v-model="enabled" /> <gl-toggle id="expiration-policy-toggle" v-model="enabled" :disabled="isLoading" />
<span class="mb-2 ml-1 lh-2" v-html="toggleDescriptionText"></span> <span class="mb-2 ml-1 lh-2" v-html="toggleDescriptionText"></span>
</div> </div>
</gl-form-group> </gl-form-group>
...@@ -98,7 +122,11 @@ export default { ...@@ -98,7 +122,11 @@ export default {
label-for="expiration-policy-interval" label-for="expiration-policy-interval"
:label="s__('ContainerRegistry|Expiration interval:')" :label="s__('ContainerRegistry|Expiration interval:')"
> >
<gl-form-select id="expiration-policy-interval" v-model="older_than" :disabled="!enabled"> <gl-form-select
id="expiration-policy-interval"
v-model="older_than"
:disabled="isFormElementDisabled"
>
<option v-for="option in formOptions.olderThan" :key="option.key" :value="option.key"> <option v-for="option in formOptions.olderThan" :key="option.key" :value="option.key">
{{ option.label }} {{ option.label }}
</option> </option>
...@@ -112,7 +140,11 @@ export default { ...@@ -112,7 +140,11 @@ export default {
label-for="expiration-policy-schedule" label-for="expiration-policy-schedule"
:label="s__('ContainerRegistry|Expiration schedule:')" :label="s__('ContainerRegistry|Expiration schedule:')"
> >
<gl-form-select id="expiration-policy-schedule" v-model="cadence" :disabled="!enabled"> <gl-form-select
id="expiration-policy-schedule"
v-model="cadence"
:disabled="isFormElementDisabled"
>
<option v-for="option in formOptions.cadence" :key="option.key" :value="option.key"> <option v-for="option in formOptions.cadence" :key="option.key" :value="option.key">
{{ option.label }} {{ option.label }}
</option> </option>
...@@ -126,7 +158,11 @@ export default { ...@@ -126,7 +158,11 @@ export default {
label-for="expiration-policy-latest" label-for="expiration-policy-latest"
:label="s__('ContainerRegistry|Number of tags to retain:')" :label="s__('ContainerRegistry|Number of tags to retain:')"
> >
<gl-form-select id="expiration-policy-latest" v-model="keep_n" :disabled="!enabled"> <gl-form-select
id="expiration-policy-latest"
v-model="keep_n"
:disabled="isFormElementDisabled"
>
<option v-for="option in formOptions.keepN" :key="option.key" :value="option.key"> <option v-for="option in formOptions.keepN" :key="option.key" :value="option.key">
{{ option.label }} {{ option.label }}
</option> </option>
...@@ -149,7 +185,7 @@ export default { ...@@ -149,7 +185,7 @@ export default {
v-model="name_regex" v-model="name_regex"
:placeholder="nameRegexPlaceholder" :placeholder="nameRegexPlaceholder"
:state="nameRegexState" :state="nameRegexState"
:disabled="!enabled" :disabled="isFormElementDisabled"
trim trim
/> />
<template #description> <template #description>
...@@ -159,17 +195,18 @@ export default { ...@@ -159,17 +195,18 @@ export default {
</template> </template>
<template #footer> <template #footer>
<div class="d-flex justify-content-end"> <div class="d-flex justify-content-end">
<gl-button ref="cancel-button" type="reset" class="mr-2 d-block">{{ <gl-button ref="cancel-button" type="reset" class="mr-2 d-block" :disabled="isLoading">
__('Cancel') {{ __('Cancel') }}
}}</gl-button> </gl-button>
<gl-button <gl-button
ref="save-button" ref="save-button"
type="submit" type="submit"
:disabled="formIsInvalid" :disabled="isSubmitButtonDisabled"
variant="success" variant="success"
class="d-block" class="d-flex justify-content-center align-items-center js-no-auto-disable"
> >
{{ __('Save expiration policy') }} {{ __('Save expiration policy') }}
<gl-loading-icon v-if="isLoading" class="ml-2" />
</gl-button> </gl-button>
</div> </div>
</template> </template>
......
import Vue from 'vue'; import Vue from 'vue';
import { GlToast } from '@gitlab/ui';
import Translate from '~/vue_shared/translate'; import Translate from '~/vue_shared/translate';
import store from './store/'; import store from './store/';
import RegistrySettingsApp from './components/registry_settings_app.vue'; import RegistrySettingsApp from './components/registry_settings_app.vue';
Vue.use(GlToast);
Vue.use(Translate); Vue.use(Translate);
export default () => { export default () => {
......
import Api from '~/api'; import Api from '~/api';
import createFlash from '~/flash';
import {
FETCH_SETTINGS_ERROR_MESSAGE,
UPDATE_SETTINGS_ERROR_MESSAGE,
UPDATE_SETTINGS_SUCCESS_MESSAGE,
} from '../constants';
import * as types from './mutation_types'; import * as types from './mutation_types';
export const setInitialState = ({ commit }, data) => commit(types.SET_INITIAL_STATE, data); export const setInitialState = ({ commit }, data) => commit(types.SET_INITIAL_STATE, data);
export const updateSettings = ({ commit }, data) => commit(types.UPDATE_SETTINGS, data); export const updateSettings = ({ commit }, data) => commit(types.UPDATE_SETTINGS, data);
export const toggleLoading = ({ commit }) => commit(types.TOGGLE_LOADING); export const toggleLoading = ({ commit }) => commit(types.TOGGLE_LOADING);
export const receiveSettingsSuccess = ({ commit }, data = {}) => commit(types.SET_SETTINGS, data); export const receiveSettingsSuccess = ({ commit }, data = {}) => commit(types.SET_SETTINGS, data);
export const receiveSettingsError = () => createFlash(FETCH_SETTINGS_ERROR_MESSAGE);
export const updateSettingsError = () => createFlash(UPDATE_SETTINGS_ERROR_MESSAGE);
export const resetSettings = ({ commit }) => commit(types.RESET_SETTINGS); export const resetSettings = ({ commit }) => commit(types.RESET_SETTINGS);
export const fetchSettings = ({ dispatch, state }) => { export const fetchSettings = ({ dispatch, state }) => {
...@@ -21,7 +13,6 @@ export const fetchSettings = ({ dispatch, state }) => { ...@@ -21,7 +13,6 @@ export const fetchSettings = ({ dispatch, state }) => {
.then(({ data: { container_expiration_policy } }) => .then(({ data: { container_expiration_policy } }) =>
dispatch('receiveSettingsSuccess', container_expiration_policy), dispatch('receiveSettingsSuccess', container_expiration_policy),
) )
.catch(() => dispatch('receiveSettingsError'))
.finally(() => dispatch('toggleLoading')); .finally(() => dispatch('toggleLoading'));
}; };
...@@ -30,11 +21,9 @@ export const saveSettings = ({ dispatch, state }) => { ...@@ -30,11 +21,9 @@ export const saveSettings = ({ dispatch, state }) => {
return Api.updateProject(state.projectId, { return Api.updateProject(state.projectId, {
container_expiration_policy_attributes: state.settings, container_expiration_policy_attributes: state.settings,
}) })
.then(({ data: { container_expiration_policy } }) => { .then(({ data: { container_expiration_policy } }) =>
dispatch('receiveSettingsSuccess', container_expiration_policy); dispatch('receiveSettingsSuccess', container_expiration_policy),
createFlash(UPDATE_SETTINGS_SUCCESS_MESSAGE, 'success'); )
})
.catch(() => dispatch('updateSettingsError'))
.finally(() => dispatch('toggleLoading')); .finally(() => dispatch('toggleLoading'));
}; };
......
...@@ -17,10 +17,10 @@ describe 'Project > Settings > CI/CD > Container registry tag expiration policy' ...@@ -17,10 +17,10 @@ describe 'Project > Settings > CI/CD > Container registry tag expiration policy'
expect(settings_block).to have_text 'Container Registry tag expiration policy' expect(settings_block).to have_text 'Container Registry tag expiration policy'
end end
it 'Save expiration policy submit the form', :js do it 'Save expiration policy submit the form' do
within '#js-registry-policies' do within '#js-registry-policies' do
within '.card-body' do within '.card-body' do
click_button(class: 'gl-toggle') find('#expiration-policy-toggle button:not(.is-disabled)').click
select('7 days until tags are automatically removed', from: 'expiration-policy-interval') select('7 days until tags are automatically removed', from: 'expiration-policy-interval')
select('Every day', from: 'expiration-policy-schedule') select('Every day', from: 'expiration-policy-schedule')
select('50 tags per image name', from: 'expiration-policy-latest') select('50 tags per image name', from: 'expiration-policy-latest')
...@@ -30,8 +30,8 @@ describe 'Project > Settings > CI/CD > Container registry tag expiration policy' ...@@ -30,8 +30,8 @@ describe 'Project > Settings > CI/CD > Container registry tag expiration policy'
expect(submit_button).not_to be_disabled expect(submit_button).not_to be_disabled
submit_button.click submit_button.click
end end
flash_text = find('.flash-text') toast = find('.gl-toast')
expect(flash_text).to have_content('Expiration policy successfully saved.') expect(toast).to have_content('Expiration policy successfully saved.')
end end
end end
end end
...@@ -161,17 +161,20 @@ exports[`Settings Form renders 1`] = ` ...@@ -161,17 +161,20 @@ exports[`Settings Form renders 1`] = `
class="mr-2 d-block" class="mr-2 d-block"
type="reset" type="reset"
> >
Cancel Cancel
</glbutton-stub> </glbutton-stub>
<glbutton-stub <glbutton-stub
class="d-block" class="d-flex justify-content-center align-items-center js-no-auto-disable"
type="submit" type="submit"
variant="success" variant="success"
> >
Save expiration policy Save expiration policy
<!---->
</glbutton-stub> </glbutton-stub>
</div> </div>
</div> </div>
......
import Vuex from 'vuex'; import { shallowMount } from '@vue/test-utils';
import { shallowMount, createLocalVue } from '@vue/test-utils';
import component from '~/registry/settings/components/registry_settings_app.vue'; import component from '~/registry/settings/components/registry_settings_app.vue';
import { createStore } from '~/registry/settings/store/'; import { createStore } from '~/registry/settings/store/';
import { FETCH_SETTINGS_ERROR_MESSAGE } from '~/registry/settings/constants';
const localVue = createLocalVue();
localVue.use(Vuex);
describe('Registry Settings App', () => { describe('Registry Settings App', () => {
let wrapper; let wrapper;
let store; let store;
let fetchSpy;
const findSettingsComponent = () => wrapper.find({ ref: 'settings-form' }); const findSettingsComponent = () => wrapper.find({ ref: 'settings-form' });
const findLoadingComponent = () => wrapper.find({ ref: 'loading-icon' });
const mountComponent = (options = {}) => { const mountComponent = ({ dispatchMock } = {}) => {
fetchSpy = jest.fn(); store = createStore();
const dispatchSpy = jest.spyOn(store, 'dispatch');
if (dispatchMock) {
dispatchSpy[dispatchMock]();
}
wrapper = shallowMount(component, { wrapper = shallowMount(component, {
store, mocks: {
methods: { $toast: {
fetchSettings: fetchSpy, show: jest.fn(),
}, },
...options, },
store,
}); });
}; };
beforeEach(() => {
store = createStore();
mountComponent();
});
afterEach(() => { afterEach(() => {
wrapper.destroy(); wrapper.destroy();
}); });
it('renders', () => { it('renders', () => {
mountComponent({ dispatchMock: 'mockResolvedValue' });
expect(wrapper.element).toMatchSnapshot(); expect(wrapper.element).toMatchSnapshot();
}); });
it('call the store function to load the data on mount', () => { it('call the store function to load the data on mount', () => {
expect(fetchSpy).toHaveBeenCalled(); mountComponent({ dispatchMock: 'mockResolvedValue' });
expect(store.dispatch).toHaveBeenCalledWith('fetchSettings');
}); });
it('renders a loader if isLoading is true', () => { it('show a toast if fetchSettings fails', () => {
store.dispatch('toggleLoading'); mountComponent({ dispatchMock: 'mockRejectedValue' });
return wrapper.vm.$nextTick().then(() => { return wrapper.vm.$nextTick().then(() =>
expect(findLoadingComponent().exists()).toBe(true); expect(wrapper.vm.$toast.show).toHaveBeenCalledWith(FETCH_SETTINGS_ERROR_MESSAGE, {
expect(findSettingsComponent().exists()).toBe(false); type: 'error',
}); }),
);
}); });
it('renders the setting form', () => { it('renders the setting form', () => {
mountComponent({ dispatchMock: 'mockResolvedValue' });
expect(findSettingsComponent().exists()).toBe(true); expect(findSettingsComponent().exists()).toBe(true);
}); });
}); });
import Vuex from 'vuex'; import { mount } from '@vue/test-utils';
import { mount, createLocalVue } from '@vue/test-utils';
import stubChildren from 'helpers/stub_children'; import stubChildren from 'helpers/stub_children';
import component from '~/registry/settings/components/settings_form.vue'; import component from '~/registry/settings/components/settings_form.vue';
import { createStore } from '~/registry/settings/store/'; import { createStore } from '~/registry/settings/store/';
import { NAME_REGEX_LENGTH } from '~/registry/settings/constants'; import {
NAME_REGEX_LENGTH,
UPDATE_SETTINGS_ERROR_MESSAGE,
UPDATE_SETTINGS_SUCCESS_MESSAGE,
} from '~/registry/settings/constants';
import { stringifiedFormOptions } from '../mock_data'; import { stringifiedFormOptions } from '../mock_data';
const localVue = createLocalVue();
localVue.use(Vuex);
describe('Settings Form', () => { describe('Settings Form', () => {
let wrapper; let wrapper;
let store; let store;
let saveSpy; let dispatchSpy;
let resetSpy;
const FORM_ELEMENTS_ID_PREFIX = '#expiration-policy';
const GlLoadingIcon = { name: 'gl-loading-icon-stub', template: '<svg></svg>' };
const findFormGroup = name => wrapper.find(`#expiration-policy-${name}-group`); const findFormGroup = name => wrapper.find(`${FORM_ELEMENTS_ID_PREFIX}-${name}-group`);
const findFormElements = (name, father = wrapper) => father.find(`#expiration-policy-${name}`); const findFormElements = (name, parent = wrapper) =>
parent.find(`${FORM_ELEMENTS_ID_PREFIX}-${name}`);
const findCancelButton = () => wrapper.find({ ref: 'cancel-button' }); const findCancelButton = () => wrapper.find({ ref: 'cancel-button' });
const findSaveButton = () => wrapper.find({ ref: 'save-button' }); const findSaveButton = () => wrapper.find({ ref: 'save-button' });
const findForm = () => wrapper.find({ ref: 'form-element' }); const findForm = () => wrapper.find({ ref: 'form-element' });
const findLoadingIcon = (parent = wrapper) => parent.find(GlLoadingIcon);
const mountComponent = (options = {}) => { const mountComponent = (options = {}) => {
saveSpy = jest.fn();
resetSpy = jest.fn();
wrapper = mount(component, { wrapper = mount(component, {
stubs: { stubs: {
...stubChildren(component), ...stubChildren(component),
GlCard: false, GlCard: false,
GlLoadingIcon,
},
mocks: {
$toast: {
show: jest.fn(),
}, },
store,
methods: {
saveSettings: saveSpy,
resetSettings: resetSpy,
}, },
store,
...options, ...options,
}); });
}; };
...@@ -41,6 +46,7 @@ describe('Settings Form', () => { ...@@ -41,6 +46,7 @@ describe('Settings Form', () => {
beforeEach(() => { beforeEach(() => {
store = createStore(); store = createStore();
store.dispatch('setInitialState', stringifiedFormOptions); store.dispatch('setInitialState', stringifiedFormOptions);
dispatchSpy = jest.spyOn(store, 'dispatch');
mountComponent(); mountComponent();
}); });
...@@ -59,7 +65,9 @@ describe('Settings Form', () => { ...@@ -59,7 +65,9 @@ describe('Settings Form', () => {
${'schedule'} | ${'cadence'} | ${'foo'} | ${'disabled'} ${'schedule'} | ${'cadence'} | ${'foo'} | ${'disabled'}
${'latest'} | ${'keep_n'} | ${'foo'} | ${'disabled'} ${'latest'} | ${'keep_n'} | ${'foo'} | ${'disabled'}
${'name-matching'} | ${'name_regex'} | ${'foo'} | ${'disabled'} ${'name-matching'} | ${'name_regex'} | ${'foo'} | ${'disabled'}
`('$elementName form element', ({ elementName, modelName, value, disabledByToggle }) => { `(
`${FORM_ELEMENTS_ID_PREFIX}-$elementName form element`,
({ elementName, modelName, value, disabledByToggle }) => {
let formGroup; let formGroup;
beforeEach(() => { beforeEach(() => {
formGroup = findFormGroup(elementName); formGroup = findFormGroup(elementName);
...@@ -77,7 +85,9 @@ describe('Settings Form', () => { ...@@ -77,7 +85,9 @@ describe('Settings Form', () => {
}); });
it(`${elementName} form group has a label-align property`, () => { it(`${elementName} form group has a label-align property`, () => {
expect(formGroup.attributes('label-align')).toBe(`${wrapper.vm.$options.labelsConfig.align}`); expect(formGroup.attributes('label-align')).toBe(
`${wrapper.vm.$options.labelsConfig.align}`,
);
}); });
it(`${elementName} form group contains an input element`, () => { it(`${elementName} form group contains an input element`, () => {
...@@ -100,7 +110,8 @@ describe('Settings Form', () => { ...@@ -100,7 +110,8 @@ describe('Settings Form', () => {
const expectation = disabledByToggle === 'disabled' ? 'true' : undefined; const expectation = disabledByToggle === 'disabled' ? 'true' : undefined;
expect(findFormElements(elementName, formGroup).attributes('disabled')).toBe(expectation); expect(findFormElements(elementName, formGroup).attributes('disabled')).toBe(expectation);
}); });
}); },
);
describe('form actions', () => { describe('form actions', () => {
let form; let form;
...@@ -112,17 +123,79 @@ describe('Settings Form', () => { ...@@ -112,17 +123,79 @@ describe('Settings Form', () => {
}); });
it('form reset event call the appropriate function', () => { it('form reset event call the appropriate function', () => {
dispatchSpy.mockReturnValue();
form.trigger('reset'); form.trigger('reset');
expect(resetSpy).toHaveBeenCalled(); // expect.any(Object) is necessary because the event payload is passed to the function
expect(dispatchSpy).toHaveBeenCalledWith('resetSettings', expect.any(Object));
}); });
it('save has type submit', () => { it('save has type submit', () => {
expect(findSaveButton().attributes('type')).toBe('submit'); expect(findSaveButton().attributes('type')).toBe('submit');
}); });
it('form submit event call the appropriate function', () => { describe('when isLoading is true', () => {
beforeEach(() => {
store.dispatch('toggleLoading');
});
afterEach(() => {
store.dispatch('toggleLoading');
});
it.each`
elementName
${'toggle'}
${'interval'}
${'schedule'}
${'latest'}
${'name-matching'}
`(`${FORM_ELEMENTS_ID_PREFIX}-$elementName is disabled`, ({ elementName }) => {
expect(findFormElements(elementName).attributes('disabled')).toBe('true');
});
it('submit button is disabled and shows a spinner', () => {
const button = findSaveButton();
expect(button.attributes('disabled')).toBeTruthy();
expect(findLoadingIcon(button)).toExist();
});
it('cancel button is disabled', () => {
expect(findCancelButton().attributes('disabled')).toBeTruthy();
});
});
describe('form submit event ', () => {
it('calls the appropriate function', () => {
dispatchSpy.mockResolvedValue();
form.trigger('submit');
expect(dispatchSpy).toHaveBeenCalled();
});
it('dispatches the saveSettings action', () => {
dispatchSpy.mockResolvedValue();
form.trigger('submit');
expect(dispatchSpy).toHaveBeenCalledWith('saveSettings');
});
it('show a success toast when submit succeed', () => {
dispatchSpy.mockResolvedValue();
form.trigger('submit');
return wrapper.vm.$nextTick().then(() => {
expect(wrapper.vm.$toast.show).toHaveBeenCalledWith(UPDATE_SETTINGS_SUCCESS_MESSAGE, {
type: 'success',
});
});
});
it('show an error toast when submit fails', () => {
dispatchSpy.mockRejectedValue();
form.trigger('submit'); form.trigger('submit');
expect(saveSpy).toHaveBeenCalled(); return wrapper.vm.$nextTick().then(() => {
expect(wrapper.vm.$toast.show).toHaveBeenCalledWith(UPDATE_SETTINGS_ERROR_MESSAGE, {
type: 'error',
});
});
});
}); });
}); });
...@@ -160,7 +233,7 @@ describe('Settings Form', () => { ...@@ -160,7 +233,7 @@ describe('Settings Form', () => {
it('toggleDescriptionText text reflects enabled property', () => { it('toggleDescriptionText text reflects enabled property', () => {
const toggleHelpText = findFormGroup('toggle').find('span'); const toggleHelpText = findFormGroup('toggle').find('span');
expect(toggleHelpText.html()).toContain('disabled'); expect(toggleHelpText.html()).toContain('disabled');
wrapper.vm.enabled = true; wrapper.setData({ enabled: true });
return wrapper.vm.$nextTick().then(() => { return wrapper.vm.$nextTick().then(() => {
expect(toggleHelpText.html()).toContain('enabled'); expect(toggleHelpText.html()).toContain('enabled');
}); });
......
import Api from '~/api'; import Api from '~/api';
import createFlash from '~/flash';
import testAction from 'helpers/vuex_action_helper'; import testAction from 'helpers/vuex_action_helper';
import * as actions from '~/registry/settings/store/actions'; import * as actions from '~/registry/settings/store/actions';
import * as types from '~/registry/settings/store/mutation_types'; import * as types from '~/registry/settings/store/mutation_types';
import {
UPDATE_SETTINGS_ERROR_MESSAGE,
FETCH_SETTINGS_ERROR_MESSAGE,
UPDATE_SETTINGS_SUCCESS_MESSAGE,
} from '~/registry/settings/constants';
jest.mock('~/flash');
describe('Actions Registry Store', () => { describe('Actions Registry Store', () => {
describe.each` describe.each`
...@@ -25,19 +17,6 @@ describe('Actions Registry Store', () => { ...@@ -25,19 +17,6 @@ describe('Actions Registry Store', () => {
}); });
}); });
describe.each`
actionName | message
${'receiveSettingsError'} | ${FETCH_SETTINGS_ERROR_MESSAGE}
${'updateSettingsError'} | ${UPDATE_SETTINGS_ERROR_MESSAGE}
`('%s action', ({ actionName, message }) => {
it(`should call createFlash with ${message}`, done => {
testAction(actions[actionName], null, null, [], [], () => {
expect(createFlash).toHaveBeenCalledWith(message);
done();
});
});
});
describe('fetchSettings', () => { describe('fetchSettings', () => {
const state = { const state = {
projectId: 'bar', projectId: 'bar',
...@@ -64,18 +43,6 @@ describe('Actions Registry Store', () => { ...@@ -64,18 +43,6 @@ describe('Actions Registry Store', () => {
done, done,
); );
}); });
it('should call receiveSettingsError on error', done => {
Api.project = jest.fn().mockRejectedValue();
testAction(
actions.fetchSettings,
null,
state,
[],
[{ type: 'toggleLoading' }, { type: 'receiveSettingsError' }, { type: 'toggleLoading' }],
done,
);
});
}); });
describe('saveSettings', () => { describe('saveSettings', () => {
...@@ -102,21 +69,6 @@ describe('Actions Registry Store', () => { ...@@ -102,21 +69,6 @@ describe('Actions Registry Store', () => {
{ type: 'receiveSettingsSuccess', payload: payload.data.container_expiration_policy }, { type: 'receiveSettingsSuccess', payload: payload.data.container_expiration_policy },
{ type: 'toggleLoading' }, { type: 'toggleLoading' },
], ],
() => {
expect(createFlash).toHaveBeenCalledWith(UPDATE_SETTINGS_SUCCESS_MESSAGE, 'success');
done();
},
);
});
it('should call receiveSettingsError on error', done => {
Api.updateProject = jest.fn().mockRejectedValue();
testAction(
actions.saveSettings,
null,
state,
[],
[{ type: 'toggleLoading' }, { type: 'updateSettingsError' }, { type: 'toggleLoading' }],
done, done,
); );
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment