// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { configure, mount } from "enzyme"; import { FileThumbnail } from "./file-thumbnail"; import { CollectionFileType } from '../../models/collection-file'; import * as Adapter from 'enzyme-adapter-react-16'; import { Provider } from "react-redux"; import { combineReducers, createStore } from "redux"; configure({ adapter: new Adapter() }); jest.mock('is-image', () => ({ 'default': () => true, })); let store; describe("", () => { let file; beforeEach(() => { const initialAuthState = { config: { keepWebServiceUrl: 'http://example.com/', keepWebInlineServiceUrl: 'http://*.collections.example.com/', } } store = createStore(combineReducers({ auth: (state: any = initialAuthState, action: any) => state, })); file = { name: 'test-image', type: CollectionFileType.FILE, url: 'http://example.com/c=zzzzz-4zz18-0123456789abcde/t=v2/zzzzz-gj3su-0123456789abcde/xxxxxxtokenxxxxx/test-image.jpg', size: 300 }; }); it("renders file thumbnail with proper src", () => { const fileThumbnail = mount(); expect(fileThumbnail.html()).toBe('test-image'); }); });