mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
207 lines
4.8 KiB
TypeScript
207 lines
4.8 KiB
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
import { usePlotTemplates } from '@/composables/plotTemplates';
|
|
import { PlotConfig } from '@/types';
|
|
import { M } from 'vite/dist/node/types.d-aGj9QkWt';
|
|
|
|
describe('replaceTemplateColumns', () => {
|
|
it('Updates main plot values', () => {
|
|
const { replaceTemplateColumns } = usePlotTemplates();
|
|
const reMapping = { ema: 'ema_14' };
|
|
const template: Partial<PlotConfig> = {
|
|
main_plot: {
|
|
ema: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
};
|
|
const expected: Partial<PlotConfig> = {
|
|
main_plot: {
|
|
ema_14: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
};
|
|
expect(replaceTemplateColumns(template, reMapping)).toEqual(expected);
|
|
});
|
|
it('Updates subplot plot values', () => {
|
|
const { replaceTemplateColumns } = usePlotTemplates();
|
|
const reMapping = { rsi: 'rsi_14' };
|
|
const template: Partial<PlotConfig> = {
|
|
subplots: {
|
|
RSI: {
|
|
rsi: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const expected: Partial<PlotConfig> = {
|
|
subplots: {
|
|
RSI: {
|
|
rsi_14: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
expect(replaceTemplateColumns(template, reMapping)).toEqual(expected);
|
|
});
|
|
it('Updates both main and subplot values', () => {
|
|
const { replaceTemplateColumns } = usePlotTemplates();
|
|
const reMapping = { ema: 'ema_200', macd: 'macd_5m', macdsignal: 'macdsignal_5m' };
|
|
const template: Partial<PlotConfig> = {
|
|
main_plot: {
|
|
ema: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
subplots: {
|
|
MACD: {
|
|
macdsignal: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
macd: {
|
|
color: '#1370f4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const expected: Partial<PlotConfig> = {
|
|
main_plot: {
|
|
ema_200: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
subplots: {
|
|
MACD: {
|
|
macdsignal_5m: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
macd_5m: {
|
|
color: '#1370f4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
expect(replaceTemplateColumns(template, reMapping)).toEqual(expected);
|
|
});
|
|
|
|
it('Updates "fill to" values', () => {
|
|
const { replaceTemplateColumns } = usePlotTemplates();
|
|
const reMapping = {
|
|
bb_upperband: 'upperband',
|
|
bb_lowerband: 'lowerband',
|
|
macd: 'macd_5m',
|
|
};
|
|
const template: Partial<PlotConfig> = {
|
|
main_plot: {
|
|
bb_upperband: {
|
|
color: '#008af4',
|
|
type: 'line',
|
|
fill_to: 'bb_lowerband',
|
|
},
|
|
bb_lowerband: {
|
|
color: '#008af4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
subplots: {
|
|
MACD: {
|
|
macdsignal: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
fill_to: 'macd',
|
|
},
|
|
macd: {
|
|
color: '#1370f4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const expected: Partial<PlotConfig> = {
|
|
main_plot: {
|
|
upperband: {
|
|
color: '#008af4',
|
|
type: 'line',
|
|
fill_to: 'lowerband',
|
|
},
|
|
lowerband: {
|
|
color: '#008af4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
subplots: {
|
|
MACD: {
|
|
macdsignal: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
fill_to: 'macd_5m',
|
|
},
|
|
macd_5m: {
|
|
color: '#1370f4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
expect(replaceTemplateColumns(template, reMapping)).toEqual(expected);
|
|
});
|
|
});
|
|
|
|
describe('applyPlotTemplate', () => {
|
|
it('Updates main plot values', () => {
|
|
const { applyPlotTemplate } = usePlotTemplates();
|
|
const reMapping = { rsi: 'rsi_14' };
|
|
|
|
const currentConfig: PlotConfig = {
|
|
main_plot: { ema: { color: '#ff8000', type: 'line' } },
|
|
subplots: {
|
|
MACD: {
|
|
macdsignal: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
macd: {
|
|
color: '#1370f4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const expected: Partial<PlotConfig> = {
|
|
main_plot: { ema: { color: '#ff8000', type: 'line' } },
|
|
subplots: {
|
|
RSI: {
|
|
rsi_14: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
},
|
|
MACD: {
|
|
macdsignal: {
|
|
color: '#ff8000',
|
|
type: 'line',
|
|
},
|
|
macd: {
|
|
color: '#1370f4',
|
|
type: 'line',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
expect(applyPlotTemplate('RSI', currentConfig, reMapping)).toEqual(expected);
|
|
});
|
|
});
|