forked from LiskArchive/lisk-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.js
492 lines (457 loc) Β· 12.2 KB
/
application.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/*
* Copyright Β© 2018 Lisk Foundation
*
* See the LICENSE file at the top-level directory of this distribution
* for licensing information.
*
* Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation,
* no part of this software, including this file, may be copied, modified,
* propagated, or distributed except according to the terms contained in the
* LICENSE file.
*
* Removal or modification of this copyright notice is prohibited.
*/
'use strict';
// Global imports
var Promise = require('bluebird');
var rewire = require('rewire');
var async = require('async');
var dbRepos = require('../../db/repos');
var swagger = require('../../config/swagger');
var jobsQueue = require('../../helpers/jobs_queue');
var Sequence = require('../../helpers/sequence');
var DBSandbox = require('./db_sandbox').DBSandbox;
var dbSandbox;
var currentAppScope;
function init(options, cb) {
options = options || {};
options.scope = options.scope ? options.scope : {};
// Wait for genesisBlock only if false is provided
options.scope.waitForGenesisBlock = options.waitForGenesisBlock !== false;
if (options.sandbox) {
dbSandbox = new DBSandbox(
options.sandbox.config || __testContext.config.db,
options.sandbox.name
);
dbSandbox.create((err, __db) => {
options.scope.db = __db;
__init(options.scope, cb);
});
} else {
__init(options.scope, cb);
}
}
// Init whole application inside tests
function __init(initScope, done) {
__testContext.debug(
'initApplication: Application initialization inside test environment started...'
);
jobsQueue.jobs = {};
var modules = [];
var rewiredModules = {};
var pgp;
// Init dummy connection with database - valid, used for tests here
var options = {
capSQL: true,
promiseLib: Promise,
// Extending the database protocol with our custom repositories;
// API: http://vitaly-t.github.io/pg-promise/global.html#event:extend
extend(object) {
Object.keys(dbRepos).forEach(repoName => {
object[repoName] = new dbRepos[repoName](object, pgp);
});
},
receive: (/* data, result, e */) => {},
};
var db = initScope.db;
if (!db) {
pgp = require('pg-promise')(options);
__testContext.config.db.user =
__testContext.config.db.user || process.env.USER;
db = pgp(__testContext.config.db);
}
__testContext.debug(
`initApplication: Target database - ${__testContext.config.db.database}`
);
// Clear tables
db
.task(t => {
return t.batch([
t.none('DELETE FROM blocks WHERE height > 1'),
t.none('DELETE FROM blocks'),
t.none('DELETE FROM mem_accounts'),
]);
})
.then(() => {
var logger = initScope.logger || {
trace: sinonSandbox.spy(),
debug: sinonSandbox.spy(),
info: sinonSandbox.spy(),
log: sinonSandbox.spy(),
warn: sinonSandbox.spy(),
error: sinonSandbox.spy(),
};
var modulesInit = {
accounts: '../../modules/accounts.js',
blocks: '../../modules/blocks.js',
dapps: '../../modules/dapps.js',
delegates: '../../modules/delegates.js',
loader: '../../modules/loader.js',
multisignatures: '../../modules/multisignatures.js',
node: '../../modules/node.js',
peers: '../../modules/peers.js',
rounds: '../../modules/rounds.js',
signatures: '../../modules/signatures.js',
system: '../../modules/system.js',
transactions: '../../modules/transactions.js',
transport: '../../modules/transport.js',
voters: '../../modules/voters.js',
};
// Init limited application layer
async.auto(
{
config(cb) {
cb(null, __testContext.config);
},
genesisblock(cb) {
var genesisblock = require('../data/genesis_block.json');
cb(null, { block: genesisblock });
},
schema(cb) {
var z_schema = require('../../helpers/z_schema.js');
cb(null, new z_schema());
},
network(cb) {
// Init with empty function
cb(null, {
io: { sockets: { emit() {} } },
app: require('express')(),
});
},
webSocket: [
'config',
'logger',
'network',
function(scope, cb) {
// Init with empty functions
var MasterWAMPServer = require('wamp-socket-cluster/MasterWAMPServer');
var dummySocketCluster = { on() {} };
var dummyWAMPServer = new MasterWAMPServer(
dummySocketCluster,
{}
);
var wsRPC = require('../../api/ws/rpc/ws_rpc.js').wsRPC;
wsRPC.setServer(dummyWAMPServer);
wsRPC.clientsConnectionsMap = {};
cb();
},
],
logger(cb) {
cb(null, logger);
},
sequence: [
'logger',
function(scope, cb) {
var sequence = new Sequence({
onWarning(current) {
scope.logger.warn('Main queue', current);
},
});
cb(null, sequence);
},
],
balancesSequence: [
'logger',
function(scope, cb) {
var sequence = new Sequence({
onWarning(current) {
scope.logger.warn('Balance queue', current);
},
});
cb(null, sequence);
},
],
swagger: [
'network',
'modules',
'logger',
function(scope, cb) {
swagger(scope.network.app, scope.config, scope.logger, scope, cb);
},
],
ed(cb) {
cb(null, require('../../helpers/ed.js'));
},
bus: [
'ed',
function(scope, cb) {
var changeCase = require('change-case');
var bus =
initScope.bus ||
new function() {
this.message = function() {
var args = [];
Array.prototype.push.apply(args, arguments);
var topic = args.shift();
var eventName = `on${changeCase.pascalCase(topic)}`;
// Iterate over modules and execute event functions (on*)
modules.forEach(module => {
if (typeof module[eventName] === 'function') {
jobsQueue.jobs = {};
module[eventName].apply(module[eventName], args);
}
if (module.submodules) {
async.each(module.submodules, submodule => {
if (
submodule &&
typeof submodule[eventName] === 'function'
) {
submodule[eventName].apply(
submodule[eventName],
args
);
}
});
}
});
};
}();
cb(null, bus);
},
],
db(cb) {
cb(null, db);
},
rpc: [
'db',
'bus',
'logger',
function(scope, cb) {
var wsRPC = require('../../api/ws/rpc/ws_rpc').wsRPC;
var transport = require('../../api/ws/transport');
var MasterWAMPServer = require('wamp-socket-cluster/MasterWAMPServer');
var socketClusterMock = {
on: sinonSandbox.spy(),
};
wsRPC.setServer(new MasterWAMPServer(socketClusterMock));
// Register RPC
var transportModuleMock = { internal: {}, shared: {} };
transport(transportModuleMock);
cb();
},
],
logic: [
'db',
'bus',
'schema',
'network',
'genesisblock',
function(scope, cb) {
var Transaction = require('../../logic/transaction.js');
var Block = require('../../logic/block.js');
var Multisignature = require('../../logic/multisignature.js');
var Account = require('../../logic/account.js');
var Peers = require('../../logic/peers.js');
async.auto(
{
bus(cb) {
cb(null, scope.bus);
},
db(cb) {
cb(null, scope.db);
},
ed(cb) {
cb(null, scope.ed);
},
logger(cb) {
cb(null, scope.logger);
},
schema(cb) {
cb(null, scope.schema);
},
genesisblock(cb) {
cb(null, {
block: scope.genesisblock.block,
});
},
account: [
'db',
'bus',
'ed',
'schema',
'genesisblock',
'logger',
function(scope, cb) {
new Account(scope.db, scope.schema, scope.logger, cb);
},
],
transaction: [
'db',
'bus',
'ed',
'schema',
'genesisblock',
'account',
'logger',
function(scope, cb) {
new Transaction(
scope.db,
scope.ed,
scope.schema,
scope.genesisblock,
scope.account,
scope.logger,
cb
);
},
],
block: [
'db',
'bus',
'ed',
'schema',
'genesisblock',
'account',
'transaction',
function(scope, cb) {
new Block(scope.ed, scope.schema, scope.transaction, cb);
},
],
peers: [
'logger',
function(scope, cb) {
new Peers(scope.logger, cb);
},
],
multisignature: [
'schema',
'transaction',
'logger',
function(scope, cb) {
cb(
null,
new Multisignature(
scope.schema,
scope.network,
scope.transaction,
scope.logger
)
);
},
],
},
cb
);
},
],
modules: [
'network',
'webSocket',
'logger',
'bus',
'sequence',
'balancesSequence',
'db',
'logic',
'rpc',
function(scope, cb) {
var tasks = {};
scope.rewiredModules = {};
Object.keys(modulesInit).forEach(name => {
tasks[name] = function(cb) {
var Instance = rewire(modulesInit[name]);
rewiredModules[name] = Instance;
var obj = new rewiredModules[name](cb, scope);
modules.push(obj);
};
});
async.parallel(tasks, (err, results) => {
cb(err, results);
});
},
],
ready: [
'swagger',
'modules',
'bus',
'logic',
function(scope, cb) {
scope.modules.swagger = scope.swagger;
// Fire onBind event in every module
scope.bus.message('bind', scope.modules);
scope.logic.peers.bindModules(scope.modules);
cb();
},
],
},
(err, scope) => {
scope.rewiredModules = rewiredModules;
currentAppScope = scope;
__testContext.debug('initApplication: Rewired modules available');
// Overwrite syncing function to prevent interfere with tests
scope.modules.loader.syncing = function() {
return false;
};
// If bus is overridden, then we just return the scope, without waiting for genesisBlock
if (!initScope.waitForGenesisBlock || initScope.bus) {
scope.modules.delegates.onBlockchainReady = function() {};
return done(err, scope);
}
// Overwrite onBlockchainReady function to prevent automatic forging
scope.modules.delegates.onBlockchainReady = function() {
__testContext.debug(
'initApplication: Fake onBlockchainReady event called'
);
__testContext.debug('initApplication: Loading delegates...');
var loadDelegates = scope.rewiredModules.delegates.__get__(
'__private.loadDelegates'
);
loadDelegates(err => {
var keypairs = scope.rewiredModules.delegates.__get__(
'__private.keypairs'
);
var delegates_cnt = Object.keys(keypairs).length;
expect(delegates_cnt).to.equal(
__testContext.config.forging.secret.length
);
__testContext.debug(
`initApplication: Delegates loaded from config file - ${delegates_cnt}`
);
__testContext.debug('initApplication: Done');
if (initScope.waitForGenesisBlock) {
return done(err, scope);
}
});
};
}
);
});
}
function cleanup(done) {
async.eachSeries(
currentAppScope.modules,
(module, cb) => {
if (typeof module.cleanup === 'function') {
module.cleanup(cb);
} else {
cb();
}
},
err => {
if (err) {
currentAppScope.logger.error(err);
} else {
currentAppScope.logger.info('Cleaned up successfully');
}
// Disconnect from database instance if sandbox was used
if (dbSandbox) {
dbSandbox.destroy();
}
done(err);
}
);
}
module.exports = {
init,
cleanup,
};