mirror of https://github.com/status-im/web3.js.git
removed double FakeHTTPProvidor
This commit is contained in:
parent
7fb440579d
commit
a34321d1e4
|
@ -182,15 +182,13 @@ var compileSolidity = new Method({
|
|||
var compileLLL = new Method({
|
||||
name: 'compile.lll',
|
||||
call: 'eth_compileLLL',
|
||||
params: 1,
|
||||
inputFormatter: utils.toHex
|
||||
params: 1
|
||||
});
|
||||
|
||||
var compileSerpent = new Method({
|
||||
name: 'compile.serpent',
|
||||
call: 'eth_compileSerpent',
|
||||
params: 1,
|
||||
inputFormatter: utils.toHex
|
||||
params: 1
|
||||
});
|
||||
|
||||
var flush = new Method({
|
||||
|
|
|
@ -1,58 +0,0 @@
|
|||
var chai = require('chai');
|
||||
var assert = require('assert');
|
||||
var utils = require('../lib/utils/utils');
|
||||
|
||||
var getResponseStub = function () {
|
||||
return {
|
||||
jsonrpc: '2.0',
|
||||
id: 1,
|
||||
result: 0
|
||||
};
|
||||
};
|
||||
|
||||
var FakeHttpProvider = function () {
|
||||
this.response = getResponseStub();
|
||||
this.error = null;
|
||||
this.validation = null;
|
||||
};
|
||||
|
||||
FakeHttpProvider.prototype.send = function (payload) {
|
||||
assert.equal(utils.isArray(payload) || utils.isObject(payload), true);
|
||||
// TODO: validate jsonrpc request
|
||||
if (this.error) {
|
||||
throw this.error;
|
||||
}
|
||||
if (this.validation) {
|
||||
this.validation(payload);
|
||||
}
|
||||
return this.response;
|
||||
};
|
||||
|
||||
FakeHttpProvider.prototype.sendAsync = function (payload, callback) {
|
||||
assert.equal(utils.isArray(payload) || utils.isObject(payload), true);
|
||||
assert.equal(utils.isFunction(callback), true);
|
||||
if (this.validation) {
|
||||
this.validation(payload, callback);
|
||||
}
|
||||
callback(this.error, this.response);
|
||||
};
|
||||
|
||||
FakeHttpProvider.prototype.injectResponse = function (response) {
|
||||
this.response = response;
|
||||
};
|
||||
|
||||
FakeHttpProvider.prototype.injectResult = function (result) {
|
||||
this.response = getResponseStub();
|
||||
this.response.result = result;
|
||||
};
|
||||
|
||||
FakeHttpProvider.prototype.injectError = function (error) {
|
||||
this.error = error;
|
||||
};
|
||||
|
||||
FakeHttpProvider.prototype.injectValidation = function (callback) {
|
||||
this.validation = callback;
|
||||
};
|
||||
|
||||
module.exports = FakeHttpProvider;
|
||||
|
Loading…
Reference in New Issue