-
Notifications
You must be signed in to change notification settings - Fork 457
Functional tx test type 2 - Closes #830 #839
Conversation
3307bdf
to
92559a7
Compare
test/common/apiHelpers.js
Outdated
getAccounts: getAccounts, | ||
getAccountsPromise: getAccountsPromise, | ||
getPublicKey: getPublicKey, | ||
getBalancePromise: getBalancePromise, | ||
getBalance: getBalance, | ||
getPublicKeyPromise: getPublicKeyPromise | ||
}; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newline
getJsonForKeyPromise = node.Promise.promisify(cache.getJsonForKey); | ||
node.expect(err).to.not.exist; | ||
node.expect(__cache).to.be.an('object'); | ||
return done(err, __cache); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why return __cache
here?
cache.flushDb(function (err, status) { | ||
node.expect(err).to.not.exist; | ||
node.expect(status).to.equal('OK'); | ||
done(err, status); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why return status
?
it('using orderBy == "unknown:asc" should fail', function (done) { | ||
var orderBy = 'unknown:asc'; | ||
var params = 'orderBy=' + orderBy; | ||
it('using orderBy == "unknown:asc" should fail', function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why ==
? globally
for (var i = 0; i < res.body.delegates.length; i++) { | ||
if (res.body.delegates[i + 1] != null) { | ||
node.expect(res.body.delegates[i].rank).to.be.at.above(res.body.delegates[i + 1].rank); | ||
it('using orderBy == "rank:desc" should be ok', function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw, maybe change structure to something like:
describe('using orderBy'...
it('rank:desc should be ok'...
|
||
http.get('/api/delegates/forging/ge |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newline
@@ -32,8 +32,8 @@ describe('GET /api/transactions', function () { | |||
before(function () { | |||
|
|||
var promises = []; | |||
promises.push(creditAccountPromise(account.address, 100*100000000)); | |||
promises.push(creditAccountPromise(account2.address, 20*100000000)); | |||
promises.push(creditAccountPromise(account.address, 100 * 100000000)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use node.normalizer
(name is not the best one) or maybe something from constants
for calculations
@@ -321,7 +318,7 @@ describe('GET /api/transactions', function () { | |||
}); | |||
|
|||
it('using no params should be ok', function () { | |||
return getTransactionsPromise([]).then(function (res) { | |||
return getTransactionsPromise(null).then(function (res) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intended?
node.expect(res).to.have.property('success').to.be.ok; | ||
node.expect(res).to.have.property('transactions').that.is.an('array'); | ||
|
||
var dividedIndices = res.transactions.reduce(function (memo, peer, index) { | ||
memo[peer[sortField] === null ? 'nullIndices' : 'notNullIndices'].push(index); | ||
return memo; | ||
}, {notNullIndices: [], nullIndices: []}); | ||
}, { notNullIndices: [], nullIndices: [] }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why spaces here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Eslint does not complain, my editor suggested me.
@@ -266,13 +266,13 @@ node.expectedFeeForTrsWithData = function (amount) { | |||
|
|||
// Returns a random username of 16 characters | |||
node.randomUsername = function () { | |||
var randomLetter = randomString.generate({ | |||
var randomLetter = node.randomString.generate({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why first char need to be alphabetic lowercase?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's just a choice. How would you make it?
d9990ae
to
ae798db
Compare
node.expect(err).to.not.exist; | ||
node.expect(res).to.eql(response); | ||
done(err, res); | ||
return getDelegatesPromise(null).then(function (res) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to pass null
949164f
to
1b4500c
Compare
1b4500c
to
1671f5d
Compare
@@ -5,6 +5,15 @@ var lisk = require('lisk-js'); | |||
var node = require('../node'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a comment - please don't consider it as a requested changes but a thing to keep in mind for the future - the file is already big and it is pretty hard to find the functions.
Maybe it is better to organize it in a json structure like:
transactions: {
get: function () ....
getUnconfirmed: function () ....
}
delegates: {
register: function () {....
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. It is time to think out a better way. I am prioritising the inclusion of the tests first to see the final picture.
|
||
http.get('/api/delegates/forging/getForgedByAccount?' + buildParams(), function (err, res) { | ||
node.expect(res. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test description says no end, and the test has end
property.
2e90679
Closes #830