diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84a8b7b..34746c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,5 +27,5 @@ jobs: - run: npm ci - run: npm install - run: npm run lint - - run: npm test || true + - run: npm test - run: npm run package diff --git a/package-lock.json b/package-lock.json index 28dc723..eb62738 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,7 @@ "@vscode/vsce": "^2.29.0", "glob": "^10.4.2", "globals": "^15.7.0", + "mocha": "^10.7.3", "typescript": "^5.5.2", "typescript-eslint": "^7.14.1" }, @@ -878,6 +879,15 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -902,6 +912,19 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -960,6 +983,18 @@ ], "optional": true }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", @@ -1000,6 +1035,12 @@ "node": ">=8" } }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", @@ -1069,12 +1110,23 @@ "node": ">=6" } }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "peer": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -1124,6 +1176,42 @@ "url": "https://github.com/sponsors/fb55" } }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/chownr": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", @@ -1131,6 +1219,54 @@ "dev": true, "optional": true }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/cockatiel": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/cockatiel/-/cockatiel-3.1.3.tgz", @@ -1244,6 +1380,18 @@ } } }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/decompress-response": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", @@ -1322,6 +1470,15 @@ "node": ">=8" } }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -1453,12 +1610,20 @@ "node": ">= 0.4" } }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "peer": true, "engines": { "node": ">=10" }, @@ -1770,7 +1935,6 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, - "peer": true, "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -1782,6 +1946,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, "node_modules/flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", @@ -1847,6 +2020,20 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -1856,6 +2043,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, "node_modules/get-intrinsic": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", @@ -1997,7 +2193,6 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "peer": true, "engines": { "node": ">=8" } @@ -2050,6 +2245,15 @@ "node": ">= 0.4" } }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, "node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", @@ -2200,6 +2404,18 @@ "dev": true, "optional": true }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -2264,6 +2480,27 @@ "node": ">=8" } }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -2305,7 +2542,6 @@ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "peer": true, "dependencies": { "argparse": "^2.0.1" }, @@ -2463,7 +2699,6 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "peer": true, "dependencies": { "p-locate": "^5.0.0" }, @@ -2523,6 +2758,22 @@ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "dev": true }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/lru-cache": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.3.0.tgz", @@ -2669,6 +2920,103 @@ "dev": true, "optional": true }, + "node_modules/mocha": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.7.3.tgz", + "integrity": "sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.3", + "browser-stdout": "^1.3.1", + "chokidar": "^3.5.3", + "debug": "^4.3.5", + "diff": "^5.2.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^8.1.0", + "he": "^1.2.0", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^5.1.6", + "ms": "^2.1.3", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^6.5.1", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.9", + "yargs-unparser": "^2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/mocha/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/mocha/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -2714,6 +3062,15 @@ "dev": true, "optional": true }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", @@ -2787,7 +3144,6 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "peer": true, "dependencies": { "yocto-queue": "^0.1.0" }, @@ -2803,7 +3159,6 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "peer": true, "dependencies": { "p-limit": "^3.0.2" }, @@ -2881,7 +3236,6 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "peer": true, "engines": { "node": ">=8" } @@ -3040,6 +3394,15 @@ } ] }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -3093,6 +3456,27 @@ "node": ">= 6" } }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -3213,6 +3597,15 @@ "node": ">=10" } }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", @@ -3452,7 +3845,6 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "peer": true, "engines": { "node": ">=8" }, @@ -3465,7 +3857,6 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "peer": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -3826,6 +4217,12 @@ "node": ">=0.10.0" } }, + "node_modules/workerpool": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", + "dev": true + }, "node_modules/wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", @@ -3948,12 +4345,83 @@ "node": ">=4.0" } }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", @@ -3978,7 +4446,6 @@ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "peer": true, "engines": { "node": ">=10" }, @@ -4609,6 +5076,12 @@ "uri-js": "^4.2.2" } }, + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -4624,6 +5097,16 @@ "color-convert": "^2.0.1" } }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -4665,6 +5148,12 @@ "dev": true, "optional": true }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true + }, "bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", @@ -4702,6 +5191,12 @@ "fill-range": "^7.1.1" } }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, "buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", @@ -4745,12 +5240,17 @@ "dev": true, "peer": true }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "peer": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -4785,6 +5285,33 @@ "domutils": "^3.0.1" } }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, "chownr": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", @@ -4792,6 +5319,47 @@ "dev": true, "optional": true }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, "cockatiel": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/cockatiel/-/cockatiel-3.1.3.tgz", @@ -4873,6 +5441,12 @@ "ms": "2.1.2" } }, + "decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true + }, "decompress-response": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", @@ -4927,6 +5501,12 @@ "dev": true, "optional": true }, + "diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true + }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -5025,12 +5605,17 @@ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, "escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "peer": true + "dev": true }, "eslint": { "version": "8.57.0", @@ -5271,12 +5856,17 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, - "peer": true, "requires": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, "flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", @@ -5330,12 +5920,25 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, "function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, "get-intrinsic": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", @@ -5439,8 +6042,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "peer": true + "dev": true }, "has-property-descriptors": { "version": "1.0.2", @@ -5472,6 +6074,12 @@ "function-bind": "^1.1.2" } }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, "hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", @@ -5578,6 +6186,15 @@ "dev": true, "optional": true }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, "is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -5618,6 +6235,18 @@ "dev": true, "peer": true }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, "is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -5648,7 +6277,6 @@ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "peer": true, "requires": { "argparse": "^2.0.1" } @@ -5794,7 +6422,6 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "peer": true, "requires": { "p-locate": "^5.0.0" } @@ -5848,6 +6475,16 @@ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "dev": true }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, "lru-cache": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.3.0.tgz", @@ -5954,6 +6591,82 @@ "dev": true, "optional": true }, + "mocha": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.7.3.tgz", + "integrity": "sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.3", + "browser-stdout": "^1.3.1", + "chokidar": "^3.5.3", + "debug": "^4.3.5", + "diff": "^5.2.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^8.1.0", + "he": "^1.2.0", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^5.1.6", + "ms": "^2.1.3", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^6.5.1", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.9", + "yargs-unparser": "^2.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -5996,6 +6709,12 @@ "dev": true, "optional": true }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, "nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", @@ -6051,7 +6770,6 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "peer": true, "requires": { "yocto-queue": "^0.1.0" } @@ -6061,7 +6779,6 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "peer": true, "requires": { "p-limit": "^3.0.2" } @@ -6122,8 +6839,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "peer": true + "dev": true }, "path-is-absolute": { "version": "1.0.1", @@ -6226,6 +6942,15 @@ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, "rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -6269,6 +6994,21 @@ "util-deprecate": "^1.0.1" } }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -6336,6 +7076,15 @@ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "dev": true }, + "serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, "set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", @@ -6493,15 +7242,13 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "peer": true + "dev": true }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "peer": true, "requires": { "has-flag": "^4.0.0" } @@ -6744,6 +7491,12 @@ "dev": true, "peer": true }, + "workerpool": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", + "dev": true + }, "wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", @@ -6830,12 +7583,70 @@ "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", "dev": true }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + }, + "yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + } + }, "yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", @@ -6859,8 +7670,7 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "peer": true + "dev": true } } } diff --git a/package.json b/package.json index 6d6d09f..6babe58 100644 --- a/package.json +++ b/package.json @@ -21,12 +21,12 @@ { "command": "mql_compiler.checkSyntax", "title": "%mql_compiler.commands.checkSyntax.title%", - "icon": "$(check)" + "icon": "$(check)" }, { "command": "mql_compiler.compileFile", "title": "%mql_compiler.commands.compileFile.title%", - "icon": "$(play)" + "icon": "$(play)" } ], "configuration": { @@ -113,7 +113,7 @@ "lint": "eslint .", "package": "vsce package", "pretest": "npm run lint", - "test": "echo \"Error: no test specified\" && exit 1" + "test": "npx mocha src/tests.js" }, "repository": { "type": "git", @@ -142,6 +142,7 @@ "@vscode/vsce": "^2.29.0", "glob": "^10.4.2", "globals": "^15.7.0", + "mocha": "^10.7.3", "typescript": "^5.5.2", "typescript-eslint": "^7.14.1" } diff --git a/src/index.js b/src/index.js index 697dca0..bfcfa4b 100644 --- a/src/index.js +++ b/src/index.js @@ -1,10 +1,7 @@ // Extension life-cycle functions. const { activate, deactivate } = require('./lifecycle'); -const { runTests } = require('./tests'); module.exports = { activate, deactivate } - -runTests(); diff --git a/src/paths.js b/src/paths.js index e2d4e81..303b463 100644 --- a/src/paths.js +++ b/src/paths.js @@ -35,12 +35,16 @@ function convertWindowsHostToWslPath(windowsPath) { * Returns currently logged in user. */ const getUserName = (() => { - if (process.platform == 'win32') - throw new Error(`Calling getWslUserName() is only possible in WSL or Unix.`); - let cachedUserName = null; // Variable to store the cached username return () => { + if (typeof global.it === 'function') + // During testing we just use some random user name. + return 'john'; + + if (process.platform == 'win32') + throw new Error(`Calling getWslUserName() is only possible in WSL or Unix.`); + if (!cachedUserName) { // If no cached result, execute the command to get the WSL username cachedUserName = execSync('whoami').toString().trim(); @@ -68,12 +72,16 @@ function convertWinePathToUnixDosDevicesPath(windowsPath) { * Retrieves current WSL linux distribution name. Only possible in WSL or Unix. */ const getWslMachineName = (() => { - if (process.platform == 'win32') - throw new Error(`Calling getWslMachineName() is only possible in WSL or Unix.`); - let cachedName = null; // Variable to store the cached result. return () => { + if (typeof global.it === 'function') + // During testing we just use some random distribution name. + return 'Ubuntu'; + + if (process.platform == 'win32') + throw new Error(`Calling getWslMachineName() is only possible in WSL or Unix.`); + if (!cachedName) { // If no cached result, run the command to get the WSL machine name. const wslOutput = execSync('wsl -l -q').toString().trim(); diff --git a/src/tests.js b/src/tests.js index dafc8cf..0f0ff8f 100644 --- a/src/tests.js +++ b/src/tests.js @@ -1,159 +1,147 @@ const assert = require('node:assert/strict'); - const { OsType, UniversalPath } = require("./universalpath"); - -class Tests { - constructor() { - // We're on Windows and we have Windows path. We don't use WSL. - this.pathWindowsHostWindowsPathDisabledWSL = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Windows, false); - - // We're on Windows and we have Windows path. WSL mode is enabled. - this.pathWindowsHostWindowsPathEnabledWSL = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Windows, true); - - // We're on Windows and we have Unix path. We don't use WSL. - this.pathWindowsHostUnixPathUnderWindowsDisabledWSL = new UniversalPath("/mnt/c/devel/test.mq5", false, undefined, OsType.Windows, false); - - // We're on Windows and we have Unix path. WSL mode is enabled. - this.pathWindowsHostUnixPathUnderWindowsEnabledWSL = new UniversalPath("/mnt/c/devel/test.mq5", false, undefined, OsType.Windows, true); - - // We're on Windows and we have inside-Wine path. We don't use WSL. - this.pathWindowsHostUnixPathUnderWineDisabledWSL = new UniversalPath("/home/USER/.wine/dosdevices/c:/devel/test.mq5", false, undefined, OsType.Windows, false); - - // We're on Windows and we have inside-Wine path. WSL mode is enabled. - this.pathWindowsHostUnixPathUnderWineEnabledWSL = new UniversalPath("/home/USER/.wine/dosdevices/c:/devel/test.mq5", false, undefined, OsType.Windows, true); - - // We're under WSL's Ubuntu and we have Windows' host path. - this.pathWslWindowsPathInsideWindows = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Unix, true); - - // We're under WSL's Ubuntu and we have inside-Wine path. - this.pathWslWindowsPathInsideWine = new UniversalPath("C:\\devel\\test.mq5", true, undefined, OsType.Unix, true); - - // We're on Unix (outside WSL) and we have Unix-host path. - this.pathUnixHostUnixPath = new UniversalPath("/home/devel/test.mq5", false, undefined, OsType.Unix, undefined); - - // We're on Unix (outside WSL) and we have inside-Wine path. - this.pathUnixHostUnixPathInsideWine = new UniversalPath("C:\\devel\\test.mq5", true, undefined, OsType.Unix, undefined); - - // We're on Unix (outside WSL) and we have Windows path not marked as Wine path [Wrong]. - this.pathUnixHostWindowsPathOutsideWine = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Unix, undefined); - } - - runAll() { - this.pathTest(); - } - - /** - * Executes UniversalPath and path.js functions' tests in order to check path conversion consistency. - */ - pathTest() { - console.log(this); - - // C:\\devel\\test.mq5 [Windows, Windows-style Path, Outside Wine, Non-WSL]. - assert.strictEqual(this.pathWindowsHostWindowsPathDisabledWSL.isValid(), true); - assert.strictEqual(this.pathWindowsHostWindowsPathDisabledWSL.isHostWindows, true); - assert.strictEqual(this.pathWindowsHostWindowsPathDisabledWSL.isWinePath, false); - assert.strictEqual(this.pathWindowsHostWindowsPathDisabledWSL.isWslMode, false); - assert.strictEqual(this.pathWindowsHostWindowsPathDisabledWSL.asCliPath(), "C:\\devel\\test.mq5"); - assert.strictEqual(this.pathWindowsHostWindowsPathDisabledWSL.asTargetPath(), "C:\\devel\\test.mq5"); - - // C:\\devel\\test.mq5 [Windows, Windows-style Path, Outside Wine, Through WSL]. - assert.strictEqual(this.pathWindowsHostWindowsPathEnabledWSL.isValid(), true); - assert.strictEqual(this.pathWindowsHostWindowsPathEnabledWSL.isHostWindows, true); - assert.strictEqual(this.pathWindowsHostWindowsPathEnabledWSL.isWinePath, false); - assert.strictEqual(this.pathWindowsHostWindowsPathEnabledWSL.isWslMode, true); - assert.strictEqual(this.pathWindowsHostWindowsPathEnabledWSL.asCliPath(), "Z:\\mnt\\c\\devel\\test.mq5"); - assert.strictEqual(this.pathWindowsHostWindowsPathEnabledWSL.asTargetPath(), "C:\\devel\\test.mq5"); - - // /mnt/c/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, Non-WSL]. - // Normally, we can't specify Unix path under Windows with disabled WSL mode. - // However, we allow such path, so user could leave it when switching between Windows and WSL if he expects Windows-host path. - // Such path will be converted to C:\devel\test.mq5 for metatrader.exe CLI usage (asCliPath) and for Windows-host read/write purposes (asTargetPath). - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsDisabledWSL.isValid(), true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsDisabledWSL.isHostWindows, true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsDisabledWSL.isWinePath, false); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsDisabledWSL.isWslMode, false); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsDisabledWSL.asCliPath(), "C:\\devel\\test.mq5"); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsDisabledWSL.asTargetPath(), "C:\\devel\\test.mq5"); - - // /mnt/c/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, Through WSL]. - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsEnabledWSL.isValid(), true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsEnabledWSL.isHostWindows, true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsEnabledWSL.isWinePath, false); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsEnabledWSL.isWslMode, true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsEnabledWSL.asCliPath(), "Z:\\mnt\\c\\devel\\test.mq5"); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWindowsEnabledWSL.asTargetPath(), "/mnt/c/devel/test.mq5"); - - // /home/USER/.wine/dosdevices/c:/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, At Wine Folder, Non-WSL]. - // This path is invalid. We can't map under-Wine path into path in non-WSL mode on Windows host. - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineDisabledWSL.isValid(), false); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineDisabledWSL.isHostWindows, true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineDisabledWSL.isWinePath, false); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineDisabledWSL.isWslMode, false); - - // /home/USER/.wine/dosdevices/c:/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, At Wine Folder, Through WSL]. - // Path will be mapped to inside-Wine path for cliPath() and under Wine on Windows-host for asTargetPath(). - // @fixit Note that WSL machine name could be different than "Ubuntu". We need to detect it. - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineEnabledWSL.isValid(), true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineEnabledWSL.isHostWindows, true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineEnabledWSL.isWinePath, false); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineEnabledWSL.isWslMode, true); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineEnabledWSL.asCliPath(), "C:\\devel\\test.mq5"); - assert.strictEqual(this.pathWindowsHostUnixPathUnderWineEnabledWSL.asTargetPath(), "\\\\wsl$\\Ubuntu\\home\\USER\\.wine\\dosdevices\\c:\\devel\\test.mq5"); - - // C:\\devel\\test.mq5 [WSL(Unix), Windows-style Path, Inside Windows, Through-WSL]. - // Note that we can use Windows path only in Windows-host or WSL mode (WSL mode will be auto-detected). - // Thus, on Unix, switching on WSL mode will make the path invalid. Marking path as inside-Wine would help with that. - assert.strictEqual(this.pathWslWindowsPathInsideWindows.isValid(), true); - assert.strictEqual(this.pathWslWindowsPathInsideWindows.isHostWindows, false); - assert.strictEqual(this.pathWslWindowsPathInsideWindows.isWinePath, false); - assert.strictEqual(this.pathWslWindowsPathInsideWindows.isWslMode, true); - assert.strictEqual(this.pathWslWindowsPathInsideWindows.asCliPath(), "Z:\\mnt\\c\\devel\\test.mq5"); - assert.strictEqual(this.pathWslWindowsPathInsideWindows.asTargetPath(), "/mnt/c/devel/test.mq5"); - - // C:\\devel\\test.mq5 [WSL(Unix), Windows-style Path, Inside Wine, Through WSL]. - // Note that in WSL or Unix we can use Windows-host path only in WSL mode (WSL mode will be auto-detected). - assert.strictEqual(this.pathWslWindowsPathInsideWine.isValid(), true); - assert.strictEqual(this.pathWslWindowsPathInsideWine.isHostWindows, false); - assert.strictEqual(this.pathWslWindowsPathInsideWine.isWinePath, true); - assert.strictEqual(this.pathWslWindowsPathInsideWine.isWslMode, true); - assert.strictEqual(this.pathWslWindowsPathInsideWine.asCliPath(), "C:\\devel\\test.mq5"); - assert.match(this.pathWslWindowsPathInsideWine.asTargetPath(), /home\/.*?\/\.wine\/dosdevices\/c:\/devel\/test\.mq5/); - - // /home/devel/test.mq5 [Unix, Unix-style Path, Outside Wine, Non-WSL]. - assert.strictEqual(this.pathUnixHostUnixPath.isValid(), true); - assert.strictEqual(this.pathUnixHostUnixPath.isHostWindows, false); - assert.strictEqual(this.pathUnixHostUnixPath.isWinePath, false); - // WSL mode testing is not necessary. - assert.strictEqual(this.pathUnixHostUnixPath.asCliPath(), "/home/devel/test.mq5"); - assert.strictEqual(this.pathUnixHostUnixPath.asTargetPath(), "/home/devel/test.mq5"); - - // C:\\devel\\test.mq5 [Unix, Unix-style Path, Inside Wine, Non-WSL]. - assert.strictEqual(this.pathUnixHostUnixPathInsideWine.isValid(), true); - assert.strictEqual(this.pathUnixHostUnixPathInsideWine.isHostWindows, false); - assert.strictEqual(this.pathUnixHostUnixPathInsideWine.isWinePath, true); - // WSL mode testing is not necessary. - assert.strictEqual(this.pathUnixHostUnixPathInsideWine.asCliPath(), "C:\\devel\\test.mq5"); - assert.match(this.pathUnixHostUnixPathInsideWine.asTargetPath(), /home\/.*?\/\.wine\/dosdevices\/c:\/devel\/test\.mq5/); - - // C:\\devel\\test.mq5 [Unix, Windows-style Path, Outside Wine, Non-WSL]. - // Such path is invalid as we can't map Windows path to Unix host outside the Wine or for non-Wine mode. - assert.strictEqual(this.pathUnixHostWindowsPathOutsideWine.isValid(), false); - assert.strictEqual(this.pathUnixHostWindowsPathOutsideWine.isHostWindows, false); - assert.strictEqual(this.pathUnixHostWindowsPathOutsideWine.isWinePath, false); - // WSL mode testing is not necessary. - - // @todo Include tests where Windows paths are slashed and Unix paths are backslashed (it should work in both cases). - - // We're done. - } -} - -function runTests() { - new Tests().runAll(); - - console.log(`Testing done.`); -} - -module.exports = { - runTests -}; +const { describe, it } = require('mocha'); + +// We're on Windows and we have Windows path. We don't use WSL. +const windowsHostWindowsPathDisabledWSL = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Windows, false); + +// We're on Windows and we have Windows path. WSL mode is enabled. +const windowsHostWindowsPathEnabledWSL = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Windows, true); + +// We're on Windows and we have Unix path. We don't use WSL. +const windowsHostUnixPathUnderWindowsDisabledWSL = new UniversalPath("/mnt/c/devel/test.mq5", false, undefined, OsType.Windows, false); + +// We're on Windows and we have Unix path. WSL mode is enabled. +const windowsHostUnixPathUnderWindowsEnabledWSL = new UniversalPath("/mnt/c/devel/test.mq5", false, undefined, OsType.Windows, true); + +// We're on Windows and we have inside-Wine path. We don't use WSL. +const windowsHostUnixPathUnderWineDisabledWSL = new UniversalPath("/home/USER/.wine/dosdevices/c:/devel/test.mq5", false, undefined, OsType.Windows, false); + +// We're on Windows and we have inside-Wine path. WSL mode is enabled. +const windowsHostUnixPathUnderWineEnabledWSL = new UniversalPath("/home/USER/.wine/dosdevices/c:/devel/test.mq5", false, undefined, OsType.Windows, true); + +// We're under WSL's Ubuntu and we have Windows' host path. +const wslWindowsPathInsideWindows = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Unix, true); + +// We're under WSL's Ubuntu and we have inside-Wine path. +const wslWindowsPathInsideWine = new UniversalPath("C:\\devel\\test.mq5", true, undefined, OsType.Unix, true); + +// We're on Unix (outside WSL) and we have Unix-host path. +const unixHostUnixPath = new UniversalPath("/home/devel/test.mq5", false, undefined, OsType.Unix, undefined); + +// We're on Unix (outside WSL) and we have inside-Wine path. +const unixHostUnixPathInsideWine = new UniversalPath("C:\\devel\\test.mq5", true, undefined, OsType.Unix, undefined); + +// We're on Unix (outside WSL) and we have Windows path not marked as Wine path [Wrong]. +const unixHostWindowsPathOutsideWine = new UniversalPath("C:\\devel\\test.mq5", false, undefined, OsType.Unix, undefined); + +describe('UniversalPath path manipulation between platforms', function () { + it('C:\\devel\\test.mq5 [Windows, Windows-style Path, Outside Wine, Non-WSL]', function () { + assert.strictEqual(windowsHostWindowsPathDisabledWSL.isValid(), true); + assert.strictEqual(windowsHostWindowsPathDisabledWSL.isHostWindows, true); + assert.strictEqual(windowsHostWindowsPathDisabledWSL.isWinePath, false); + assert.strictEqual(windowsHostWindowsPathDisabledWSL.isWslMode, false); + assert.strictEqual(windowsHostWindowsPathDisabledWSL.asCliPath(), "C:\\devel\\test.mq5"); + assert.strictEqual(windowsHostWindowsPathDisabledWSL.asTargetPath(), "C:\\devel\\test.mq5"); + }); + + it('C:\\devel\\test.mq5 [Windows, Windows-style Path, Outside Wine, Through WSL]', function () { + assert.strictEqual(windowsHostWindowsPathEnabledWSL.isValid(), true); + assert.strictEqual(windowsHostWindowsPathEnabledWSL.isHostWindows, true); + assert.strictEqual(windowsHostWindowsPathEnabledWSL.isWinePath, false); + assert.strictEqual(windowsHostWindowsPathEnabledWSL.isWslMode, true); + assert.strictEqual(windowsHostWindowsPathEnabledWSL.asCliPath(), "Z:\\mnt\\c\\devel\\test.mq5"); + assert.strictEqual(windowsHostWindowsPathEnabledWSL.asTargetPath(), "C:\\devel\\test.mq5"); + }); + + // Normally, we can't specify Unix path under Windows with disabled WSL mode. + // However, we allow such path, so user could leave it when switching between Windows and WSL if he expects Windows-host path. + // Such path will be converted to C:\devel\test.mq5 for metatrader.exe CLI usage (asCliPath) and for Windows-host read/write purposes (asTargetPath). + it('/mnt/c/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, Non-WSL]', function () { + assert.strictEqual(windowsHostUnixPathUnderWindowsDisabledWSL.isValid(), true); + assert.strictEqual(windowsHostUnixPathUnderWindowsDisabledWSL.isHostWindows, true); + assert.strictEqual(windowsHostUnixPathUnderWindowsDisabledWSL.isWinePath, false); + assert.strictEqual(windowsHostUnixPathUnderWindowsDisabledWSL.isWslMode, false); + assert.strictEqual(windowsHostUnixPathUnderWindowsDisabledWSL.asCliPath(), "C:\\devel\\test.mq5"); + assert.strictEqual(windowsHostUnixPathUnderWindowsDisabledWSL.asTargetPath(), "C:\\devel\\test.mq5"); + }); + + it('/mnt/c/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, Through WSL]', function () { + assert.strictEqual(windowsHostUnixPathUnderWindowsEnabledWSL.isValid(), true); + assert.strictEqual(windowsHostUnixPathUnderWindowsEnabledWSL.isHostWindows, true); + assert.strictEqual(windowsHostUnixPathUnderWindowsEnabledWSL.isWinePath, false); + assert.strictEqual(windowsHostUnixPathUnderWindowsEnabledWSL.isWslMode, true); + assert.strictEqual(windowsHostUnixPathUnderWindowsEnabledWSL.asCliPath(), "Z:\\mnt\\c\\devel\\test.mq5"); + assert.strictEqual(windowsHostUnixPathUnderWindowsEnabledWSL.asTargetPath(), "/mnt/c/devel/test.mq5"); + }); + + // This path is invalid. We can't map under-Wine path into path in non-WSL mode on Windows host. + it('/home/USER/.wine/dosdevices/c:/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, At Wine Folder, Non-WSL]', function () { + assert.strictEqual(windowsHostUnixPathUnderWineDisabledWSL.isValid(), false); + assert.strictEqual(windowsHostUnixPathUnderWineDisabledWSL.isHostWindows, true); + assert.strictEqual(windowsHostUnixPathUnderWineDisabledWSL.isWinePath, false); + assert.strictEqual(windowsHostUnixPathUnderWineDisabledWSL.isWslMode, false); + }); + + // Path will be mapped to inside-Wine path for cliPath() and under Wine on Windows-host for asTargetPath(). + // @fixit Note that WSL machine name could be different than "Ubuntu". We need to detect it. + it('/home/USER/.wine/dosdevices/c:/devel/test.mq5 [Windows, Unix-style Path, Outside Wine, At Wine Folder, Through WSL]', function () { + assert.strictEqual(windowsHostUnixPathUnderWineEnabledWSL.isValid(), true); + assert.strictEqual(windowsHostUnixPathUnderWineEnabledWSL.isHostWindows, true); + assert.strictEqual(windowsHostUnixPathUnderWineEnabledWSL.isWinePath, false); + assert.strictEqual(windowsHostUnixPathUnderWineEnabledWSL.isWslMode, true); + assert.strictEqual(windowsHostUnixPathUnderWineEnabledWSL.asCliPath(), "C:\\devel\\test.mq5"); + assert.strictEqual(windowsHostUnixPathUnderWineEnabledWSL.asTargetPath(), "\\\\wsl$\\Ubuntu\\home\\USER\\.wine\\dosdevices\\c:\\devel\\test.mq5"); + }); + + // Note that we can use Windows path only in Windows-host or WSL mode (WSL mode will be auto-detected). + // Thus, on Unix, switching on WSL mode will make the path invalid. Marking path as inside-Wine would help with that. + it('C:\\devel\\test.mq5 [WSL(Unix), Windows-style Path, Inside Windows, Through-WSL]', function () { + assert.strictEqual(wslWindowsPathInsideWindows.isValid(), true); + assert.strictEqual(wslWindowsPathInsideWindows.isHostWindows, false); + assert.strictEqual(wslWindowsPathInsideWindows.isWinePath, false); + assert.strictEqual(wslWindowsPathInsideWindows.isWslMode, true); + assert.strictEqual(wslWindowsPathInsideWindows.asCliPath(), "Z:\\mnt\\c\\devel\\test.mq5"); + assert.strictEqual(wslWindowsPathInsideWindows.asTargetPath(), "/mnt/c/devel/test.mq5"); + }); + + // Note that in WSL or Unix we can use Windows-host path only in WSL mode (WSL mode will be auto-detected). + it('C:\\devel\\test.mq5 [WSL(Unix), Windows-style Path, Inside Wine, Through WSL]', function () { + assert.strictEqual(wslWindowsPathInsideWine.isValid(), true); + assert.strictEqual(wslWindowsPathInsideWine.isHostWindows, false); + assert.strictEqual(wslWindowsPathInsideWine.isWinePath, true); + assert.strictEqual(wslWindowsPathInsideWine.isWslMode, true); + assert.strictEqual(wslWindowsPathInsideWine.asCliPath(), "C:\\devel\\test.mq5"); + assert.match(wslWindowsPathInsideWine.asTargetPath(), /home\/.*?\/\.wine\/dosdevices\/c:\/devel\/test\.mq5/); + }); + + it('/home/devel/test.mq5 [Unix, Unix-style Path, Outside Wine, Non-WSL]', function () { + assert.strictEqual(unixHostUnixPath.isValid(), true); + assert.strictEqual(unixHostUnixPath.isHostWindows, false); + assert.strictEqual(unixHostUnixPath.isWinePath, false); + // WSL mode testing is not necessary. + assert.strictEqual(unixHostUnixPath.asCliPath(), "/home/devel/test.mq5"); + assert.strictEqual(unixHostUnixPath.asTargetPath(), "/home/devel/test.mq5"); + }); + + it('C:\\devel\\test.mq5 [Unix, Unix-style Path, Inside Wine, Non-WSL]', function () { + assert.strictEqual(unixHostUnixPathInsideWine.isValid(), true); + assert.strictEqual(unixHostUnixPathInsideWine.isHostWindows, false); + assert.strictEqual(unixHostUnixPathInsideWine.isWinePath, true); + // WSL mode testing is not necessary. + assert.strictEqual(unixHostUnixPathInsideWine.asCliPath(), "C:\\devel\\test.mq5"); + assert.match(unixHostUnixPathInsideWine.asTargetPath(), /home\/.*?\/\.wine\/dosdevices\/c:\/devel\/test\.mq5/); + }); + + // Such path is invalid as we can't map Windows path to Unix host outside the Wine or for non-Wine mode. + it('C:\\devel\\test.mq5 [Unix, Windows-style Path, Outside Wine, Non-WSL]', function () { + assert.strictEqual(unixHostWindowsPathOutsideWine.isValid(), false); + assert.strictEqual(unixHostWindowsPathOutsideWine.isHostWindows, false); + assert.strictEqual(unixHostWindowsPathOutsideWine.isWinePath, false); + // WSL mode testing is not necessary. + }); + + // @todo Include tests where Windows paths are slashed and Unix paths are backslashed (it should work in both cases). + + // We're done. +}); diff --git a/src/universalpath.js b/src/universalpath.js index 1f28633..9920f91 100644 --- a/src/universalpath.js +++ b/src/universalpath.js @@ -1,4 +1,6 @@ -const config = require('./config'); +// Note that "config" could be undefined if we're doing testing outside the VS Code. +const config = typeof global.it === 'function' ? undefined : require('./config'); + const paths = require('./paths'); /** @@ -231,7 +233,8 @@ class UniversalPath { if (this.isWslOverride !== undefined) return this.isWslOverride; - return config.current.MTE.PassThroughWSL; + // Note that "config" could be undefined if we're doing testing outside the VS Code. + return config?.current.MTE.PassThroughWSL ?? false; } }