mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
d9b422cfbc
a0cfa3c version upgrade e58e2f5 jsonrpc.js tests && jsonrpc response validation is more strict 45134de jsonrpc.js file && batch polling f3ce1f0 simplified polling && jsonrpc payload creation ddc1719 tests && fixes for utils methods fdcc1af clearing tests 4a54b8c version upgrade 0.0.12 git-subtree-dir: libjsqrc/ethereumjs git-subtree-split: a0cfa3ca21163f26f3f71a0e2ce0a1e617554c72
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
var assert = require('assert');
|
|
var jsonrpc = require('../lib/jsonrpc');
|
|
|
|
describe('jsonrpc', function () {
|
|
describe('toPayload', function () {
|
|
it('should create basic payload', function () {
|
|
|
|
// given
|
|
var method = 'helloworld';
|
|
|
|
// when
|
|
var payload = jsonrpc.toPayload(method);
|
|
|
|
// then
|
|
assert.equal(payload.jsonrpc, '2.0');
|
|
assert.equal(payload.method, method);
|
|
assert.equal(payload.params instanceof Array, true);
|
|
assert.equal(payload.params.length, 0);
|
|
assert.equal(typeof payload.id, 'number');
|
|
});
|
|
|
|
it('should create payload with params', function () {
|
|
|
|
// given
|
|
var method = 'helloworld1';
|
|
var params = [123, 'test'];
|
|
|
|
// when
|
|
var payload = jsonrpc.toPayload(method, params);
|
|
|
|
// then
|
|
assert.equal(payload.jsonrpc, '2.0');
|
|
assert.equal(payload.method, method);
|
|
assert.equal(payload.params.length, 2);
|
|
assert.equal(payload.params[0], params[0]);
|
|
assert.equal(payload.params[1], params[1]);
|
|
assert.equal(typeof payload.id, 'number');
|
|
});
|
|
});
|
|
});
|