import MockAdapter from 'axios-mock-adapter'; import $ from 'jquery'; import ProjectFindFile from '~/project_find_file'; import axios from '~/lib/utils/axios_utils'; import { TEST_HOST } from 'helpers/test_constants'; import sanitize from 'sanitize-html'; jest.mock('sanitize-html', () => jest.fn(val => val)); const BLOB_URL_TEMPLATE = `${TEST_HOST}/namespace/project/blob/master`; const FILE_FIND_URL = `${TEST_HOST}/namespace/project/files/master?format=json`; const FIND_TREE_URL = `${TEST_HOST}/namespace/project/tree/master`; const TEMPLATE = `
`; describe('ProjectFindFile', () => { let element; let mock; const getProjectFindFileInstance = () => new ProjectFindFile(element, { url: FILE_FIND_URL, treeUrl: FIND_TREE_URL, blobUrlTemplate: BLOB_URL_TEMPLATE, }); const findFiles = () => element .find('.tree-table tr') .toArray() .map(el => ({ text: el.textContent, href: el.querySelector('a').href, })); const files = [ 'fileA.txt', 'fileB.txt', 'fi#leC.txt', 'folderA/fileD.txt', 'folder#B/fileE.txt', 'folde?rC/fil#F.txt', ]; beforeEach(() => { // Create a mock adapter for stubbing axios API requests mock = new MockAdapter(axios); element = $(TEMPLATE); mock.onGet(FILE_FIND_URL).replyOnce(200, files); getProjectFindFileInstance(); // This triggers a load / axios call + subsequent render in the constructor }); afterEach(() => { // Reset the mock adapter mock.restore(); sanitize.mockClear(); }); it('loads and renders elements from remote server', done => { setImmediate(() => { expect(findFiles()).toEqual( files.map(text => ({ text, href: `${BLOB_URL_TEMPLATE}/${encodeURIComponent(text)}`, })), ); done(); }); }); it('sanitizes search text', done => { const searchText = element.find('.file-finder-input').val(); setImmediate(() => { expect(sanitize).toHaveBeenCalledTimes(1); expect(sanitize).toHaveBeenCalledWith(searchText); done(); }); }); });