-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
260 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,242 @@ | ||
import fetchMock from 'jest-fetch-mock'; | ||
import { fireEvent } from '@testing-library/dom'; | ||
import { assertType } from '../utils/assert'; | ||
import '../ujs'; | ||
|
||
const mockEndpoint = 'http://localhost/endpoint'; | ||
const mockVerb = 'POST'; | ||
|
||
describe('Remote utilities', () => { | ||
beforeAll(() => { | ||
fetchMock.enableMocks(); | ||
}); | ||
|
||
afterAll(() => { | ||
fetchMock.disableMocks(); | ||
}); | ||
|
||
beforeEach(() => { | ||
window.booru.csrfToken = Math.random().toString(); | ||
fetchMock.resetMocks(); | ||
}); | ||
|
||
function addOneShotEventListener(name: string, cb: (e: Event) => void) { | ||
const handler = (event: Event) => { | ||
cb(event); | ||
document.removeEventListener(name, handler); | ||
}; | ||
document.addEventListener(name, handler); | ||
} | ||
|
||
describe('a[data-remote]', () => { | ||
const submitA = () => { | ||
const a = document.createElement('a'); | ||
a.href = mockEndpoint; | ||
a.dataset.remote = 'remote'; | ||
a.dataset.method = mockVerb; | ||
|
||
document.documentElement.insertAdjacentElement('beforeend', a); | ||
a.click(); | ||
|
||
return a; | ||
}; | ||
|
||
it('should call native fetch with the correct parameters (without body)', () => { | ||
submitA(); | ||
expect(fetch).toHaveBeenNthCalledWith(1, mockEndpoint, { | ||
method: mockVerb, | ||
credentials: 'same-origin', | ||
headers: { | ||
'x-csrf-token': window.booru.csrfToken, | ||
'x-requested-with': 'XMLHttpRequest' | ||
} | ||
}); | ||
}); | ||
|
||
it('should emit fetchcomplete event', () => new Promise<void>(resolve => { | ||
let a: HTMLAnchorElement | null = null; | ||
|
||
addOneShotEventListener('fetchcomplete', event => { | ||
expect(event.target).toBe(a); | ||
resolve(); | ||
}); | ||
|
||
a = submitA(); | ||
})); | ||
}); | ||
|
||
describe('a[data-method]', () => { | ||
const submitA = () => { | ||
const a = document.createElement('a'); | ||
a.href = mockEndpoint; | ||
a.dataset.method = mockVerb; | ||
|
||
document.documentElement.insertAdjacentElement('beforeend', a); | ||
a.click(); | ||
|
||
return a; | ||
}; | ||
|
||
it('should submit a form with the given action', () => new Promise<void>(resolve => { | ||
addOneShotEventListener('submit', event => { | ||
event.preventDefault(); | ||
|
||
const target = assertType(event.target, HTMLFormElement); | ||
const [ csrf, method ] = target.querySelectorAll('input'); | ||
|
||
expect(csrf.name).toBe('_csrf_token'); | ||
expect(csrf.value).toBe(window.booru.csrfToken); | ||
|
||
expect(method.name).toBe('_method'); | ||
expect(method.value).toBe(mockVerb); | ||
|
||
resolve(); | ||
}); | ||
|
||
submitA(); | ||
})); | ||
}); | ||
|
||
describe('form[data-remote]', () => { | ||
const submitForm = () => { | ||
const form = document.createElement('form'); | ||
form.action = mockEndpoint; | ||
form.method = mockVerb; | ||
form.dataset.remote = 'remote'; | ||
|
||
document.documentElement.insertAdjacentElement('beforeend', form); | ||
form.submit(); | ||
|
||
return form; | ||
}; | ||
|
||
it('should call native fetch with the correct parameters (with body)', () => { | ||
submitForm(); | ||
expect(fetch).toHaveBeenNthCalledWith(1, mockEndpoint, { | ||
method: mockVerb, | ||
credentials: 'same-origin', | ||
headers: { | ||
'x-csrf-token': window.booru.csrfToken, | ||
'x-requested-with': 'XMLHttpRequest' | ||
}, | ||
body: new FormData(), | ||
}); | ||
}); | ||
|
||
it('should emit fetchcomplete event', () => new Promise<void>(resolve => { | ||
let form: HTMLFormElement | null = null; | ||
|
||
addOneShotEventListener('fetchcomplete', event => { | ||
expect(event.target).toBe(form); | ||
resolve(); | ||
}); | ||
|
||
form = submitForm(); | ||
})); | ||
}); | ||
}); | ||
|
||
describe('Form utilities', () => { | ||
beforeEach(() => { | ||
jest.spyOn(window, 'requestAnimationFrame').mockImplementation(cb => { | ||
cb(1); | ||
return 1; | ||
}); | ||
}); | ||
|
||
afterEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
describe('[data-confirm]', () => { | ||
const createA = () => { | ||
const a = document.createElement('a'); | ||
a.dataset.confirm = 'confirm'; | ||
a.href = mockEndpoint; | ||
document.documentElement.insertAdjacentElement('beforeend', a); | ||
return a; | ||
}; | ||
|
||
it('should cancel the event on failed confirm', () => { | ||
const a = createA(); | ||
const confirm = jest.spyOn(window, 'confirm').mockImplementationOnce(() => false); | ||
const event = new MouseEvent('click', { bubbles: true, cancelable: true }); | ||
|
||
expect(fireEvent(a, event)).toBe(false); | ||
expect(confirm).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('should allow the event on confirm', () => { | ||
const a = createA(); | ||
const confirm = jest.spyOn(window, 'confirm').mockImplementationOnce(() => true); | ||
const event = new MouseEvent('click', { bubbles: true, cancelable: true }); | ||
|
||
expect(fireEvent(a, event)).toBe(true); | ||
expect(confirm).toHaveBeenCalledTimes(1); | ||
}); | ||
}); | ||
|
||
describe('[data-disable-with][data-enable-with]', () => { | ||
const createFormAndButton = (innerHTML: string, disableWith: string) => { | ||
const form = document.createElement('form'); | ||
form.action = mockEndpoint; | ||
|
||
// jsdom has no implementation for HTMLFormElement.prototype.submit | ||
// and will return an error if the event's default isn't prevented | ||
form.addEventListener('submit', event => event.preventDefault()); | ||
|
||
const button = document.createElement('button'); | ||
button.type = 'submit'; | ||
button.innerHTML = innerHTML; | ||
button.dataset.disableWith = disableWith; | ||
|
||
form.insertAdjacentElement('beforeend', button); | ||
document.documentElement.insertAdjacentElement('beforeend', form); | ||
|
||
return [ form, button ]; | ||
}; | ||
|
||
it('should disable submit button containing a text child on click', () => { | ||
const [ , button ] = createFormAndButton('Submit', 'Loading...'); | ||
button.click(); | ||
|
||
expect(button.textContent).toEqual(' Loading...'); | ||
expect(button.dataset.enableWith).toEqual('Submit'); | ||
}); | ||
|
||
it('should disable submit button containing element children on click', () => { | ||
const [ , button ] = createFormAndButton('<em>Submit</em>', '<em>Loading...</em>'); | ||
button.click(); | ||
|
||
expect(button.innerHTML).toEqual('<em>Loading...</em>'); | ||
expect(button.dataset.enableWith).toEqual('<em>Submit</em>'); | ||
}); | ||
|
||
it('should reset submit button containing a text child on completion', () => { | ||
const [ form, button ] = createFormAndButton('Submit', 'Loading...'); | ||
button.click(); | ||
fireEvent(form, new CustomEvent('reset', { bubbles: true })); | ||
|
||
expect(button.textContent).toEqual(' Submit'); | ||
expect(button.dataset.enableWith).not.toBeDefined(); | ||
}); | ||
|
||
it('should reset submit button containing element children on completion', () => { | ||
const [ form, button ] = createFormAndButton('<em>Submit</em>', '<em>Loading...</em>'); | ||
button.click(); | ||
fireEvent(form, new CustomEvent('reset', { bubbles: true })); | ||
|
||
expect(button.innerHTML).toEqual('<em>Submit</em>'); | ||
expect(button.dataset.enableWith).not.toBeDefined(); | ||
}); | ||
|
||
it('should reset disabled form elements on pageshow', () => { | ||
const [ , button ] = createFormAndButton('Submit', 'Loading...'); | ||
button.click(); | ||
fireEvent(window, new CustomEvent('pageshow')); | ||
|
||
expect(button.textContent).toEqual(' Submit'); | ||
expect(button.dataset.enableWith).not.toBeDefined(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters