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

@@ -1,20 +1,22 @@
//Imports
const path = require("path")
const git = require("simple-git")(path.join(__dirname, ".."))
const path = require("path")
const git = require("simple-git")(path.join(__dirname, ".."))
//Edited files list
const diff = async () => (await git.diff("origin/master...", ["--name-status"])).split("\n").map(x => x.trim()).filter(x => /^M\s+/.test(x)).map(x => x.replace(/^M\s+/, ""))
const diff = async () => (await git.diff("origin/master...", ["--name-status"])).split("\n").map(x => x.trim()).filter(x => /^M\s+/.test(x)).map(x => x.replace(/^M\s+/, ""))
//Files editions
describe("Check files editions (checkout your files if needed)", () => {
describe("Auto-generated files were not modified", () => void test.each([
describe("Check files editions (checkout your files if needed)", () => {
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))
})
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))
})