* i18n for writecontract * i18n for writecontract store * wallet i18n * wallet confirmations i18n * wallet details i18n * wallet transactions i18n * status i18n * status calls i18n * status callstoolbar i18n * status debug i18n * status editableValue i18n * status miningSettings i18n * status rpcCalls i18n * status rpcDocs i18n * status status i18n * signer i18n * signer origin i18n * signer signRequest i18n * signer transactionMainDetails i18n * sign transactionPending i18n * signer transactionPending i18n * Fix duplicate ids * Typo * Adapt tests for i18n * Actionbar i18n * contracts i18n * contract i18n * contract/queries i18n * contract/events i18n * application/frameError i18n * Actionbar key naming * addresses i18n * address i18n * accounts i18n (tooltip) * Plural strings for owner numbers * IdentityIcon placement * Re-apply s/actiobar/actionbar/ after merge
73 lines
2.3 KiB
JavaScript
73 lines
2.3 KiB
JavaScript
// Copyright 2015-2017 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 RequestOrigin from './';
|
|
|
|
const context = {
|
|
context: {
|
|
api: {
|
|
transport: {
|
|
sessionHash: '1234'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
describe('views/Signer/components/RequestOrigin', () => {
|
|
it('renders unknown', () => {
|
|
expect(shallow(
|
|
<RequestOrigin origin={ { type: 'unknown', details: '' } } />,
|
|
context
|
|
).find('FormattedMessage').props().id).to.equal('signer.requestOrigin.unknownInterface');
|
|
});
|
|
|
|
it('renders dapps', () => {
|
|
expect(shallow(
|
|
<RequestOrigin origin={ { type: 'dapp', details: 'http://parity.io' } } />,
|
|
context
|
|
).find('FormattedMessage').props().id).to.equal('signer.requestOrigin.dapp');
|
|
});
|
|
|
|
it('renders rpc', () => {
|
|
expect(shallow(
|
|
<RequestOrigin origin={ { type: 'rpc', details: '' } } />,
|
|
context
|
|
).find('FormattedMessage').props().id).to.equal('signer.requestOrigin.rpc');
|
|
});
|
|
|
|
it('renders ipc', () => {
|
|
expect(shallow(
|
|
<RequestOrigin origin={ { type: 'ipc', details: '0x1234' } } />,
|
|
context
|
|
).find('FormattedMessage').props().id).to.equal('signer.requestOrigin.ipc');
|
|
});
|
|
|
|
it('renders signer', () => {
|
|
expect(shallow(
|
|
<RequestOrigin origin={ { type: 'signer', details: '0x12345' } } />,
|
|
context
|
|
).find('FormattedMessage').props().id).to.equal('signer.requestOrigin.signerUI');
|
|
|
|
expect(shallow(
|
|
<RequestOrigin origin={ { type: 'signer', details: '0x1234' } } />,
|
|
context
|
|
).find('FormattedMessage').props().id).to.equal('signer.requestOrigin.signerCurrent');
|
|
});
|
|
});
|