summary refs log tree commit diff
path: root/scripts/stresstest/index.js
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-25 18:24:21 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-25 23:35:18 +1000
commitf44f5d7ac2d24ff836c2e1d4b2fa58da04b13052 (patch)
treea6655c41bb3db79c30fd876b06ee60fe9cf70c9b /scripts/stresstest/index.js
parentAllow edited_timestamp to passthrough in handleMessage (diff)
downloadserver-f44f5d7ac2d24ff836c2e1d4b2fa58da04b13052.tar.xz
Refactor to mono-repo + upgrade packages
Diffstat (limited to 'scripts/stresstest/index.js')
-rw-r--r--scripts/stresstest/index.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/stresstest/index.js b/scripts/stresstest/index.js
new file mode 100644
index 00000000..a9a65097
--- /dev/null
+++ b/scripts/stresstest/index.js
@@ -0,0 +1,38 @@
+const register = require("./src/register");
+const login = require("./src/login/index");
+const config = require("./config.json");
+const figlet = require("figlet");
+const sendMessage = require("./src/message/send");
+const fs = require("fs");
+figlet("Fosscord Stress Test :)", function (err, data) {
+	if (err) {
+		console.log("Something went wrong...");
+		console.dir(err);
+		return;
+	}
+	console.log("\x1b[32m", data);
+});
+setInterval(() => {
+	generate();
+}, 1000 * 5);
+setInterval(() => {
+	getUsers();
+}, 60 * 1000);
+async function generate() {
+	var accounts = await JSON.parse(fs.readFileSync("accounts.json"));
+	console.log(accounts);
+	var account = await register();
+	accounts.push(account);
+	fs.writeFileSync("accounts.json", JSON.stringify(accounts));
+	console.log(accounts.length);
+	var y = await login(account);
+	sendMessage(y);
+}
+async function getUsers() {
+	var accounts = await JSON.parse(fs.readFileSync("accounts.json"));
+	accounts.forEach(async (x) => {
+		var y = await login(x);
+		console.log(y);
+		sendMessage(y);
+	});
+}