2017-09-30 04:29:56 +02:00
|
|
|
import React from 'react';
|
|
|
|
import Avatar from '../../../app/javascript/mastodon/components/avatar';
|
|
|
|
|
2016-10-10 22:32:03 +02:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import { render } from 'enzyme';
|
2017-08-07 19:44:55 +02:00
|
|
|
import { fromJS } from 'immutable';
|
2016-10-10 22:32:03 +02:00
|
|
|
|
2016-10-10 22:46:37 +02:00
|
|
|
describe('<Avatar />', () => {
|
2017-08-07 19:44:55 +02:00
|
|
|
const account = fromJS({
|
|
|
|
username: 'alice',
|
|
|
|
acct: 'alice',
|
|
|
|
display_name: 'Alice',
|
|
|
|
avatar: '/animated/alice.gif',
|
|
|
|
avatar_static: '/static/alice.jpg',
|
|
|
|
});
|
2017-09-30 04:29:56 +02:00
|
|
|
|
2016-10-12 18:06:18 +02:00
|
|
|
const size = 100;
|
2017-08-07 19:44:55 +02:00
|
|
|
const animated = render(<Avatar account={account} animate size={size} />);
|
|
|
|
const still = render(<Avatar account={account} size={size} />);
|
2016-10-12 18:06:18 +02:00
|
|
|
|
2017-08-07 19:44:55 +02:00
|
|
|
// Autoplay
|
2017-09-30 04:29:56 +02:00
|
|
|
xit('renders a div element with the given src as background', () => {
|
2017-08-07 19:44:55 +02:00
|
|
|
expect(animated.find('div')).to.have.style('background-image', `url(${account.get('avatar')})`);
|
2016-10-12 18:06:18 +02:00
|
|
|
});
|
|
|
|
|
2017-09-30 04:29:56 +02:00
|
|
|
xit('renders a div element of the given size', () => {
|
2016-10-12 18:06:18 +02:00
|
|
|
['width', 'height'].map((attr) => {
|
2017-08-07 19:44:55 +02:00
|
|
|
expect(animated.find('div')).to.have.style(attr, `${size}px`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Still
|
2017-09-30 04:29:56 +02:00
|
|
|
xit('renders a div element with the given static src as background if not autoplay', () => {
|
2017-08-07 19:44:55 +02:00
|
|
|
expect(still.find('div')).to.have.style('background-image', `url(${account.get('avatar_static')})`);
|
|
|
|
});
|
|
|
|
|
2017-09-30 04:29:56 +02:00
|
|
|
xit('renders a div element of the given size if not autoplay', () => {
|
2017-08-07 19:44:55 +02:00
|
|
|
['width', 'height'].map((attr) => {
|
|
|
|
expect(still.find('div')).to.have.style(attr, `${size}px`);
|
2016-10-12 18:06:18 +02:00
|
|
|
});
|
2016-10-10 22:32:03 +02:00
|
|
|
});
|
2017-08-07 19:44:55 +02:00
|
|
|
|
|
|
|
// TODO add autoplay test if possible
|
2016-10-10 22:32:03 +02:00
|
|
|
});
|