forked from LiskArchive/lisk-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_seed.js
175 lines (148 loc) · 3.45 KB
/
db_seed.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
/*
* 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';
const Promise = require('bluebird');
const fixtures = require('../fixtures');
let accounts = [];
let blocks = [];
const numSeedRecords = 5;
class DatabaseSeed {
static getBlocks() {
return blocks;
}
static getLastBlock() {
return blocks[blocks.length - 1];
}
static getAccounts() {
return accounts;
}
static seedAccounts(db) {
// Prepare some fixture data to seed the database
for (let i = 0; i < numSeedRecords; i++) {
accounts.push(fixtures.accounts.Account());
}
return db
.task('db:seed:accounts', t => {
return t.accounts.insert(accounts);
})
.then(() => accounts);
}
static seedBlocks(db, accounts) {
let block;
// Seed one block per account
accounts.forEach((account, index) => {
if (index === 0) {
block = fixtures.blocks.GenesisBlock({
generatorPublicKey: account.publicKey,
});
} else {
block = fixtures.blocks.Block({
id: account.blockId,
generatorPublicKey: account.publicKey,
previousBlock: block ? block.id : null,
height: blocks.length + 1,
});
}
blocks.push(block);
});
return db
.task('db:seed:blocks', t => {
return Promise.mapSeries(blocks, block => {
return t.blocks.save(block);
});
})
.then(() => blocks);
}
static seedDapps(db, count = 1) {
const trs = [];
for (let i = 0; i < count; i++) {
trs.push(
fixtures.transactions.Transaction({ blockId: blocks[0].id, type: 5 })
);
}
return db.tx('db:seed:dapps', t => {
return t.transactions.save(trs).then(() => trs);
});
}
static seedOutTransfer(db, dapp, inTransfer, count = 1) {
const trs = [];
for (let i = 0; i < count; i++) {
trs.push(
fixtures.transactions.Transaction({
blockId: blocks[0].id,
type: 7,
dapp,
inTransfer,
})
);
}
return db.tx('db:seed:outtransfer', t => {
return t.transactions.save(trs).then(() => trs);
});
}
static seedInTransfer(db, dapp, count = 1) {
const trs = [];
for (let i = 0; i < count; i++) {
trs.push(
fixtures.transactions.Transaction({
blockId: blocks[0].id,
type: 6,
dapp,
})
);
}
return db.tx('db:seed:intransfer', t => {
return t.transactions.save(trs).then(() => trs);
});
}
static seed(db) {
return this.seedAccounts(db).then(accounts =>
this.seedBlocks(db, accounts)
);
}
static reset(db) {
const tables = [
'blocks',
'dapps',
'forks_stat',
'intransfer',
'outtransfer',
'mem_accounts',
'mem_accounts2multisignatures',
'mem_accounts2u_multisignatures',
'mem_accounts2delegates',
'mem_accounts2u_delegates',
'mem_round',
'rounds_rewards',
'peers',
'trs',
'transfer',
];
return db
.task('db:seed:reset', t => {
const promises = [];
tables.forEach(table => {
promises.push(
t.query('TRUNCATE TABLE ${table:name} CASCADE', { table })
);
});
return t.batch(promises);
})
.then(() => {
accounts = [];
blocks = [];
});
}
}
module.exports = DatabaseSeed;