aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/test/entities/ohlcv_external_test.ts
blob: 8b995db50b63ae421f061be76bec133bf8b24faa (plain) (blame)
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
import 'mocha';
import 'reflect-metadata';

import { OHLCVExternal } from '../../src/entities';
import { createDbConnectionOnceAsync } from '../db_setup';
import { chaiSetup } from '../utils/chai_setup';

import { testSaveAndFindEntityAsync } from './util';

chaiSetup.configure();

const ohlcvExternal: OHLCVExternal = {
    exchange: 'CCCAGG',
    fromSymbol: 'ETH',
    toSymbol: 'ZRX',
    startTime: 1543352400000,
    endTime: 1543356000000,
    open: 307.41,
    close: 310.08,
    low: 304.6,
    high: 310.27,
    volumeFrom: 904.6,
    volumeTo: 278238.5,
    source: 'Crypto Compare',
    observedTimestamp: 1543442338074,
};

// tslint:disable:custom-no-magic-numbers
describe('OHLCVExternal entity', () => {
    it('save/find', async () => {
        const connection = await createDbConnectionOnceAsync();
        const repository = connection.getRepository(OHLCVExternal);
        await testSaveAndFindEntityAsync(repository, ohlcvExternal);
    });
});