debian-mirror-gitlab/spec/frontend/behaviors/quick_submit_spec.js
2023-06-20 00:43:36 +05:30

150 lines
3.8 KiB
JavaScript

import $ from 'jquery';
import htmlSnippetsShow from 'test_fixtures/snippets/show.html';
import { setHTMLFixture, resetHTMLFixture } from 'helpers/fixtures';
import '~/behaviors/quick_submit';
describe('Quick Submit behavior', () => {
let testContext;
const keydownEvent = (options = { keyCode: 13, metaKey: true }) => $.Event('keydown', options);
beforeEach(() => {
setHTMLFixture(htmlSnippetsShow);
testContext = {};
testContext.spies = {
submit: jest.fn(),
};
$('form').submit((e) => {
// Prevent a form submit from moving us off the testing page
e.preventDefault();
// Explicitly call the spie to know this function get's not called
testContext.spies.submit();
});
testContext.textarea = $('.js-quick-submit textarea').first();
});
afterEach(() => {
resetHTMLFixture();
});
it('does not respond to other keyCodes', () => {
testContext.textarea.trigger(
keydownEvent({
keyCode: 32,
}),
);
expect(testContext.spies.submit).not.toHaveBeenCalled();
});
it('does not respond to Enter alone', () => {
testContext.textarea.trigger(
keydownEvent({
ctrlKey: false,
metaKey: false,
}),
);
expect(testContext.spies.submit).not.toHaveBeenCalled();
});
it('does not respond to repeated events', () => {
testContext.textarea.trigger(
keydownEvent({
repeat: true,
}),
);
expect(testContext.spies.submit).not.toHaveBeenCalled();
});
it('disables submit', () => {
const submitButton = $('.js-quick-submit [type=submit]');
testContext.textarea.trigger(keydownEvent());
expect(submitButton).toBeDisabled();
});
it('only clicks one submit', () => {
const existingSubmit = $('.js-quick-submit [type=submit]');
// Add an extra submit button
const newSubmit = $('<button type="submit">Submit it</button>');
newSubmit.insertAfter(testContext.textarea);
const spies = {
oldClickSpy: jest.fn(),
newClickSpy: jest.fn(),
};
existingSubmit.on('click', () => {
spies.oldClickSpy();
});
newSubmit.on('click', () => {
spies.newClickSpy();
});
testContext.textarea.trigger(keydownEvent());
expect(spies.oldClickSpy).not.toHaveBeenCalled();
expect(spies.newClickSpy).toHaveBeenCalled();
});
// We cannot stub `navigator.userAgent` for CI's `rake karma` task, so we'll
// only run the tests that apply to the current platform
if (navigator.userAgent.match(/Macintosh/)) {
describe('In Macintosh', () => {
it('responds to Meta+Enter', () => {
testContext.textarea.trigger(keydownEvent());
expect(testContext.spies.submit).toHaveBeenCalled();
});
it('excludes other modifier keys', () => {
testContext.textarea.trigger(
keydownEvent({
altKey: true,
}),
);
testContext.textarea.trigger(
keydownEvent({
ctrlKey: true,
}),
);
testContext.textarea.trigger(
keydownEvent({
shiftKey: true,
}),
);
expect(testContext.spies.submit).not.toHaveBeenCalled();
});
});
} else {
it('responds to Ctrl+Enter', () => {
testContext.textarea.trigger(keydownEvent());
expect(testContext.spies.submit).toHaveBeenCalled();
});
it('excludes other modifier keys', () => {
testContext.textarea.trigger(
keydownEvent({
altKey: true,
}),
);
testContext.textarea.trigger(
keydownEvent({
metaKey: true,
}),
);
testContext.textarea.trigger(
keydownEvent({
shiftKey: true,
}),
);
expect(testContext.spies.submit).not.toHaveBeenCalled();
});
}
});