summaryrefslogtreecommitdiff
path: root/spec/frontend/static_site_editor/components/edit_meta_controls_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/static_site_editor/components/edit_meta_controls_spec.js')
-rw-r--r--spec/frontend/static_site_editor/components/edit_meta_controls_spec.js99
1 files changed, 99 insertions, 0 deletions
diff --git a/spec/frontend/static_site_editor/components/edit_meta_controls_spec.js b/spec/frontend/static_site_editor/components/edit_meta_controls_spec.js
new file mode 100644
index 00000000000..191f91be076
--- /dev/null
+++ b/spec/frontend/static_site_editor/components/edit_meta_controls_spec.js
@@ -0,0 +1,99 @@
+import { shallowMount } from '@vue/test-utils';
+
+import { useLocalStorageSpy } from 'helpers/local_storage_helper';
+import { GlFormInput, GlFormTextarea } from '@gitlab/ui';
+
+import EditMetaControls from '~/static_site_editor/components/edit_meta_controls.vue';
+
+import { mergeRequestMeta } from '../mock_data';
+
+describe('~/static_site_editor/components/edit_meta_controls.vue', () => {
+ useLocalStorageSpy();
+
+ let wrapper;
+ let mockSelect;
+ let mockGlFormInputTitleInstance;
+ const { title, description } = mergeRequestMeta;
+ const newTitle = 'New title';
+ const newDescription = 'New description';
+
+ const buildWrapper = (propsData = {}) => {
+ wrapper = shallowMount(EditMetaControls, {
+ propsData: {
+ title,
+ description,
+ ...propsData,
+ },
+ });
+ };
+
+ const buildMocks = () => {
+ mockSelect = jest.fn();
+ mockGlFormInputTitleInstance = { $el: { select: mockSelect } };
+ wrapper.vm.$refs.title = mockGlFormInputTitleInstance;
+ };
+
+ const findGlFormInputTitle = () => wrapper.find(GlFormInput);
+ const findGlFormTextAreaDescription = () => wrapper.find(GlFormTextarea);
+
+ beforeEach(() => {
+ buildWrapper();
+ buildMocks();
+
+ return wrapper.vm.$nextTick();
+ });
+
+ afterEach(() => {
+ wrapper.destroy();
+ wrapper = null;
+ });
+
+ it('renders the title input', () => {
+ expect(findGlFormInputTitle().exists()).toBe(true);
+ });
+
+ it('renders the description input', () => {
+ expect(findGlFormTextAreaDescription().exists()).toBe(true);
+ });
+
+ it('forwards the title prop to the title input', () => {
+ expect(findGlFormInputTitle().attributes().value).toBe(title);
+ });
+
+ it('forwards the description prop to the description input', () => {
+ expect(findGlFormTextAreaDescription().attributes().value).toBe(description);
+ });
+
+ it('calls select on the title input when mounted', () => {
+ expect(mockGlFormInputTitleInstance.$el.select).toHaveBeenCalled();
+ });
+
+ describe('when inputs change', () => {
+ const storageKey = 'sse-merge-request-meta-local-storage-editable';
+
+ afterEach(() => {
+ localStorage.removeItem(storageKey);
+ });
+
+ it.each`
+ findFn | key | value
+ ${findGlFormInputTitle} | ${'title'} | ${newTitle}
+ ${findGlFormTextAreaDescription} | ${'description'} | ${newDescription}
+ `('emits updated settings when $findFn input updates', ({ key, value, findFn }) => {
+ findFn().vm.$emit('input', value);
+
+ const newSettings = { ...mergeRequestMeta, [key]: value };
+
+ expect(wrapper.emitted('updateSettings')[0][0]).toMatchObject(newSettings);
+ });
+
+ it('should remember the input changes', () => {
+ findGlFormInputTitle().vm.$emit('input', newTitle);
+ findGlFormTextAreaDescription().vm.$emit('input', newDescription);
+
+ const newSettings = { title: newTitle, description: newDescription };
+
+ expect(localStorage.setItem).toHaveBeenCalledWith(storageKey, JSON.stringify(newSettings));
+ });
+ });
+});