2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2017-01-23 17:33:03 +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-04-19 18:00:05 +02:00
|
|
|
import BigNumber from 'bignumber.js';
|
2017-01-23 17:33:03 +01:00
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import React from 'react';
|
|
|
|
import sinon from 'sinon';
|
|
|
|
|
2017-04-19 18:00:05 +02:00
|
|
|
import { ETH_TOKEN } from '~/util/tokens';
|
|
|
|
|
2017-01-23 17:33:03 +01:00
|
|
|
import AccountCard from './';
|
|
|
|
|
|
|
|
const TEST_ADDRESS = '0x1234567890123456789012345678901234567890';
|
|
|
|
const TEST_NAME = 'Jimmy';
|
|
|
|
|
|
|
|
let component;
|
|
|
|
let onClick;
|
|
|
|
let onFocus;
|
|
|
|
|
2017-04-19 18:00:05 +02:00
|
|
|
function reduxStore () {
|
|
|
|
const getState = () => ({
|
|
|
|
balances: {},
|
|
|
|
tokens: {
|
|
|
|
[ETH_TOKEN.id]: ETH_TOKEN
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
getState,
|
|
|
|
dispatch: () => null,
|
|
|
|
subscribe: () => null
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-01-23 17:33:03 +01:00
|
|
|
function render (props = {}) {
|
|
|
|
if (!props.account) {
|
|
|
|
props.account = {
|
|
|
|
address: TEST_ADDRESS,
|
|
|
|
description: 'testDescription',
|
|
|
|
name: TEST_NAME,
|
2017-02-16 17:42:19 +01:00
|
|
|
meta: {
|
|
|
|
tags: [ 'tag 1', 'tag 2' ]
|
|
|
|
}
|
2017-01-23 17:33:03 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:00:05 +02:00
|
|
|
if (!props.balance) {
|
|
|
|
props.balance = {
|
|
|
|
[ETH_TOKEN.id]: new BigNumber(10)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-01-23 17:33:03 +01:00
|
|
|
onClick = sinon.stub();
|
|
|
|
onFocus = sinon.stub();
|
|
|
|
|
|
|
|
component = shallow(
|
|
|
|
<AccountCard
|
|
|
|
{ ...props }
|
|
|
|
onClick={ onClick }
|
|
|
|
onFocus={ onFocus }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('ui/AccountCard', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
render();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders defaults', () => {
|
|
|
|
expect(component).to.be.ok;
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('components', () => {
|
2017-01-31 12:21:50 +01:00
|
|
|
describe('Balance', () => {
|
|
|
|
let balance;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2017-04-19 18:00:05 +02:00
|
|
|
balance = component.find('Connect(Balance)').shallow({
|
|
|
|
context: { store: reduxStore() }
|
|
|
|
});
|
2017-01-31 12:21:50 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the balance', () => {
|
|
|
|
expect(balance.length).to.equal(1);
|
|
|
|
});
|
|
|
|
|
2017-03-08 18:07:14 +01:00
|
|
|
it('sets showOnlyEth', () => {
|
2017-01-31 12:21:50 +01:00
|
|
|
expect(balance.props().showOnlyEth).to.be.true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-23 17:33:03 +01:00
|
|
|
describe('IdentityIcon', () => {
|
|
|
|
let icon;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
icon = component.find('Connect(IdentityIcon)');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the icon', () => {
|
|
|
|
expect(icon.length).to.equal(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('passes the address through', () => {
|
|
|
|
expect(icon.props().address).to.equal(TEST_ADDRESS);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('IdentityName', () => {
|
|
|
|
let name;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
name = component.find('Connect(IdentityName)');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the name', () => {
|
|
|
|
expect(name.length).to.equal(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('passes the address through', () => {
|
|
|
|
expect(name.props().address).to.equal(TEST_ADDRESS);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('passes the name through', () => {
|
|
|
|
expect(name.props().name).to.equal(TEST_NAME);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders unknown (no name)', () => {
|
|
|
|
expect(name.props().unknown).to.be.true;
|
|
|
|
});
|
|
|
|
});
|
2017-01-31 12:21:50 +01:00
|
|
|
|
|
|
|
describe('Tags', () => {
|
|
|
|
let tags;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
tags = component.find('Tags');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the tags', () => {
|
|
|
|
expect(tags.length).to.equal(1);
|
|
|
|
});
|
|
|
|
});
|
2017-01-23 17:33:03 +01:00
|
|
|
});
|
|
|
|
});
|