Rework remote.js to be event oriented.

This commit is contained in:
Arthur Britto
2012-10-13 19:38:19 -07:00
parent fbd8f9deb7
commit 1c2d16f1ad
2 changed files with 578 additions and 333 deletions

View File

@@ -9,6 +9,7 @@
// Node // Node
var util = require('util'); var util = require('util');
var events = require('events');
// npm // npm
var WebSocket = require('ws'); var WebSocket = require('ws');
@@ -16,6 +17,68 @@ var WebSocket = require('ws');
var amount = require('./amount.js'); var amount = require('./amount.js');
var Amount = amount.Amount; var Amount = amount.Amount;
// Events emmitted:
// 'success'
// 'error'
// 'remoteError'
// 'remoteUnexpected'
// 'remoteDisconnected'
var Request = function (remote, command) {
this.message = {
'command' : command,
'id' : undefined,
};
this.remote = remote;
this.on('request', this.request_default);
};
Request.prototype = new events.EventEmitter;
// Return this. node EventEmitter's on doesn't return this.
Request.prototype.on = function (e, c) {
events.EventEmitter.prototype.on.call(this, e, c);
return this;
};
// Send the request to a remote.
Request.prototype.request = function (remote) {
this.emit('request', remote);
};
Request.prototype.request_default = function () {
this.remote.request(this);
};
// Set the ledger for a request.
// - ledger_entry
Request.prototype.ledger = function (ledger) {
this.message.ledger = ledger;
return this;
};
// Set the ledger_index for a request.
// - ledger_entry
Request.prototype.ledger_index = function (ledger_index) {
this.message.ledger_index = ledger_index;
return this;
};
Request.prototype.account_root = function (account) {
this.message.account_root = account;
return this;
};
Request.prototype.index = function (hash) {
this.message.index = hash;
return this;
};
// --> trusted: truthy, if remote is trusted // --> trusted: truthy, if remote is trusted
var Remote = function (trusted, websocket_ip, websocket_port, config, trace) { var Remote = function (trusted, websocket_ip, websocket_port, config, trace) {
this.trusted = trusted; this.trusted = trusted;
@@ -44,8 +107,11 @@ var Remote = function (trusted, websocket_ip, websocket_port, config, trace) {
}; };
}; };
Remote.prototype = new events.EventEmitter;
var remoteConfig = function (config, server, trace) { var remoteConfig = function (config, server, trace) {
var serverConfig = config.servers[server]; var serverConfig = config.servers[server];
return new Remote(serverConfig.trusted, serverConfig.websocket_ip, serverConfig.websocket_port, config, trace); return new Remote(serverConfig.trusted, serverConfig.websocket_ip, serverConfig.websocket_port, config, trace);
}; };
@@ -80,27 +146,33 @@ Remote.prototype.connect_helper = function () {
ws.response = {}; ws.response = {};
ws.onopen = function () { ws.onopen = function () {
if (this.trace) console.log("remote: onopen: %s", ws.readyState); if (self.trace) console.log("remote: onopen: %s", ws.readyState);
ws.onclose = undefined; ws.onclose = undefined;
ws.onerror = undefined; ws.onerror = undefined;
clearTimeout(self.connect_timer); delete self.connect_timer;
clearTimeout(self.retry_timer); delete self.retry_timer;
self.done(ws.readyState); self.done(ws.readyState);
}; };
ws.onerror = function () { ws.onerror = function () {
if (this.trace) console.log("remote: onerror: %s", ws.readyState); if (self.trace) console.log("remote: onerror: %s", ws.readyState);
ws.onclose = undefined; ws.onclose = undefined;
if (self.expire) { if (self.expire) {
if (this.trace) console.log("remote: was expired"); if (self.trace) console.log("remote: was expired");
self.done(ws.readyState); self.done(ws.readyState);
} else { } else {
// Delay and retry. // Delay and retry.
setTimeout(function () {
if (this.trace) console.log("remote: retry"); clearTimeout(self.retry_timer);
self.retry_timer = setTimeout(function () {
if (self.trace) console.log("remote: retry");
self.connect_helper(); self.connect_helper();
}, 50); // Retry rate 50ms. }, 50); // Retry rate 50ms.
@@ -109,32 +181,96 @@ Remote.prototype.connect_helper = function () {
// Covers failure to open. // Covers failure to open.
ws.onclose = function () { ws.onclose = function () {
if (this.trace) console.log("remote: onclose: %s", ws.readyState); if (self.trace) console.log("remote: onclose: %s", ws.readyState);
ws.onerror = undefined; ws.onerror = undefined;
clearTimeout(self.retry_timer);
delete self.retry_timer;
self.done(ws.readyState); self.done(ws.readyState);
}; };
// Node's ws module doesn't pass arguments to onmessage. // Node's ws module doesn't pass arguments to onmessage.
ws.on('message', function (json, flags) { ws.on('message', function (json, flags) {
var message = JSON.parse(json); var message = JSON.parse(json);
// console.log("message: %s", json); var unexpected = false;
var request;
if (message.type !== 'response') { if ('object' !== typeof message) {
console.log("unexpected message: %s", json); unexpected = true;
} else {
var done = ws.response[message.id];
if (done) {
done(message);
} else {
console.log("unexpected message id: %s", json);
} }
else {
switch (message.type) {
case 'response':
{
request = ws.response[message.id];
if (!request) {
unexpected = true;
}
else if ('success' === message.result) {
if (self.trace) console.log("message: %s", json);
request.emit('success', message);
}
else if (message.error) {
if (self.trace) console.log("message: %s", json);
request.emit('error', {
'error' : 'remoteError',
'error_message' : 'Remote reported an error.',
'remote' : message,
});
}
}
case 'ledgerClosed':
// XXX If not trusted, need to verify we consider ledger closed.
// XXX Also need to consider a slow server or out of order response.
// XXX Be more defensive fields could be missing or of wrong type.
// YYY Might want to do some cache management.
self.ledger_closed = message.ledger_closed;
self.ledger_current_index = message.ledger_closed_index + 1;
self.emit('ledger_closed');
break;
default:
unexpected = true;
break;
}
}
if (!unexpected) {
}
// Unexpected response from remote.
// XXX This isn't so robust. Hard fails should probably only happen in a debugging scenairo.
else if (self.trusted) {
// Remote is trusted, report an error.
console.log("unexpected message from trusted remote: %s", json);
(request || self).emit('error', {
'error' : 'remoteUnexpected',
'error_message' : 'Unexpected response from remote.'
});
}
else {
// Treat as a disconnect.
if (self.trace) console.log("unexpected message from untrusted remote: %s", json);
// XXX All pending request need this treatment and need to actionally disconnect.
(request || self).emit('error', {
'error' : 'remoteDisconnected',
'error_message' : 'Remote disconnected.'
});
} }
}); });
}; };
// Target state is connectted. // Target state is connectted.
// XXX Get rid of 'done' use event model.
// done(readyState): // done(readyState):
// --> readyState: OPEN, CLOSED // --> readyState: OPEN, CLOSED
Remote.prototype.connect = function (done, timeout) { Remote.prototype.connect = function (done, timeout) {
@@ -148,10 +284,13 @@ Remote.prototype.connect = function (done, timeout) {
this.expire = false; this.expire = false;
setTimeout(function () { this.connect_timer = setTimeout(function () {
if (self.trace) console.log("remote: expire: timeout"); if (self.trace) console.log("remote: expire: timeout");
delete self.connect_timer;
self.expire = true; self.expire = true;
}, timeout); }, timeout);
} else { } else {
if (this.trace) console.log("remote: expire: false"); if (this.trace) console.log("remote: expire: false");
this.expire = true; this.expire = true;
@@ -173,125 +312,138 @@ Remote.prototype.disconnect = function (done) {
ws.close(); ws.close();
}; };
// Send a request. The request should lack the id. // Send a request.
// <-> request: what to send, consumed. // <-> request: what to send, consumed.
Remote.prototype.request = function (request, onDone, onFailure) { Remote.prototype.request = function (request) {
var self = this; var self = this;
this.ws.response[request.message.id = this.id] = request;
this.id += 1; // Advance id. this.id += 1; // Advance id.
request.id = this.id; if (this.trace) console.log("remote: request: %s", JSON.stringify(request.message));
this.ws.response[request.id] = function (response) { this.ws.send(JSON.stringify(request.message));
if (self.trace) console.log("remote: response: %s", JSON.stringify(response));
if (onFailure && response.error)
{
onFailure(response);
}
else
{
onDone(response);
}
}; };
if (this.trace) console.log("remote: request: %s", JSON.stringify(request)); Remote.prototype.request_ledger_closed = function () {
this.ws.send(JSON.stringify(request));
};
Remote.prototype.request_ledger_closed = function (onDone, onFailure) {
assert(this.trusted); // If not trusted, need to check proof. assert(this.trusted); // If not trusted, need to check proof.
this.request({ 'command' : 'ledger_closed' }, onDone, onFailure);
return new Request(this, 'ledger_closed');
}; };
// Get the current proposed ledger entry. May be closed (and revised) at any time (even before returning). // Get the current proposed ledger entry. May be closed (and revised) at any time (even before returning).
// Only for use by unit tests. // Only for use by unit tests.
Remote.prototype.request_ledger_current = function (onDone, onFailure) { Remote.prototype.request_ledger_current = function () {
this.request({ 'command' : 'ledger_current' }, onDone, onFailure); return new Request(this, 'ledger_current');
}; };
// <-> request: // <-> request:
// --> ledger : optional // --> ledger : optional
// --> ledger_index : optional // --> ledger_index : optional
// --> type Remote.prototype.request_ledger_entry = function (type) {
Remote.prototype.request_ledger_entry = function (req, onDone, onFailure) {
var self = this;
assert(this.trusted); // If not trusted, need to check proof, maybe talk packet protocol. assert(this.trusted); // If not trusted, need to check proof, maybe talk packet protocol.
req.command = 'ledger_entry'; var self = this;
var request = new Request(this, 'ledger_entry');
if (req.ledger_closed) if (type)
{ this.type = type;
// Transparent caching:
request.on('request', function (remote) { // Intercept default request.
if (this.ledger_closed) {
// XXX Initial implementation no caching. // XXX Initial implementation no caching.
this.request(req, onDone, onFailure);
} }
// else if (req.ledger_index) // else if (req.ledger_index)
else else if ('account_root' === this.type) {
{ var cache = self.ledgers.current.account_root;
// Current
// XXX Only allow with standalone mode. Must sync response with advance.
var entry;
switch (req.type) {
case 'account_root':
var cache = this.ledgers.current.account_root;
if (!cache) if (!cache)
{ {
cache = this.ledgers.current.account_root = {}; cache = self.ledgers.current.account_root = {};
} }
entry = this.ledgers.current.account_root[req.account]; var node = self.ledgers.current.account_root[request.message.account_root];
break;
default: if (node) {
// This type not cached. // Emulate fetch of ledger entry.
this.request.emit('success', {
// YYY Missing lots of fields.
'node' : node,
});
} }
else {
// Was not cached.
if (entry) // XXX Only allow with trusted mode. Must sync response with advance.
{ switch (response.type) {
onDone(entry);
}
else
{
// Not cached.
// Submit request
this.request(req, function (r) {
// Got result.
switch (req.type) {
case 'account_root': case 'account_root':
self.ledgers.current.account_root[r.node.Account] = r.node; request.on('success', function (message) {
// Cache node.
self.ledgers.current.account_root[message.node.Account] = message.node;
});
break; break;
default: default:
// This type not cached. // This type not cached.
// nothing();
break;
} }
onDone(r.node);
}, onFailure); this.request_default(remote);
} }
} }
});
return request;
}; };
// Submit a json transaction. // Submit a transaction.
// done(value) Remote.prototype.submit = function (transaction) {
// XXX <-> value: { 'status', status, 'result' : result, ... } debugger;
Remote.prototype.submit = function (req, onDone, onFailure) { var self = this;
if (this.trace) console.log("remote: submit: %s", JSON.stringify(req));
req.command = 'submit'; if (this.trace) console.log("remote: submit: %s", JSON.stringify(transaction.transaction));
if (req.secret && !this.trusted) if (transaction.secret && !this.trusted)
{ {
onFailure({ 'error' : 'untrustedSever', 'request' : req }); transaction.emit('error', {
'result' : 'serverUntrusted',
'result_message' : "Attempt to give a secret to an untrusted server."
});
}
else {
if (!transaction.transaction.Sequence) {
transaction.transaction.Sequence = this.account_seq(transaction.transaction.Account, 'ADVANCE');
}
if (!transaction.transaction.Sequence) {
var cache_request = this.account_cache(transaction.transaction.Account);
cache_request.on('success_account_cache', function () {
// Try again.
self.submit(transaction);
});
cache_request.on('error', function (message) {
// Forward errors.
transaction.emit('error', message);
});
cache_request.request();
}
else {
var submit_request = new Request(this, 'submit');
// Forward successes and errors.
submit_request.on('success', function (message) { transaction.emit('success', message); });
submit_request.on('error', function (message) { transaction.emit('error', message); });
// XXX If transaction has a 'final' event listeners, register transaction to listen to final results.
// XXX Final messages only happen if a transaction makes it into a ledger.
// XXX A transaction may be "lost" or even resubmitted in this case.
// XXX For when ledger closes, can look up transaction meta data.
submit_request.request();
} }
else
{
this.request(req, onDone, onFailure);
} }
}; };
@@ -299,195 +451,246 @@ Remote.prototype.submit = function (req, onDone, onFailure) {
// Higher level functions. // Higher level functions.
// //
// Subscribe to a server to get the current and closed ledger. // Subscribe to a server to get 'ledger_closed' events.
// XXX Set up routine to update on notification. // 'subscribed' : This command was successful.
Remote.prototype.server_subscribe = function (onDone, onFailure) { // 'ledger_closed : ledger_closed and ledger_current_index are updated.
Remote.prototype.server_subscribe = function () {
var self = this; var self = this;
this.request( var request = new Request(this, 'server_subscribe');
{ 'command' : 'server_subscribe' },
function (r) { request.on('success', function (message) {
self.ledger_current_index = r.ledger_current_index; self.ledger_current_index = message.ledger_current_index;
self.ledger_closed = r.ledger_closed; self.ledger_closed = message.ledger_closed;
self.stand_alone = r.stand_alone; self.stand_alone = message.stand_alone;
onDone();
}, self.emit('subscribed');
onFailure
); self.emit('ledger_closed');
});
// XXX Could give error events, maybe even time out.
return this;
}; };
Remote.prototype.ledger_accept = function (onDone, onFailure) { // Ask the remote to accept the current ledger.
// - To be notified when the ledger is accepted, server_subscribe() then listen to 'ledger_closed' events.
Remote.prototype.ledger_accept = function () {
if (this.stand_alone) if (this.stand_alone)
{ {
this.request( var request = new Request(this, 'ledger_accept');
{ 'command' : 'ledger_accept' },
onDone, request.request();
onFailure
);
} }
else { else {
onFailure({ 'error' : 'notStandAlone' }); self.emit('error', {
'error' : 'notStandAlone'
});
} }
return this;
}; };
// Refresh accounts[account].seq // Return the next account sequence if possible.
// done(result); // <-- undefined or Sequence
Remote.prototype.account_seq = function (account, advance, onDone, onFailure) { Remote.prototype.account_seq = function (account, advance) {
var self = this; var account_info = this.accounts[account];
var account_root_entry = this.accounts[account]; var seq;
if (account_root_entry && account_root_entry.seq) if (account_info && account_info.seq)
{ {
var seq = account_root_entry.seq; var seq = account_info.seq;
if (advance) account_root_entry.seq += 1; if (advance) account_root_entry.seq += 1;
onDone(seq);
} }
else
{
// Need to get the ledger entry.
this.request_ledger_entry(
{
'ledger' : this.ledger_closed,
'type' : 'account_root',
'account_root' : account
},
function (node) {
// Extract the seqence number from the account root entry.
var seq = node.Sequence;
if (!account_root_entry) self.accounts[account] = {}; return seq;
self.accounts[account].seq = seq + !!advance;
onDone(seq);
},
onFailure
);
} }
};
// A submit that fills in the sequence number. // Return a request to refresh accounts[account].seq.
Remote.prototype.submit_seq = function (trans, onDirty, onDone, onFailure) { Remote.prototype.account_cache = function (account) {
var self = this; var self = this;
var request = this.request_ledger_entry('account_root')
// Get the next sequence number for the account. // Only care about a closed ledger.
this.account_seq(trans.transaction.Account, true, // YYY Might be more advanced and work with a changing current ledger.
function (seq) { request.ledger_closed = this.ledger_closed;
trans.transaction.Sequence = seq; request.account_root = account;
self.submit(trans, onDone, onFailure);
}, request.on('success', function (message) {
onFailure); var seq = message.node.Sequence;
self.accounts[account].seq = seq;
// If the caller also waits for 'success', they might run before this.
request.emit('success_account_cache');
});
return request;
}; };
// Mark an account's root node as dirty. // Mark an account's root node as dirty.
Remote.prototype.dirty_account_root = function (account) { Remote.prototype.dirty_account_root = function (account) {
delete this.ledgers.current.account_root.account; delete this.ledgers.current.account_root[account];
};
Remote.prototype.transaction = function () {
return new Transaction(this);
}; };
// //
// Transactions // Transactions
// //
Remote.prototype.offer_create = function (secret, src, taker_pays, taker_gets, expiration, onDone) { // A class to implement transactions.
var secret = this.config.accounts[src] ? this.config.accounts[src].secret : secret; // - Collects parameters
var src_account = this.config.accounts[src] ? this.config.accounts[src].account : src; // - Allow event listeners to be attached to determine the outcome.
var Transaction = function (remote) {
this.prototype = events.EventEmitter; // XXX Node specific.
var transaction = { this.remote = remote;
'TransactionType' : 'OfferCreate', this.secret = undefined;
'Account' : src_account, this.transaction = {}; // Transaction data.
'Fee' : fees.offer.to_json(),
'TakerPays' : taker_pays.to_json(),
'TakerGets' : taker_gets.to_json(),
}; };
Transaction.prototype = new events.EventEmitter;
// Return this. node EventEmitter's on doesn't return this.
Transaction.prototype.on = function (e, c) {
events.EventEmitter.prototype.on.call(this, e, c);
return this;
};
// Submit a transaction to the network.
Transaction.prototype.submit = function () {
var transaction = this.transaction;
// Fill in secret from config, if needed.
if (undefined === transaction.secret && this.remote.config.accounts[this.Account]) {
this.secret = this.remote.config.accounts[this.Account].secret;
}
if (undefined === transaction.Fee) {
if ('Payment' === transaction.TransactionType
&& transaction.Flags & exports.flags.Payment.CreateAccount) {
transaction.Fee = fees.account_create.to_json();
}
else {
transaction.Fee = fees['default'].to_json();
}
}
this.remote.submit(this);
return this;
}
//
// Set options for Transactions
//
// If the secret is in the config object, it does not need to be provided.
Transaction.prototype.secret = function (secret) {
this.secret = secret;
}
Transaction.prototype.send_max = function (send_max) {
if (send_max)
this.transaction.SendMax = send_max.to_json();
return this;
}
// Add flags to a transaction.
// --> flags: undefined, _flag_, or [ _flags_ ]
Transaction.prototype.flags = function (flags) {
if (flags) {
var transaction_flags = exports.flags[this.transaction.TransactionType];
if (undefined == this.transaction.Flags)
this.transaction.Flags = 0;
for (flag in 'object' === typeof flags ? flags : [ flags ]) {
if (flag in transaction_flags)
{
this.transaction.Flags += transaction_flags[flag];
}
else {
// XXX Immediately report an error or mark it.
}
}
if (this.transaction.Flags & exports.flags.Payment.CreateAccount)
this.transaction.Fee = fees.account_create.to_json();
}
return this;
}
//
// Transactions
//
// remote.transaction() // Build a transaction object.
// .offer_create(...) // Set major parameters.
// .flags() // Set optional parameters.
// .on() // Register for events.
// .submit(); // Send to network.
//
// Allow config account defaults to be used.
Transaction.prototype.account_default = function (account) {
return this.remote.config.accounts[account] ? this.remote.config.accounts[account].account : account;
};
Transaction.prototype.offer_create = function (src, taker_pays, taker_gets, expiration) {
this.transaction.TransactionType = 'OfferCreate';
this.transaction.Account = this.account_default(src);
this.transaction.Amount = deliver_amount.to_json();
this.transaction.Destination = dst_account;
this.transaction.Fee = fees.offer.to_json();
this.transaction.TakerPays = taker_pays.to_json();
this.transaction.TakerGets = taker_gets.to_json();
if (expiration) if (expiration)
transaction.Expiration = expiration; this.transaction.Expiration = expiration;
this.submit_seq( return this;
{
'transaction' : transaction,
'secret' : secret,
}, function () {
}, onDone);
}; };
Remote.prototype.ripple_line_set = function (secret, src, limit, quaility_in, quality_out, onDone) { // Construct a 'payment' transaction.
var secret = this.config.accounts[src] ? this.config.accounts[src].secret : secret;
var src_account = this.config.accounts[src] ? this.config.accounts[src].account : src;
var transaction = {
'TransactionType' : 'CreditSet',
'Account' : src_account,
'Fee' : fees['default'].to_json(),
};
if (limit)
transaction.LimitAmount = limit.to_json();
if (quaility_in)
transaction.QualityIn = quaility_in;
if (quaility_out)
transaction.QualityOut = quaility_out;
this.submit_seq(
{
'transaction' : transaction,
'secret' : secret,
}, function () {
}, onDone);
};
// --> create: is only valid if destination gets XNS.
// --> flags: undefined, _flag_, or [ _flags_ ]
// //
// When a transaction is submitted: // When a transaction is submitted:
// - If the connection is reliable and the server is not merely forwarding and is not malicious, // - If the connection is reliable and the server is not merely forwarding and is not malicious,
// The server will report the initial transaction engine result. Transaction.prototype.payment = function (src, dst, deliver_amount) {
// - For the final disposition of the transaction, the ledger will need to be monitored.
// Use on onFinal() for the final disposition.
// The ledger must close for any onFinal() to be called.
Remote.prototype.send = function (secret, src, dst, deliver_amount, send_max, flags, onDone) {
var secret = this.config.accounts[src] ? this.config.accounts[src].secret : secret;
var src_account = this.config.accounts[src] ? this.config.accounts[src].account : src;
var dst_account = this.config.accounts[dst] ? this.config.accounts[dst].account : dst;
var transaction = { this.transaction.TransactionType = 'Payment';
'TransactionType' : 'Payment', this.transaction.Account = this.account_default(src);
'Account' : src_account, this.transaction.Amount = deliver_amount.to_json();
'Fee' : fees['default'].to_json(), this.transaction.Destination = this.account_default(dst);
'Destination' : dst_account,
'Amount' : deliver_amount.to_json(),
};
if (flags) { return this;
transaction.Flags = 0;
for (flag in 'object' === typeof flags ? flags : [ flags ]) {
if (flag in exports.flags.Payment)
{
transaction.Flags += exports.flags.Payment[flag];
}
else {
// XXX Immediately report an error.
}
} }
if (transaction.Flags & exports.flags.Payment.CreateAccount) Remote.prototype.ripple_line_set = function (src, limit, quaility_in, quality_out) {
transaction.Fee = fees.account_create.to_json(); this.transaction.TransactionType = 'CreditSet';
} this.transaction.Account = this.account_default(src);
if (send_max) // Allow limit of 0 through.
transaction.SendMax = send_max.to_json(); if (undefined !== limit)
this.transaction.LimitAmount = limit.to_json();
this.submit_seq( if (quaility_in)
{ this.transaction.QualityIn = quaility_in;
'transaction' : transaction,
'secret' : secret, if (quaility_out)
}, function () { this.transaction.QualityOut = quaility_out;
}, onDone);
// XXX Throw an error if nothing is set.
return this;
}; };
exports.Remote = Remote; exports.Remote = Remote;

View File

@@ -59,7 +59,7 @@ buster.testCase("WebSocket connection", {
}, },
}); });
buster.testCase("Websocket commands", { buster.testCase("Remote functions", {
'setUp' : 'setUp' :
function (done) { function (done) {
server.start("alpha", server.start("alpha",
@@ -87,114 +87,156 @@ buster.testCase("Websocket commands", {
}); });
}, },
'ledger_current' : 'request_ledger_current' :
function (done) { function (done) {
alpha.request_ledger_current(function (r) { alpha.request_ledger_current().on('success', function (m) {
console.log(r); console.log(m);
buster.assert.equals(r.ledger_current_index, 3); buster.assert.equals(m.ledger_current_index, 3);
done(); done();
}); }).on('error', function(m) {
console.log(m);
buster.assert(false);
}).request();
}, },
'ledger_closed' : 'request_ledger_closed' :
function (done) { function (done) {
alpha.request_ledger_closed(function (r) { alpha.request_ledger_closed().on('success', function (m) {
console.log("result: %s", JSON.stringify(r)); console.log("result: %s", JSON.stringify(m));
buster.assert.equals(r.ledger_closed_index, 2); buster.assert.equals(m.ledger_closed_index, 2);
done(); done();
}); }).on('error', function(m) {
console.log(m);
buster.assert(false);
}).request();
}, },
'account_root success' : 'manual account_root success' :
function (done) { function (done) {
alpha.request_ledger_closed(function (r) { alpha.request_ledger_closed().on('success', function (r) {
// console.log("result: %s", JSON.stringify(r)); // console.log("result: %s", JSON.stringify(r));
buster.refute(r.error); alpha
.request_ledger_entry('account_root')
alpha.request_ledger_entry({ .ledger(r.ledger_closed)
'ledger_closed' : r.ledger_closed, .account_root("rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh")
'type' : 'account_root', .on('success', function (r) {
'account_root' : 'rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh'
} , function (r) {
// console.log("account_root: %s", JSON.stringify(r)); // console.log("account_root: %s", JSON.stringify(r));
buster.assert('node' in r); buster.assert('node' in r);
done(); done();
}); }).on('error', function(m) {
}); console.log(m);
buster.assert(false);
}).request();
}).on('error', function(m) {
console.log(m);
buster.assert(false);
}).request();
}, },
'account_root malformedAddress' : 'account_root remote malformedAddress' :
function (done) { function (done) {
alpha.request_ledger_closed(function (r) { alpha.request_ledger_closed().on('success', function (r) {
// console.log("result: %s", JSON.stringify(r)); console.log("result: %s", JSON.stringify(r));
buster.refute(r.error); alpha
.request_ledger_entry('account_root')
alpha.request_ledger_entry({ .ledger(r.ledger_closed)
'ledger_closed' : r.ledger_closed, .account_root("zHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh")
'type' : 'account_root', .on('success', function (r) {
'account_root' : 'foobar'
} , function (r) {
// console.log("account_root: %s", JSON.stringify(r)); // console.log("account_root: %s", JSON.stringify(r));
buster.assert.equals(r.error, 'malformedAddress'); buster.assert(false);
}).on('error', function(m) {
console.log(m);
buster.assert.equals(m.error, 'remoteError');
buster.assert.equals(m.remote.error, 'malformedAddress');
done(); done();
}); }).request();
}); }).on('error', function(m) {
console.log(m);
buster.assert(false);
}).request();
}, },
'account_root entryNotFound' : 'account_root entryNotFound' :
function (done) { function (done) {
alpha.request_ledger_closed(function (r) { alpha.request_ledger_closed().on('success', function (r) {
console.log("result: %s", JSON.stringify(r)); console.log("result: %s", JSON.stringify(r));
buster.refute(r.error); alpha
.request_ledger_entry('account_root')
.ledger(r.ledger_closed)
.account_root(config.accounts.alice.account)
.on('success', function (r) {
// console.log("account_root: %s", JSON.stringify(r));
alpha.request_ledger_entry({ buster.assert(false);
'ledger_closed' : r.ledger_closed, }).on('error', function(m) {
'type' : 'account_root', console.log(m);
'account_root' : config.accounts.alice.account,
}, function (r) {
console.log("account_root: %s", JSON.stringify(r));
buster.assert.equals(r.error, 'entryNotFound'); buster.assert.equals(m.error, 'remoteError');
buster.assert.equals(m.remote.error, 'entryNotFound');
done(); done();
}); }).request();
}); }).on('error', function(m) {
console.log(m);
buster.assert(false);
}).request();
}, },
'ledger_entry index' : 'ledger_entry index' :
function (done) { function (done) {
alpha.request_ledger_closed(function (r) { alpha.request_ledger_closed().on('success', function (r) {
// console.log("result: %s", JSON.stringify(r)); console.log("result: %s", JSON.stringify(r));
buster.refute(r.error); alpha
.request_ledger_entry('index')
alpha.request_ledger_entry({ .ledger(r.ledger_closed)
'ledger_closed' : r.ledger_closed, .account_root(config.accounts.alice.account)
'type' : 'account_root', .index("2B6AC232AA4C4BE41BF49D2459FA4A0347E1B543A4C92FCEE0821C0201E2E9A8")
'index' : "2B6AC232AA4C4BE41BF49D2459FA4A0347E1B543A4C92FCEE0821C0201E2E9A8", .on('success', function (r) {
} , function (r) { // console.log("account_root: %s", JSON.stringify(r));
console.log("node: %s", JSON.stringify(r));
buster.assert('node_binary' in r); buster.assert('node_binary' in r);
done(); done();
}); }).on('error', function(m) {
}); console.log(m);
buster.assert(false);
}).request();
}).on('error', function(m) {
console.log(m);
buster.assert(false);
}).request();
}, },
'create account' : '// create account' :
function (done) { function (done) {
alpha.send(undefined, 'root', 'alice', Amount.from_json("10000"), undefined, 'CREATE', function (r) { alpha.transaction()
console.log(r); .payment('root', 'alice', Amount.from_json("10000"))
.flags('CreateAccount')
.on('success', function (r) {
// console.log("account_root: %s", JSON.stringify(r));
buster.refute(r.error); // Need to verify account and balance.
done(); done();
}); }).on('error', function(m) {
console.log(m);
buster.assert(false);
}).submit();
}, },
}); });