openethereum/js/src/jsonrpc/index.spec.js
Gav Wood 10b0898bdf
Crate tidyups.
- Move Updater into its own crate.
- Change ethcore -> parity in authors, homepages and licenses.
2016-12-11 19:14:42 +01:00

63 lines
2.0 KiB
JavaScript

// 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 interfaces from './';
import { Address, BlockNumber, Data, Hash, Integer, Quantity } from './types';
const flatlist = {};
function verifyType (obj) {
if (typeof obj !== 'string') {
expect(obj).to.satisfy(() => {
return obj.type === Array ||
obj.type === Boolean ||
obj.type === Object ||
obj.type === String ||
obj.type === Address ||
obj.type === BlockNumber ||
obj.type === Data ||
obj.type === Hash ||
obj.type === Integer ||
obj.type === Quantity;
});
}
}
describe('jsonrpc/interfaces', () => {
Object.keys(interfaces).forEach((group) => {
describe(group, () => {
Object.keys(interfaces[group]).forEach((name) => {
const method = interfaces[group][name];
flatlist[`${group}_${name}`] = true;
describe(name, () => {
it('has the correct interface', () => {
expect(method.desc).to.be.a('string');
expect(method.params).to.be.an('array');
expect(method.returns).to.satisfy((returns) => {
return typeof returns === 'string' || typeof returns === 'object';
});
method.params.forEach(verifyType);
verifyType(method.returns);
});
});
});
});
});
});