forked from austinyearlykim/wolf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.js
117 lines (109 loc) · 3.57 KB
/
queue.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
const assert = require('assert');
const Queue = require('../modules/Queue.js');
describe('Queue', function() {
const tradingPair = 'ETHBTC';
let queue = null;
it('should be able construct Queue', (done) => {
(async() => {
try {
const config = { tradingPair };
queue = new Queue(config);
assert(queue);
done();
} catch(err) {
return console.log(err.message);
}
})();
});
it('should be initialize Queue', (done) => {
(async() => {
try {
await queue.init();
done();
} catch(err) {
return console.log(err.message);
}
})();
});
it('should be able access Queue meta data', function(done) {
(async() => {
try {
assert(queue.meta);
assert(typeof queue.meta.length === 'number');
done();
} catch(err) {
return console.log(err.message);
}
})();
});
it('should be able validate valid transactions', function(done) {
(async() => {
try {
const transaction = {
symbol: 'ETHBTC',
orderId: 1740797,
clientOrderId: '1XZTVBTGS4K1e',
transactTime: 1514418413947,
price: '0.00020000',
origQty: '100.00000000',
executedQty: '0.00000000',
status: 'NEW',
timeInForce: 'GTC',
type: 'LIMIT',
side: 'BUY'
};
assert(queue.validateTransaction(transaction));
done();
} catch(err) {
return console.log(err.message);
}
})();
});
it('should be able reject invalid transactions', function(done) {
(async() => {
try {
const invalidTransaction = {
symbol: 'ETHBTC',
orderasdfId: 1740797,
clientOrderId: '1XZTVBTGS4K1e',
transasdfactTime: 1514418413947,
price: '0.00020000',
oriasdfgQty: '100.00000000',
executedQty: '0.00000000',
staasdftus: 'NEW',
timeInForce: 'GTC',
typasdfe: 'LIMIT',
side: 'BUY'
};
assert.equal(queue.validateTransaction(invalidTransaction), false);
done();
} catch(err) {
return console.log(err.message);
}
})();
});
it('should be able add to queue', function(done) {
(async() => {
try {
const transaction = {
symbol: 'ETHBTC',
orderId: 1740797,
clientOrderId: '1XZTVBTGS4K1e',
transactTime: 1514418413947,
price: '0.00020000',
origQty: '100.00000000',
executedQty: '0.00000000',
status: 'NEW',
timeInForce: 'GTC',
type: 'LIMIT',
side: 'BUY'
};
assert(queue.push(transaction));
assert(queue.meta.length === 1);
done();
} catch(err) {
return console.log(err.message);
}
})();
});
});