Files
ry.kazcloud.dev/node_modules/yaml-language-server/out/server/test/arrUtils.test.js
Ryan Kazokas d181f77fb2
All checks were successful
Build and Push / build (push) Successful in 55s
Updates dockerfile
2026-02-16 15:09:37 -05:00

60 lines
2.6 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*---------------------------------------------------------------------------------------------
* Copyright (c) Red Hat. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
const arrUtils_1 = require("../src/languageservice/utils/arrUtils");
const assert = require("assert");
describe('Array Utils Tests', () => {
describe('Server - Array Utils', function () {
describe('getLineOffsets', function () {
it('No offset', () => {
const offsets = (0, arrUtils_1.getLineOffsets)('');
assert.equal(offsets.length, 0);
});
it('One offset', () => {
const offsets = (0, arrUtils_1.getLineOffsets)('test_offset');
assert.equal(offsets.length, 1);
assert.equal(offsets[0], 0);
});
it('One offset with \\r\\n', () => {
const offsets = (0, arrUtils_1.getLineOffsets)('first_offset\r\n');
assert.equal(offsets.length, 2);
assert.equal(offsets[0], 0);
});
it('Multiple offsets', () => {
const offsets = (0, arrUtils_1.getLineOffsets)('first_offset\n second_offset\n third_offset');
assert.equal(offsets.length, 3);
assert.equal(offsets[0], 0);
assert.equal(offsets[1], 13);
assert.equal(offsets[2], 29);
});
});
describe('removeDuplicatesObj', function () {
it('Remove one duplicate with property', () => {
const obj1 = {
test_key: 'test_value',
};
const obj2 = {
test_key: 'test_value',
};
const arr = [obj1, obj2];
const result = (0, arrUtils_1.removeDuplicatesObj)(arr);
assert.equal(result.length, 1);
});
it('Does not remove anything unneccessary', () => {
const obj1 = {
test_key: 'test_value',
};
const obj2 = {
other_key: 'test_value',
};
const arr = [obj1, obj2];
const result = (0, arrUtils_1.removeDuplicatesObj)(arr);
assert.equal(result.length, 2);
});
});
});
});
//# sourceMappingURL=arrUtils.test.js.map