2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2017-01-05 12:06:46 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-01-09 12:40:29 +01:00
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import React from 'react';
|
2017-01-05 12:06:46 +01:00
|
|
|
|
|
|
|
import IdentityIcon from './';
|
|
|
|
|
|
|
|
const ADDRESS0 = '0x0000000000000000000000000000000000000000';
|
|
|
|
const ADDRESS1 = '0x0123456789012345678901234567890123456789';
|
|
|
|
const ADDRESS2 = '0x9876543210987654321098765432109876543210';
|
|
|
|
|
2017-05-05 15:14:05 +02:00
|
|
|
IdentityIcon.iconCache.add(ADDRESS2, 'cachedImage', true);
|
|
|
|
|
2017-01-05 12:06:46 +01:00
|
|
|
let component;
|
2017-01-09 12:40:29 +01:00
|
|
|
let instance;
|
2017-01-05 12:06:46 +01:00
|
|
|
|
|
|
|
function createApi () {
|
|
|
|
return {
|
|
|
|
dappsUrl: 'dappsUrl/'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function render (props = {}) {
|
2017-05-05 15:14:05 +02:00
|
|
|
if (props.address === undefined) {
|
2017-01-05 12:06:46 +01:00
|
|
|
props.address = ADDRESS1;
|
|
|
|
}
|
|
|
|
|
2017-01-09 12:40:29 +01:00
|
|
|
component = shallow(
|
2017-01-05 12:06:46 +01:00
|
|
|
<IdentityIcon { ...props } />,
|
2017-05-02 17:50:44 +02:00
|
|
|
{ context: { api: createApi() } }
|
|
|
|
);
|
2017-01-09 12:40:29 +01:00
|
|
|
|
|
|
|
instance = component.instance();
|
|
|
|
instance.componentDidMount();
|
2017-01-05 12:06:46 +01:00
|
|
|
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('ui/IdentityIcon', () => {
|
|
|
|
it('renders defaults', () => {
|
|
|
|
expect(render()).to.be.ok;
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('images', () => {
|
|
|
|
it('renders an <img> with address specified', () => {
|
|
|
|
const img = render().find('img');
|
|
|
|
|
|
|
|
expect(img).to.have.length(1);
|
|
|
|
expect(img.props().src).to.equal('test-createIdentityImg');
|
|
|
|
});
|
|
|
|
|
2017-05-02 17:50:44 +02:00
|
|
|
it('renders an <img> with cache source when available', () => {
|
2017-01-05 12:06:46 +01:00
|
|
|
const img = render({ address: ADDRESS2 }).find('img');
|
|
|
|
|
|
|
|
expect(img).to.have.length(1);
|
2017-05-02 17:50:44 +02:00
|
|
|
expect(img.props().src).to.equal('dappsUrl/cachedImage');
|
2017-01-05 12:06:46 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('renders an <ContractIcon> with no address specified', () => {
|
2017-05-05 15:14:05 +02:00
|
|
|
expect(render({ address: null }).find('ContractIcon')).to.have.length(1);
|
2017-01-05 12:06:46 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('renders an <CancelIcon> with 0x00..00 address specified', () => {
|
2017-05-05 15:14:05 +02:00
|
|
|
expect(render({ address: ADDRESS0 }).find('CancelIcon')).to.have.length(1);
|
2017-01-05 12:06:46 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('sizes', () => {
|
|
|
|
it('renders 56px by default', () => {
|
|
|
|
expect(render().find('img').props().width).to.equal('56px');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders 16px for tiny', () => {
|
|
|
|
expect(render({ tiny: true }).find('img').props().width).to.equal('16px');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders 24px for button', () => {
|
|
|
|
expect(render({ button: true }).find('img').props().width).to.equal('24px');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders 32px for inline', () => {
|
|
|
|
expect(render({ inline: true }).find('img').props().width).to.equal('32px');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|