2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-28 18:09:54 +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/>.
|
|
|
|
|
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import React from 'react';
|
|
|
|
import sinon from 'sinon';
|
|
|
|
|
|
|
|
import AddContract from './';
|
|
|
|
|
2017-01-03 17:41:21 +01:00
|
|
|
import { CONTRACTS, createApi, createRedux } from './addContract.test.js';
|
2016-12-28 18:09:54 +01:00
|
|
|
|
2017-01-03 17:41:21 +01:00
|
|
|
let api;
|
2016-12-28 18:09:54 +01:00
|
|
|
let component;
|
2017-01-03 17:41:21 +01:00
|
|
|
let instance;
|
2016-12-28 18:09:54 +01:00
|
|
|
let onClose;
|
2017-01-03 17:41:21 +01:00
|
|
|
let reduxStore;
|
2016-12-28 18:09:54 +01:00
|
|
|
|
2017-01-03 17:41:21 +01:00
|
|
|
function render (props = {}) {
|
|
|
|
api = createApi();
|
2016-12-28 18:09:54 +01:00
|
|
|
onClose = sinon.stub();
|
2017-01-03 17:41:21 +01:00
|
|
|
reduxStore = createRedux();
|
|
|
|
|
2016-12-28 18:09:54 +01:00
|
|
|
component = shallow(
|
|
|
|
<AddContract
|
|
|
|
{ ...props }
|
|
|
|
contracts={ CONTRACTS }
|
2017-01-18 13:05:01 +01:00
|
|
|
onClose={ onClose }
|
|
|
|
/>,
|
2017-01-03 17:41:21 +01:00
|
|
|
{ context: { store: reduxStore } }
|
|
|
|
).find('AddContract').shallow({ context: { api } });
|
|
|
|
instance = component.instance();
|
2016-12-28 18:09:54 +01:00
|
|
|
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('modals/AddContract', () => {
|
|
|
|
describe('rendering', () => {
|
|
|
|
beforeEach(() => {
|
2017-01-03 17:41:21 +01:00
|
|
|
render();
|
2016-12-28 18:09:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the defauls', () => {
|
|
|
|
expect(component).to.be.ok;
|
|
|
|
});
|
|
|
|
});
|
2017-01-03 17:41:21 +01:00
|
|
|
|
|
|
|
describe('onAdd', () => {
|
|
|
|
it('calls store addContract', () => {
|
|
|
|
sinon.stub(instance.store, 'addContract').resolves(true);
|
|
|
|
return instance.onAdd().then(() => {
|
|
|
|
expect(instance.store.addContract).to.have.been.called;
|
|
|
|
instance.store.addContract.restore();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls closes dialog on success', () => {
|
|
|
|
sinon.stub(instance.store, 'addContract').resolves(true);
|
|
|
|
return instance.onAdd().then(() => {
|
|
|
|
expect(onClose).to.have.been.called;
|
|
|
|
instance.store.addContract.restore();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds newError on failure', () => {
|
|
|
|
sinon.stub(instance.store, 'addContract').rejects('test');
|
|
|
|
return instance.onAdd().then(() => {
|
|
|
|
expect(reduxStore.dispatch).to.have.been.calledWith({ error: new Error('test'), type: 'newError' });
|
|
|
|
instance.store.addContract.restore();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2016-12-28 18:09:54 +01:00
|
|
|
});
|