mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 22:19:41 -08:00
226 lines
8.1 KiB
TypeScript
226 lines
8.1 KiB
TypeScript
|
/**
|
||
|
* @jest-environment jsdom
|
||
|
*/
|
||
|
|
||
|
import { stringExtensions } from '@/Extensions/StringExtensions';
|
||
|
import { dateExtensions } from '@/Extensions/DateExtensions';
|
||
|
import { evaluate } from './Helpers';
|
||
|
|
||
|
describe('Data Transformation Functions', () => {
|
||
|
describe('String Data Transformation Functions', () => {
|
||
|
test('.isBlank() should work correctly on a string that is not empty', () => {
|
||
|
expect(evaluate('={{"NotBlank".isBlank()}}')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('.isBlank() should work correctly on a string that is empty', () => {
|
||
|
expect(evaluate('={{"".isBlank()}}')).toEqual(true);
|
||
|
});
|
||
|
|
||
|
test('.getOnlyFirstCharacters() should work correctly on a string', () => {
|
||
|
expect(evaluate('={{"myNewField".getOnlyFirstCharacters(5)}}')).toEqual('myNew');
|
||
|
|
||
|
expect(evaluate('={{"myNewField".getOnlyFirstCharacters(10)}}')).toEqual('myNewField');
|
||
|
|
||
|
expect(
|
||
|
evaluate('={{"myNewField".getOnlyFirstCharacters(5).length >= "myNewField".length}}'),
|
||
|
).toEqual(false);
|
||
|
|
||
|
expect(evaluate('={{DateTime.now().toLocaleString().getOnlyFirstCharacters(2)}}')).toEqual(
|
||
|
stringExtensions.functions.getOnlyFirstCharacters(
|
||
|
// @ts-ignore
|
||
|
dateExtensions.functions.toLocaleString(new Date(), []),
|
||
|
[2],
|
||
|
),
|
||
|
);
|
||
|
});
|
||
|
|
||
|
test('.sayHi() should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "abc".sayHi() }}')).toEqual('hi abc');
|
||
|
});
|
||
|
|
||
|
test('.encrypt() should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "12345".encrypt("sha256") }}')).toEqual(
|
||
|
stringExtensions.functions.encrypt('12345', ['sha256']),
|
||
|
);
|
||
|
|
||
|
expect(evaluate('={{ "12345".encrypt("sha256") }}')).not.toEqual(
|
||
|
stringExtensions.functions.encrypt('12345', ['MD5']),
|
||
|
);
|
||
|
|
||
|
expect(evaluate('={{ "12345".encrypt("MD5") }}')).toEqual(
|
||
|
stringExtensions.functions.encrypt('12345', ['MD5']),
|
||
|
);
|
||
|
|
||
|
expect(evaluate('={{ "12345".hash("sha256") }}')).toEqual(
|
||
|
'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5',
|
||
|
);
|
||
|
});
|
||
|
|
||
|
test('.hash() alias should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "12345".hash("sha256") }}')).toEqual(
|
||
|
'5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5',
|
||
|
);
|
||
|
});
|
||
|
|
||
|
test('.urlDecode should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "string%20with%20spaces".urlDecode(false) }}')).toEqual(
|
||
|
'string with spaces',
|
||
|
);
|
||
|
});
|
||
|
|
||
|
test('.urlEncode should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "string with spaces".urlEncode(false) }}')).toEqual(
|
||
|
'string%20with%20spaces',
|
||
|
);
|
||
|
});
|
||
|
|
||
|
test('.stripTags should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "<html><head>test</head></html>".stripTags() }}')).toEqual('test');
|
||
|
});
|
||
|
|
||
|
test('.removeMarkdown should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "<html><head>test</head></html>".removeMarkdown() }}')).toEqual('test');
|
||
|
});
|
||
|
|
||
|
test('.toLowerCase should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "TEST".toLowerCase() }}')).toEqual('test');
|
||
|
});
|
||
|
|
||
|
test('.toDate should work correctly on a date string', () => {
|
||
|
expect(evaluate('={{ "2022-09-01T19:42:28.164Z".toDate() }}')).toEqual(
|
||
|
new Date('2022-09-01T19:42:28.164Z'),
|
||
|
);
|
||
|
});
|
||
|
|
||
|
test('.toBoolean should work correctly on a string', () => {
|
||
|
const validTrue = ['y', 'yes', 't', 'true', '1', 'YES'];
|
||
|
for (const v of validTrue) {
|
||
|
expect(evaluate(`={{ "${v}".toBoolean() }}`)).toEqual(true);
|
||
|
}
|
||
|
|
||
|
const validFalse = ['n', 'no', 'f', 'false', '0', 'NO'];
|
||
|
for (const v of validFalse) {
|
||
|
expect(evaluate(`={{ "${v}".toBoolean() }}`)).toEqual(false);
|
||
|
}
|
||
|
|
||
|
expect(evaluate('={{ "maybe".toBoolean() }}')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('.isTrue should work correctly on a string', () => {
|
||
|
const validTrue = ['y', 'yes', 't', 'true', '1', 'YES'];
|
||
|
for (const v of validTrue) {
|
||
|
expect(evaluate(`={{ "${v}".isTrue() }}`)).toEqual(true);
|
||
|
}
|
||
|
|
||
|
const validFalse = ['n', 'no', 'f', 'false', '0', 'NO'];
|
||
|
for (const v of validFalse) {
|
||
|
expect(evaluate(`={{ "${v}".isTrue() }}`)).toEqual(false);
|
||
|
}
|
||
|
|
||
|
expect(evaluate('={{ "maybe".isTrue() }}')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('.isFalse should work correctly on a string', () => {
|
||
|
const validTrue = ['y', 'yes', 't', 'true', '1', 'YES'];
|
||
|
for (const v of validTrue) {
|
||
|
expect(evaluate(`={{ "${v}".isFalse() }}`)).toEqual(false);
|
||
|
}
|
||
|
|
||
|
const validFalse = ['n', 'no', 'f', 'false', '0', 'NO'];
|
||
|
for (const v of validFalse) {
|
||
|
expect(evaluate(`={{ "${v}".isFalse() }}`)).toEqual(true);
|
||
|
}
|
||
|
|
||
|
expect(evaluate('={{ "maybe".isFalse() }}')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('.toFloat should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "1.1".toFloat() }}')).toEqual(1.1);
|
||
|
expect(evaluate('={{ "1.1".toDecimalNumber() }}')).toEqual(1.1);
|
||
|
});
|
||
|
|
||
|
test('.toInt should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "1.1".toInt() }}')).toEqual(1);
|
||
|
expect(evaluate('={{ "1.1".toWholeNumber() }}')).toEqual(1);
|
||
|
expect(evaluate('={{ "1.5".toInt() }}')).toEqual(1);
|
||
|
expect(evaluate('={{ "1.5".toWholeNumber() }}')).toEqual(1);
|
||
|
});
|
||
|
|
||
|
test('.quote should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "test".quote() }}')).toEqual('"test"');
|
||
|
expect(evaluate('={{ "\\"test\\"".quote() }}')).toEqual('"\\"test\\""');
|
||
|
});
|
||
|
|
||
|
test('.isNumeric should work correctly on a string', () => {
|
||
|
expect(evaluate('={{ "".isNumeric() }}')).toEqual(false);
|
||
|
expect(evaluate('={{ "asdf".isNumeric() }}')).toEqual(false);
|
||
|
expect(evaluate('={{ "1234".isNumeric() }}')).toEqual(true);
|
||
|
expect(evaluate('={{ "4e4".isNumeric() }}')).toEqual(true);
|
||
|
expect(evaluate('={{ "4.4".isNumeric() }}')).toEqual(true);
|
||
|
});
|
||
|
|
||
|
test('.isUrl should work on a string', () => {
|
||
|
expect(evaluate('={{ "https://example.com/".isUrl() }}')).toEqual(true);
|
||
|
expect(evaluate('={{ "example.com".isUrl() }}')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('.isDomain should work on a string', () => {
|
||
|
expect(evaluate('={{ "example.com".isDomain() }}')).toEqual(true);
|
||
|
expect(evaluate('={{ "asdf".isDomain() }}')).toEqual(false);
|
||
|
expect(evaluate('={{ "https://example.com/".isDomain() }}')).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('.toSnakeCase should work on a string', () => {
|
||
|
expect(evaluate('={{ "I am a test!".toSnakeCase() }}')).toEqual('i_am_a_test');
|
||
|
expect(evaluate('={{ "i_am_a_test".toSnakeCase() }}')).toEqual('i_am_a_test');
|
||
|
});
|
||
|
|
||
|
test('.toSentenceCase should work on a string', () => {
|
||
|
expect(
|
||
|
evaluate(
|
||
|
'={{ "i am a test! i have multiple types of Punctuation. or do i?".toSentenceCase() }}',
|
||
|
),
|
||
|
).toEqual('I am a test! I have multiple types of punctuation. Or do i?');
|
||
|
expect(evaluate('={{ "i am a test!".toSentenceCase() }}')).toEqual('I am a test!');
|
||
|
expect(evaluate('={{ "i am a test".toSentenceCase() }}')).toEqual('I am a test');
|
||
|
});
|
||
|
|
||
|
test('.toTitleCase should work on a string', () => {
|
||
|
expect(
|
||
|
evaluate(
|
||
|
'={{ "i am a test! i have multiple types of Punctuation. or do i?".toTitleCase() }}',
|
||
|
),
|
||
|
).toEqual('I Am A Test! I Have Multiple Types Of Punctuation. Or Do I?');
|
||
|
expect(evaluate('={{ "i am a test!".toTitleCase() }}')).toEqual('I Am A Test!');
|
||
|
expect(evaluate('={{ "i am a test".toTitleCase() }}')).toEqual('I Am A Test');
|
||
|
});
|
||
|
|
||
|
test('.extractUrl should work on a string', () => {
|
||
|
expect(
|
||
|
evaluate(
|
||
|
'={{ "I am a test with a url: https://example.net/ and I am a test with an email: test@example.org".extractUrl() }}',
|
||
|
),
|
||
|
).toEqual('https://example.net/');
|
||
|
});
|
||
|
|
||
|
test('.extractDomain should work on a string', () => {
|
||
|
expect(evaluate('={{ "test@example.org".extractDomain() }}')).toEqual('example.org');
|
||
|
expect(evaluate('={{ "https://example.org/".extractDomain() }}')).toEqual('example.org');
|
||
|
});
|
||
|
|
||
|
test('.extractEmail should work on a string', () => {
|
||
|
expect(
|
||
|
evaluate(
|
||
|
'={{ "I am a test with a url: https://example.net/ and I am a test with an email: test@example.org".extractEmail() }}',
|
||
|
),
|
||
|
).toEqual('test@example.org');
|
||
|
});
|
||
|
|
||
|
test('.isEmail should work on a string', () => {
|
||
|
expect(evaluate('={{ "test@example.com".isEmail() }}')).toEqual(true);
|
||
|
expect(evaluate('={{ "aaaaaaaa".isEmail() }}')).toEqual(false);
|
||
|
expect(evaluate('={{ "test @ n8n".isEmail() }}')).toEqual(false);
|
||
|
});
|
||
|
});
|
||
|
});
|