Files
mattermost-mobile/app/components/retriable_fast_image/retriable_fast_image.test.js
Mattermost Build 8aa6422d63 Add retriable FastImage component (#5167) (#5172)
(cherry picked from commit e33a16d4f1)

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>
2021-02-10 14:54:17 -07:00

53 lines
1.8 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react';
import {shallow} from 'enzyme';
import FastImage from 'react-native-fast-image';
import RetriableFastImage, {FAST_IMAGE_MAX_RETRIES} from './index';
describe('RetriableFastImage', () => {
const baseProps = {
id: 'id',
onError: jest.fn(),
};
it('should update the FastImage element key on error until max retries has been reached', () => {
const wrapper = shallow(
<RetriableFastImage {...baseProps}/>,
);
const instance = wrapper.instance();
let retry = 0;
expect(wrapper.containsMatchingElement(<FastImage key={`${baseProps.id}-${retry}`}/>)).toEqual(true);
while (instance.state.retry < FAST_IMAGE_MAX_RETRIES) {
instance.onError();
retry += 1;
expect(wrapper.containsMatchingElement(<FastImage key={`${baseProps.id}-${retry}`}/>)).toEqual(true);
}
instance.onError();
expect(wrapper.containsMatchingElement(<FastImage key={`${baseProps.id}-${retry}`}/>)).toEqual(true);
});
it('should call props.onError only after max retries has been reached', () => {
const wrapper = shallow(
<RetriableFastImage {...baseProps}/>,
);
const instance = wrapper.instance();
let retry = 0;
while (instance.state.retry < FAST_IMAGE_MAX_RETRIES) {
instance.onError();
retry += 1;
expect(instance.state.retry).toEqual(retry);
expect(baseProps.onError).not.toHaveBeenCalled();
}
instance.onError();
expect(instance.state.retry).toEqual(retry);
expect(baseProps.onError).toHaveBeenCalled();
});
});