Update tests

This commit is contained in:
lowlighter
2021-04-29 13:44:17 +02:00
parent 33e9231d2d
commit 1c9cae0322
3 changed files with 136 additions and 117 deletions

View File

@@ -126,7 +126,9 @@ rules:
func-call-spacing: error
arrow-spacing: error
generator-star-spacing: error
object-curly-spacing: [error, never]
rest-spread-spacing: error
key-spacing: [error, {afterColon: false}]
computed-property-spacing: error
array-bracket-spacing: [error, never]
no-whitespace-before-property: error

View File

@@ -7,14 +7,16 @@
//Files editions
describe("Check files editions (checkout your files if needed)", () => {
describe("Auto-generated files were not modified", () => void test.each([
describe("Auto-generated files were not modified", () =>
void test.each([
"README.md",
"source/plugins/README.md",
"source/templates/README.md",
"action.yml",
"settings.example.json"
"settings.example.json",
])("%s", async file => expect((await diff()).includes(file)).toBe(false)))
describe("Repository level files were not modified", () => void test.each([
describe("Repository level files were not modified", () =>
void test.each([
".github/config/*",
".github/ISSUE_TEMPLATE/*",
".github/PULL_REQUEST_TEMPLATE/*",
@@ -35,11 +37,12 @@
"tests/ci.test.js",
"source/.eslintrc.yml",
"source/app/mocks/.eslintrc.yml",
"vercel.json"
"vercel.json",
])("%s", async file => expect((await diff()).filter(edited => new RegExp(`^${file.replace(/[.]/g, "[.]").replace(/[*]/g, "[\\s\\S]*")}$`).test(edited)).length).toBe(0)))
})
//Templates editions
describe("Check templates editions", () => {
test("Use community templates instead (see https://github.com/lowlighter/metrics/tree/master/source/templates/community)", async () => void expect((await diff()).filter(edited => /^sources[/]templates[/]/.test(edited) && /^source[/]templates[/](?:classic|terminal|markdown|repository|community)[/][\s\S]*$/.test(edited)).length).toBe(0))
test("Use community templates instead (see https://github.com/lowlighter/metrics/tree/master/source/templates/community)", async () =>
void expect((await diff()).filter(edited => /^sources[/]templates[/]/.test(edited) && /^source[/]templates[/](?:classic|terminal|markdown|repository|community)[/][\s\S]*$/.test(edited)).length).toBe(0))
})

View File

@@ -12,7 +12,8 @@
const action = yaml.load(fs.readFileSync(path.join(__dirname, "../action.yml"), "utf8"))
action.defaults = Object.fromEntries(Object.entries(action.inputs).map(([key, { default: value }]) => [key, value]))
action.input = vars => Object.fromEntries([...Object.entries(action.defaults), ...Object.entries(vars)].map(([key, value]) => [`INPUT_${key.toLocaleUpperCase()}`, value]))
action.run = async (vars) => await new Promise((solve, reject) => {
action.run = async vars =>
await new Promise((solve, reject) => {
let [stdout, stderr] = ["", ""]
const env = { ...process.env, ...action.input(vars), GITHUB_REPOSITORY: "lowlighter/metrics" }
const child = processes.spawn("node", ["source/app/action/index.mjs"], { env })
@@ -28,8 +29,9 @@
//Web instance
const web = {}
web.run = async (vars) => (await axios(`http://localhost:3000/lowlighter?${new url.URLSearchParams(Object.fromEntries(Object.entries(vars).map(([key, value]) => [key.replace(/^plugin_/, "").replace(/_/g, "."), value])))}`)).status === 200
web.start = async () => new Promise(solve => {
web.run = async vars => (await axios(`http://localhost:3000/lowlighter?${new url.URLSearchParams(Object.fromEntries(Object.entries(vars).map(([key, value]) => [key.replace(/^plugin_/, "").replace(/_/g, "."), value])))}`)).status === 200
web.start = async () =>
new Promise(solve => {
let stdout = ""
web.instance = processes.spawn("node", ["source/app/web/index.mjs"], { env: { ...process.env, USE_MOCKED_DATA: true, NO_SETTINGS: true } })
web.instance.stdout.on("data", data => (stdout += data, /Server ready !/.test(stdout) ? solve() : null))
@@ -41,8 +43,16 @@
require("./../source/app/web/statics/app.placeholder.js")
const placeholder = globalThis.placeholder
delete globalThis.placeholder
placeholder.init({faker, ejs, axios:{async get(url) { return axios(`http://localhost:3000${url}`) }}})
placeholder.run = async (vars) => {
placeholder.init({
faker,
ejs,
axios: {
async get(url) {
return axios(`http://localhost:3000${url}`)
},
},
})
placeholder.run = async vars => {
const options = Object.fromEntries(Object.entries(vars).map(([key, value]) => [key.replace(/^plugin_/, "").replace(/_/g, "."), value]))
const enabled = Object.fromEntries(Object.entries(vars).filter(([key]) => /^plugin_[a-z]+$/.test(key)))
const config = Object.fromEntries(Object.entries(options).filter(([key]) => /^config[.]/.test(key)))
@@ -75,10 +85,14 @@
})
//Load metadata (as jest doesn't support ESM modules, we use this dirty hack)
const metadata = JSON.parse(`${processes.spawnSync("node", [
"--input-type", "module",
"--eval", 'import metadata from "./source/app/metrics/metadata.mjs";console.log(JSON.stringify(await metadata({log:false})))'
]).stdout}`)
const metadata = JSON.parse(`${
processes.spawnSync("node", [
"--input-type",
"module",
"--eval",
'import metadata from "./source/app/metrics/metadata.mjs";console.log(JSON.stringify(await metadata({log:false})))',
]).stdout
}`)
//Build tests index
const tests = []
@@ -101,13 +115,13 @@
["terminal", {}],
["repository", { repo: "metrics" }],
])("Template : %s", (template, query) => {
for (const [name, input, {skip = [], modes = [], timeout} = {}] of tests)
for (const [name, input, { skip = [], modes = [], timeout } = {}] of tests) {
if ((skip.includes(template)) || ((modes.length) && (!modes.includes("action"))))
test.skip(name, () => null)
else
test(name, async () => expect(await action.run({ template, base: "", query: JSON.stringify(query), plugins_errors_fatal: true, dryrun: true, use_mocked_data: true, verify: true, ...input })).toBe(true), timeout)
})
)
}
}))
describe("Web instance", () =>
describe.each([
@@ -115,23 +129,23 @@
["terminal", {}],
["repository", { repo: "metrics" }],
])("Template : %s", (template, query) => {
for (const [name, input, {skip = [], modes = [], timeout} = {}] of tests)
for (const [name, input, { skip = [], modes = [], timeout } = {}] of tests) {
if ((skip.includes(template)) || ((modes.length) && (!modes.includes("web"))))
test.skip(name, () => null)
else
test(name, async () => expect(await web.run({ template, base: 0, ...query, plugins_errors_fatal: true, verify: true, ...input })).toBe(true), timeout)
})
)
}
}))
describe("Web instance (placeholder)", () =>
describe.each([
["classic", {}],
["terminal", {}],
])("Template : %s", (template, query) => {
for (const [name, input, {skip = [], modes = [], timeout} = {}] of tests)
for (const [name, input, { skip = [], modes = [], timeout } = {}] of tests) {
if ((skip.includes(template)) || ((modes.length) && (!modes.includes("placeholder"))))
test.skip(name, () => null)
else
test(name, async () => expect(await placeholder.run({ template, base: 0, ...query, ...input })).toBe(true), timeout)
})
)
}
}))