mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-08-03 09:48:08 -04:00

* test: add i18n smoke test Makes sure that all of the languages that Anubis supports show up when the challenge page is sent to a client. Signed-off-by: Xe Iaso <me@xeiaso.net> * test(i18n): build anubis so that the smoke test doesn't backoff timeout Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
async function fetchLanguages() {
|
|
return fetch("http://localhost:8923/.within.website/x/cmd/anubis/static/locales/manifest.json")
|
|
.then(resp => {
|
|
if (resp.status !== 200) {
|
|
throw new Error(`wanted status 200, got status: ${resp.status}`);
|
|
}
|
|
return resp;
|
|
})
|
|
.then(resp => resp.json());
|
|
}
|
|
|
|
async function getChallengePage(lang) {
|
|
return fetch("http://localhost:8923/reqmeta", {
|
|
headers: {
|
|
"Accept-Language": lang,
|
|
"User-Agent": "CHALLENGE",
|
|
}
|
|
})
|
|
.then(resp => {
|
|
if (resp.status !== 200) {
|
|
throw new Error(`wanted status 200, got status: ${resp.status}`);
|
|
}
|
|
return resp;
|
|
})
|
|
.then(resp => resp.text());
|
|
}
|
|
|
|
(async () => {
|
|
const languages = await fetchLanguages();
|
|
console.log(languages);
|
|
|
|
const { supportedLanguages } = languages;
|
|
|
|
if (supportedLanguages.length === 0) {
|
|
throw new Error(`no languages defined`);
|
|
}
|
|
|
|
const resultSheet = {};
|
|
let failed = false;
|
|
|
|
for (const lang of supportedLanguages) {
|
|
console.log(`getting for ${lang}`);
|
|
const page = await getChallengePage(lang);
|
|
|
|
resultSheet[lang] = page.includes(`<html lang="${lang}">`)
|
|
}
|
|
|
|
for (const [lang, result] of Object.entries(resultSheet)) {
|
|
if (!result) {
|
|
failed = true;
|
|
console.log(`${lang} did not show up in challenge page`);
|
|
}
|
|
}
|
|
|
|
console.log(resultSheet);
|
|
|
|
if (failed) {
|
|
throw new Error("i18n smoke test failed");
|
|
}
|
|
|
|
process.exit(0);
|
|
})(); |