open-vault/ui/tests/unit/utils/trim-right-test.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

53 lines
2 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import trimRight from 'vault/utils/trim-right';
import { module, test } from 'qunit';
module('Unit | Util | trim right', function () {
test('it trims extension array from end of string', function (assert) {
const trimmedName = trimRight('my-file-name-is-cool.json', ['.json', '.txt', '.hcl', '.policy']);
assert.strictEqual(trimmedName, 'my-file-name-is-cool');
});
test('it only trims extension array from the very end of string', function (assert) {
const trimmedName = trimRight('my-file-name.json-is-cool.json', ['.json', '.txt', '.hcl', '.policy']);
assert.strictEqual(trimmedName, 'my-file-name.json-is-cool');
});
test('it returns string as is if trim array is empty', function (assert) {
const trimmedName = trimRight('my-file-name-is-cool.json', []);
assert.strictEqual(trimmedName, 'my-file-name-is-cool.json');
});
test('it returns string as is if trim array is not passed in', function (assert) {
const trimmedName = trimRight('my-file-name-is-cool.json');
assert.strictEqual(trimmedName, 'my-file-name-is-cool.json');
});
test('it allows the last extension to also be part of the file name', function (assert) {
const trimmedName = trimRight('my-policy.hcl', ['.json', '.txt', '.hcl', '.policy']);
assert.strictEqual(trimmedName, 'my-policy');
});
test('it allows the last extension to also be part of the file name and the extenstion', function (assert) {
const trimmedName = trimRight('my-policy.policy', ['.json', '.txt', '.hcl', '.policy']);
assert.strictEqual(trimmedName, 'my-policy');
});
test('it passes endings into the regex unescaped when passing false as the third arg', function (assert) {
const trimmedName = trimRight('my-policypolicy', ['.json', '.txt', '.hcl', '.policy'], false);
// the . gets interpreted as regex wildcard so it also trims the y character
assert.strictEqual(trimmedName, 'my-polic');
});
});