airbnb/caravel

View on GitHub
superset-frontend/src/components/ListViewCard/ImageLoader.test.jsx

Summary

Maintainability
A
40 mins
Test Coverage
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
import { styledMount as mount } from 'spec/helpers/theming';
import fetchMock from 'fetch-mock';

import ImageLoader from 'src/components/ListViewCard/ImageLoader';
import waitForComponentToPaint from 'spec/helpers/waitForComponentToPaint';

global.URL.createObjectURL = jest.fn(() => '/local_url');
const blob = new Blob([], { type: 'image/png' });

fetchMock.get(
  '/thumbnail',
  { body: blob, headers: { 'Content-Type': 'image/png' } },
  {
    sendAsJson: false,
  },
);

describe('ImageLoader', () => {
  const defaultProps = {
    src: '/thumbnail',
    fallback: '/fallback',
  };

  const factory = (extraProps = {}) => {
    const props = { ...defaultProps, ...extraProps };
    return mount(<ImageLoader {...props} />);
  };

  afterEach(fetchMock.resetHistory);

  it('is a valid element', async () => {
    const wrapper = factory();
    await waitForComponentToPaint(wrapper);
    expect(wrapper.find(ImageLoader)).toExist();
  });

  it('fetches loads the image in the background', async () => {
    const wrapper = factory();
    expect(wrapper.find('div').props().src).toBe('/fallback');
    await waitForComponentToPaint(wrapper);
    expect(fetchMock.calls(/thumbnail/)).toHaveLength(1);
    expect(global.URL.createObjectURL).toHaveBeenCalled();
    expect(wrapper.find('div').props().src).toBe('/local_url');
  });

  it('displays fallback image when response is not an image', async () => {
    fetchMock.once('/thumbnail2', {});
    const wrapper = factory({ src: '/thumbnail2' });
    expect(wrapper.find('div').props().src).toBe('/fallback');
    await waitForComponentToPaint(wrapper);
    expect(fetchMock.calls(/thumbnail2/)).toHaveLength(1);
    expect(wrapper.find('div').props().src).toBe('/fallback');
  });
});