2016-10-18 02:54:49 +02:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import { render } from 'enzyme';
|
2017-07-11 01:00:14 +02:00
|
|
|
import { fromJS } from 'immutable';
|
2017-06-01 17:27:15 +02:00
|
|
|
import React from 'react';
|
|
|
|
import DisplayName from '../../../app/javascript/mastodon/components/display_name';
|
2016-10-18 02:54:49 +02:00
|
|
|
|
|
|
|
describe('<DisplayName />', () => {
|
2016-10-20 17:34:44 +02:00
|
|
|
it('renders display name + account name', () => {
|
2017-07-11 01:00:14 +02:00
|
|
|
const account = fromJS({
|
2016-10-20 17:34:44 +02:00
|
|
|
username: 'bar',
|
|
|
|
acct: 'bar@baz',
|
2017-06-01 17:27:15 +02:00
|
|
|
display_name: 'Foo',
|
2016-10-20 17:34:44 +02:00
|
|
|
});
|
|
|
|
const wrapper = render(<DisplayName account={account} />);
|
|
|
|
expect(wrapper).to.have.text('Foo @bar@baz');
|
2016-10-18 02:54:49 +02:00
|
|
|
});
|
|
|
|
|
2016-10-20 17:34:44 +02:00
|
|
|
it('renders the username + account name if display name is empty', () => {
|
2017-07-11 01:00:14 +02:00
|
|
|
const account = fromJS({
|
2016-10-20 17:34:44 +02:00
|
|
|
username: 'bar',
|
|
|
|
acct: 'bar@baz',
|
2017-06-01 17:27:15 +02:00
|
|
|
display_name: '',
|
2016-10-20 17:34:44 +02:00
|
|
|
});
|
|
|
|
const wrapper = render(<DisplayName account={account} />);
|
|
|
|
expect(wrapper).to.have.text('bar @bar@baz');
|
2016-10-18 02:54:49 +02:00
|
|
|
});
|
|
|
|
});
|