Initial commit

This commit is contained in:
olemorud
2023-03-14 12:58:38 +01:00
commit fd580bda03
5 changed files with 119 additions and 0 deletions

38
test/unittest.js Normal file
View File

@@ -0,0 +1,38 @@
const assert = require('node:assert');
const test = require('node:test');
const _testing = require('../src/index');
test('regex escaping test', () => {
const escapeRegExp = _testing.escapeRegExp;
const st = [
{str: "C:\\Users\\", ok: "C\\:\\\\Users\\\\"},
{str: "/usr/bin/", ok: "\\/usr\\/bin\\/"},
{str: "(\\\\d+):", ok: "\\(\\\\\\\\d\\+\\)\\:"}
];
st.forEach( (x) => {
const result = escapeRegExp(x.str);
console.log(result, x.ok);
assert.strictEqual(result, x.ok);
});
});
test('variable regex matching test', () => {
const variable = _testing.variable;
const expected = [
{needle: "foo", haystack: "this sentence contains variable ${{foo}}", ok: true},
{needle: "bar", haystack: "finds \n ${{bar}} \n in multilines", ok: true},
{needle: "baz", haystack: "${{ baz }}", ok: true},
{needle: "", haystack: "${{aaa}}", ok: false},
{needle: "bad", haystack: "{{bad}}", ok: false},
{needle: "", haystack: "${{}}", ok: true},
];
expected.forEach( (x) => {
console.log(x);
const match = x.haystack.match(variable(x.needle));
assert.strictEqual( match !== null, x.ok );
});
});