add special tests + remove n.is-a.dev as dupe single letter

This commit is contained in:
William Harrison
2025-01-13 17:59:09 +08:00
parent c01bea88f4
commit b159edb6c3
4 changed files with 50 additions and 19 deletions
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "syedtahseen",
"email": "itxtahseen@gmail.com"
},
"record": {
"TXT": ["vc-domain-verify=n.is-a.dev,8435c76be2d4e8aaa229"]
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "syedtahseen",
"email": "itxtahseen@gmail.com"
},
"record": {
"CNAME": "xproject-xi.vercel.app"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@ const fs = require("fs-extra");
const path = require("path");
const domainsPath = path.resolve("domains");
const files = fs.readdirSync(domainsPath);
const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json"));
const domainCache = {};
+49
View File
@@ -0,0 +1,49 @@
const t = require("ava");
const fs = require("fs-extra");
const path = require("path");
const domainsPath = path.resolve("domains");
const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json"));
const bypassedUsernames = require("../util/bypassed-usernames.json").map((username) => username.toLowerCase());
function getDomainData(subdomain) {
try {
const data = fs.readJsonSync(path.join(domainsPath, `${subdomain}.json`));
return data;
} catch (error) {
throw new Error(`Failed to read JSON for ${subdomain}: ${error.message}`);
}
}
t("Users are limited to one single character subdomain", (t) => {
const results = [];
files.forEach((file) => {
const subdomain = file.replace(/\.json$/, "");
const data = getDomainData(subdomain);
if (subdomain.length === 1 && !bypassedUsernames.includes(data.owner.username.toLowerCase())) {
results.push({
subdomain,
owner: data.owner.username.toLowerCase(),
})
}
});
const duplicates = results.filter((result) => results.filter((r) => r.owner === result.owner).length > 1);
// Combine duplicates into multiple strings, only one per user, with list of their domains
const output = duplicates.reduce((acc, curr) => {
if (!acc[curr.owner]) {
acc[curr.owner] = [];
}
acc[curr.owner].push(`${curr.subdomain}.is-a.dev`);
return acc;
}, {});
t.is(duplicates.length, 0, Object.keys(output).map((owner) => `${owner} - ${output[owner].join(", ")}`).join("\n"));
t.pass();
})