-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhelpers.test.ts
40 lines (34 loc) · 1.47 KB
/
helpers.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// SPDX-License-Identifier: Apache-2.0
import {expect} from 'chai';
import {describe, it} from 'mocha';
import each from 'mocha-each';
import {Flags as flags} from '../../../src/commands/flags.js';
import * as helpers from '../../../src/core/helpers.js';
describe('Helpers', () => {
each([
{input: '', output: []},
{input: 'node1', output: ['node1']},
{input: 'node1,node3', output: ['node1', 'node3']},
]).it('should parse node aliases for input', ({input, output}: {input: string; output: string[]}) => {
expect(helpers.parseNodeAliases(input, undefined, undefined)).to.deep.equal(output);
});
each([
{input: [], output: []},
{input: [1, 2, 3], output: [1, 2, 3]},
{input: ['a', '2', '3'], output: ['a', '2', '3']},
]).it('should clone array for input', ({input, output}: {input: number[]; output: number[]}) => {
const clonedArray = helpers.cloneArray(input);
expect(clonedArray).to.deep.equal(output);
expect(clonedArray).not.to.equal(input); // ensure cloning creates a new array
});
it('Should parse argv to args with boolean flag correctly', () => {
const argv = {[flags.quiet.name]: true};
const result = flags.stringifyArgv(argv);
expect(result).to.equal(`--${flags.quiet.name}`);
});
it('Should parse argv to args with flag correctly', () => {
const argv = {[flags.namespace.name]: 'VALUE'};
const result = flags.stringifyArgv(argv);
expect(result).to.equal(`--${flags.namespace.name} VALUE`);
});
});