This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display AccountCard name via IdentityName (#4235)
* Display AccountCard name via IdentityName * Pass name through (catches registry reverse display)
- Loading branch information
Showing
3 changed files
with
157 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
// Copyright 2015, 2016 Parity Technologies (UK) Ltd. | ||
// 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/>. | ||
|
||
import { shallow } from 'enzyme'; | ||
import React from 'react'; | ||
import sinon from 'sinon'; | ||
|
||
import AccountCard from './'; | ||
|
||
const TEST_ADDRESS = '0x1234567890123456789012345678901234567890'; | ||
const TEST_NAME = 'Jimmy'; | ||
|
||
let component; | ||
let onClick; | ||
let onFocus; | ||
|
||
function render (props = {}) { | ||
if (!props.account) { | ||
props.account = { | ||
address: TEST_ADDRESS, | ||
description: 'testDescription', | ||
name: TEST_NAME, | ||
meta: {} | ||
}; | ||
} | ||
|
||
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', () => { | ||
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; | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters