mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 11:17:44 +00:00
Refactor and update bot management and routing
- Update `.gitignore` to include `lab/` for backtesting and raw data. - Refactor `app.py` to improve error handling and logging. - Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`. - Modify multiple files to enhance bot management, routing, and strategy handling. - Update JavaScript and HTML templates for better UI and functionality.
This commit is contained in:
+63
@@ -0,0 +1,63 @@
|
||||
|
||||
var test = require('tape')
|
||||
var _JSON = require('../')
|
||||
|
||||
function clone (o) {
|
||||
return JSON.parse(JSON.stringify(o))
|
||||
}
|
||||
|
||||
var examples = {
|
||||
simple: { foo: [], bar: {}, baz: Buffer.from('some binary data') },
|
||||
just_buffer: Buffer.from('JUST A BUFFER'),
|
||||
all_types: {
|
||||
string:'hello',
|
||||
number: 3145,
|
||||
null: null,
|
||||
object: {},
|
||||
array: [],
|
||||
boolean: true,
|
||||
boolean2: false
|
||||
},
|
||||
foo: Buffer.from('foo'),
|
||||
foo2: Buffer.from('foo2'),
|
||||
escape: {
|
||||
buffer: Buffer.from('x'),
|
||||
string: _JSON.stringify(Buffer.from('x'))
|
||||
},
|
||||
escape2: {
|
||||
buffer: Buffer.from('x'),
|
||||
string: ':base64:'+ Buffer.from('x').toString('base64')
|
||||
},
|
||||
undefined: {
|
||||
empty: undefined, test: true
|
||||
},
|
||||
undefined2: {
|
||||
first: 1, empty: undefined, test: true
|
||||
},
|
||||
undefinedArray: {
|
||||
array: [undefined, 1, 'two']
|
||||
},
|
||||
fn: {
|
||||
fn: function () {}
|
||||
},
|
||||
undefined: undefined
|
||||
}
|
||||
|
||||
for(k in examples)
|
||||
(function (value, k) {
|
||||
test(k, function (t) {
|
||||
var s = _JSON.stringify(value)
|
||||
console.log('parse', s)
|
||||
if(JSON.stringify(value) !== undefined) {
|
||||
console.log(s)
|
||||
var _value = _JSON.parse(s)
|
||||
t.deepEqual(clone(_value), clone(value))
|
||||
}
|
||||
else
|
||||
t.equal(s, undefined)
|
||||
t.end()
|
||||
})
|
||||
})(examples[k], k)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user