-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
8 changed files
with
225 additions
and
20 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,13 @@ | ||
import JSDOMEnvironment from 'jest-environment-jsdom'; | ||
|
||
export default class FixJSDOMEnvironment extends JSDOMEnvironment { | ||
constructor(...args: ConstructorParameters<typeof JSDOMEnvironment>) { | ||
super(...args); | ||
|
||
// https://github.com/jsdom/jsdom/issues/1721#issuecomment-1484202038 | ||
// jsdom URL and Blob are missing most of the implementation | ||
// Use the node version of these types instead | ||
this.global.URL = URL; | ||
this.global.Blob = Blob; | ||
} | ||
} |
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,178 @@ | ||
import { $, $$, removeEl } from '../utils/dom'; | ||
import { assertNotNull, assertNotUndefined } from '../utils/assert'; | ||
|
||
import fetchMock from 'jest-fetch-mock'; | ||
import { fixEventListeners } from '../../test/fix-event-listeners'; | ||
import { fireEvent, waitFor } from '@testing-library/dom'; | ||
import { promises } from 'fs'; | ||
import { join } from 'path'; | ||
|
||
import { setupImageUpload } from '../upload'; | ||
|
||
/* eslint-disable camelcase */ | ||
const scrapeResponse = { | ||
description: 'test', | ||
images: [ | ||
{url: 'http://localhost/images/1', camo_url: 'http://localhost/images/1'}, | ||
{url: 'http://localhost/images/2', camo_url: 'http://localhost/images/2'}, | ||
], | ||
source_url: 'http://localhost/images', | ||
author_name: 'test', | ||
}; | ||
const nullResponse = null; | ||
const errorResponse = { | ||
errors: ['Error 1', 'Error 2'], | ||
}; | ||
/* eslint-enable camelcase */ | ||
|
||
describe('Image upload form', () => { | ||
let mockPng: File; | ||
let mockWebm: File; | ||
|
||
beforeAll(async() => { | ||
const mockPngPath = join(__dirname, 'upload-test.png'); | ||
const mockWebmPath = join(__dirname, 'upload-test.webm'); | ||
|
||
mockPng = new File([(await promises.readFile(mockPngPath, { encoding: null })).buffer], 'upload-test.png', { type: 'image/png' }); | ||
mockWebm = new File([(await promises.readFile(mockWebmPath, { encoding: null })).buffer], 'upload-test.webm', { type: 'video/webm' }); | ||
}); | ||
|
||
beforeAll(() => { | ||
fetchMock.enableMocks(); | ||
}); | ||
|
||
afterAll(() => { | ||
fetchMock.disableMocks(); | ||
}); | ||
|
||
fixEventListeners(window); | ||
|
||
let form: HTMLFormElement; | ||
let imgPreviews: HTMLDivElement; | ||
let fileField: HTMLInputElement; | ||
let remoteUrl: HTMLInputElement; | ||
let scraperError: HTMLDivElement; | ||
let fetchButton: HTMLButtonElement; | ||
let tagsEl: HTMLTextAreaElement; | ||
let sourceEl: HTMLInputElement; | ||
let descrEl: HTMLTextAreaElement; | ||
|
||
beforeEach(() => { | ||
document.documentElement.insertAdjacentHTML('beforeend', ` | ||
<form action="/images"> | ||
<div id="js-image-upload-previews"></div> | ||
<input id="image_image" name="image[image]" type="file" class="js-scraper" /> | ||
<input id="image_scraper_url" name="image[scraper_url]" type="url" class="js-scraper" /> | ||
<button id="js-scraper-preview" type="button">Fetch</button> | ||
<div class="field-error-js hidden js-scraper"></div> | ||
<input id="image_sources_0_source" name="image[sources][0][source]" type="text" class="js-source-url" /> | ||
<textarea id="image_tag_input" name="image[tag_input]" class="js-image-tags-input"></textarea> | ||
<textarea id="image_description" name="image[description]" class="js-image-descr-input"></textarea> | ||
</form> | ||
`); | ||
|
||
form = assertNotNull($<HTMLFormElement>('form')); | ||
imgPreviews = assertNotNull($<HTMLDivElement>('#js-image-upload-previews')); | ||
fileField = assertNotUndefined($$<HTMLInputElement>('.js-scraper')[0]); | ||
remoteUrl = assertNotUndefined($$<HTMLInputElement>('.js-scraper')[1]); | ||
scraperError = assertNotUndefined($$<HTMLInputElement>('.js-scraper')[2]); | ||
tagsEl = assertNotNull($<HTMLTextAreaElement>('.js-image-tags-input')); | ||
sourceEl = assertNotNull($<HTMLInputElement>('.js-source-url')); | ||
descrEl = assertNotNull($<HTMLTextAreaElement>('.js-image-descr-input')); | ||
fetchButton = assertNotNull($<HTMLButtonElement>('#js-scraper-preview')); | ||
|
||
setupImageUpload(); | ||
fetchMock.resetMocks(); | ||
}); | ||
|
||
afterEach(() => { | ||
removeEl(form); | ||
}); | ||
|
||
it('should disable fetch button on empty source', () => { | ||
fireEvent.input(remoteUrl, { target: { value: '' }}); | ||
expect(fetchButton.disabled).toBe(true); | ||
}); | ||
|
||
it('should enable fetch button on non-empty source', () => { | ||
fireEvent.input(remoteUrl, { target: { value: 'http://localhost/images/1' }}); | ||
expect(fetchButton.disabled).toBe(false); | ||
}); | ||
|
||
it('should create a preview element when an image file is uploaded', () => { | ||
fireEvent.change(fileField, { target: { files: [mockPng] }}); | ||
return waitFor(() => expect(imgPreviews.querySelectorAll('img')).toHaveLength(1)); | ||
}); | ||
|
||
it('should create a preview element when a Matroska video file is uploaded', () => { | ||
fireEvent.change(fileField, { target: { files: [mockWebm] }}); | ||
return waitFor(() => expect(imgPreviews.querySelectorAll('video')).toHaveLength(1)); | ||
}); | ||
|
||
it('should block navigation away after an image file is attached, but not after form submission', async() => { | ||
fireEvent.change(fileField, { target: { files: [mockPng] }}); | ||
await waitFor(() => { expect(imgPreviews.querySelectorAll('img')).toHaveLength(1); }); | ||
|
||
const failedUnloadEvent = new Event('beforeunload', { cancelable: true }); | ||
expect(fireEvent(window, failedUnloadEvent)).toBe(false); | ||
|
||
await new Promise<void>(resolve => { | ||
form.addEventListener('submit', event => { | ||
event.preventDefault(); | ||
resolve(); | ||
}); | ||
form.submit(); | ||
}); | ||
|
||
const succeededUnloadEvent = new Event('beforeunload', { cancelable: true }); | ||
expect(fireEvent(window, succeededUnloadEvent)).toBe(true); | ||
}); | ||
|
||
it('should scrape images when the fetch button is clicked', async() => { | ||
fetchMock.mockResolvedValue(new Response(JSON.stringify(scrapeResponse), { status: 200 })); | ||
fireEvent.input(remoteUrl, { target: { value: 'http://localhost/images/1' }}); | ||
|
||
await new Promise<void>(resolve => { | ||
tagsEl.addEventListener('addtag', (event: Event) => { | ||
expect((event as CustomEvent).detail).toEqual({name: 'artist:test'}); | ||
resolve(); | ||
}); | ||
|
||
fireEvent.keyDown(remoteUrl, { keyCode: 13 }); | ||
}); | ||
|
||
await waitFor(() => expect(fetch).toHaveBeenCalledTimes(1)); | ||
await waitFor(() => expect(imgPreviews.querySelectorAll('img')).toHaveLength(2)); | ||
|
||
expect(scraperError.innerHTML).toEqual(''); | ||
expect(sourceEl.value).toEqual('http://localhost/images'); | ||
expect(descrEl.value).toEqual('test'); | ||
}); | ||
|
||
it('should show null scrape result', () => { | ||
fetchMock.mockResolvedValue(new Response(JSON.stringify(nullResponse), { status: 200 })); | ||
|
||
fireEvent.input(remoteUrl, { target: { value: 'http://localhost/images/1' }}); | ||
fetchButton.click(); | ||
|
||
return waitFor(() => { | ||
expect(fetch).toHaveBeenCalledTimes(1); | ||
expect(imgPreviews.querySelectorAll('img')).toHaveLength(0); | ||
expect(scraperError.innerText).toEqual('No image found at that address.'); | ||
}); | ||
}); | ||
|
||
it('should show error scrape result', () => { | ||
fetchMock.mockResolvedValue(new Response(JSON.stringify(errorResponse), { status: 200 })); | ||
|
||
fireEvent.input(remoteUrl, { target: { value: 'http://localhost/images/1' }}); | ||
fetchButton.click(); | ||
|
||
return waitFor(() => { | ||
expect(fetch).toHaveBeenCalledTimes(1); | ||
expect(imgPreviews.querySelectorAll('img')).toHaveLength(0); | ||
expect(scraperError.innerText).toEqual('Error 1 Error 2'); | ||
}); | ||
}); | ||
}); |
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
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,26 @@ | ||
// Add helper to fix event listeners on a given target | ||
|
||
export function fixEventListeners(t: EventTarget) { | ||
let eventListeners: Record<string, unknown[]>; | ||
|
||
/* eslint-disable @typescript-eslint/no-explicit-any */ | ||
beforeAll(() => { | ||
eventListeners = {}; | ||
const oldAddEventListener = t.addEventListener; | ||
|
||
t.addEventListener = function(type: string, listener: any, options: any): void { | ||
eventListeners[type] = eventListeners[type] || []; | ||
eventListeners[type].push(listener); | ||
return oldAddEventListener(type, listener, options); | ||
}; | ||
}); | ||
|
||
afterEach(() => { | ||
for (const key in eventListeners) { | ||
for (const listener of eventListeners[key]) { | ||
(t.removeEventListener as any)(key, listener); | ||
} | ||
} | ||
eventListeners = {}; | ||
}); | ||
} |