forked from alleyway/add-tradingview-alerts-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-alerts.test.js
36 lines (36 loc) · 1.87 KB
/
add-alerts.test.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
import YAML from "yaml";
import path from "path";
import { addAlertsMain } from "./add-alerts";
import { readFileSync, writeFileSync, copyFileSync } from "fs";
describe('Add Alerts Test', () => {
jest.setTimeout(120000);
it('addAlerts(configFile)', async () => {
// create a symbols csv file as example
const ciSymbolsCsvPath = path.join(process.cwd(), `ci_symbols.csv`);
const csvContent = `symbol,instrument,quote_asset,alert_name
COINBASE:BTCUSD,BTC,USDT, "my CI test name"
`;
writeFileSync(ciSymbolsCsvPath, csvContent, { encoding: "utf-8" });
// copy blacklist file
const templateBlacklistPath = path.join(process.cwd(), "create-tradingview-alerts-home", "src", "init", "blacklist.csv");
copyFileSync(templateBlacklistPath, "blacklist.csv");
// read template config file
const templateConfigPath = path.join(process.cwd(), "create-tradingview-alerts-home", "src", "init", "config.init.yml");
const configString = readFileSync(templateConfigPath, { encoding: "utf-8" });
const config = YAML.parse(configString);
// modify it to our needs
config.files.input = ciSymbolsCsvPath;
config.tradingview.chartUrl = process.env.TEST_TRADINGVIEW_CHART;
config.tradingview.username = process.env.TEST_TRADINGVIEW_USERNAME;
config.tradingview.password = process.env.TEST_TRADINGVIEW_PASSWORD;
config.alert.actions.webhook.enabled = false;
//config.tradingview.interval = "1h, 4h"
// write it out again
const TEST_CONFIG_PATH = "config.ci.yml";
const configOutputString = YAML.stringify(config, { simpleKeys: true });
writeFileSync(TEST_CONFIG_PATH, configOutputString, { encoding: "utf-8" });
// launch browser and add alerts
await addAlertsMain(TEST_CONFIG_PATH);
});
});
//# sourceMappingURL=add-alerts.test.js.map