Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: split tests of various validators #2159

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
804 changes: 0 additions & 804 deletions test/validators.test.js

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions test/validators/isEmpty.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import test from '../testFunctions';

describe('isEmpty', () => {
it('should validate null strings', () => {
test({
validator: 'isEmpty',
valid: [
'',
],
invalid: [
' ',
'foo',
'3',
],
});
test({
validator: 'isEmpty',
args: [{ ignore_whitespace: false }],
valid: [
'',
],
invalid: [
' ',
'foo',
'3',
],
});
test({
validator: 'isEmpty',
args: [{ ignore_whitespace: true }],
valid: [
'',
' ',
],
invalid: [
'foo',
'3',
],
});
});

it('should error on non-string input', () => {
test({
validator: 'isEmpty',
error: [undefined, null, [], NaN],
});
});
});
105 changes: 105 additions & 0 deletions test/validators/isFQDN.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
import test from '../testFunctions';

describe('isIQDN', () => {
it('should validate FQDN', () => {
test({
validator: 'isFQDN',
valid: [
'domain.com',
'dom.plato',
'a.domain.co',
'foo--bar.com',
'xn--froschgrn-x9a.com',
'rebecca.blackfriday',
'1337.com',
],
invalid: [
'abc',
'256.0.0.0',
'_.com',
'*.some.com',
's!ome.com',
'domain.com/',
'/more.com',
'domain.com�',
'domain.co\u00A0m',
'domain.co\u1680m',
'domain.co\u2006m',
'domain.co\u2028m',
'domain.co\u2029m',
'domain.co\u202Fm',
'domain.co\u205Fm',
'domain.co\u3000m',
'domain.com\uDC00',
'domain.co\uEFFFm',
'domain.co\uFDDAm',
'domain.co\uFFF4m',
'domain.com©',
'example.0',
'192.168.0.9999',
'192.168.0',
],
});
});
it('should validate FQDN with trailing dot option', () => {
test({
validator: 'isFQDN',
args: [
{ allow_trailing_dot: true },
],
valid: [
'example.com.',
],
});
});
it('should invalidate FQDN when not require_tld', () => {
test({
validator: 'isFQDN',
args: [
{ require_tld: false },
],
invalid: [
'example.0',
'192.168.0',
'192.168.0.9999',
],
});
});
it('should validate FQDN when not require_tld but allow_numeric_tld', () => {
test({
validator: 'isFQDN',
args: [
{ allow_numeric_tld: true, require_tld: false },
],
valid: [
'example.0',
'192.168.0',
'192.168.0.9999',
],
});
});
it('should validate FQDN with wildcard option', () => {
test({
validator: 'isFQDN',
args: [
{ allow_wildcard: true },
],
valid: [
'*.example.com',
'*.shop.example.com',
],
});
});
it('should validate FQDN with required allow_trailing_dot, allow_underscores and allow_numeric_tld options', () => {
test({
validator: 'isFQDN',
args: [
{ allow_trailing_dot: true, allow_underscores: true, allow_numeric_tld: true },
],
valid: [
'abc.efg.g1h.',
'as1s.sad3s.ssa2d.',
],
});
});
});
51 changes: 51 additions & 0 deletions test/validators/isHSL.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import test from '../testFunctions';

describe('isHSL', () => {
it('should validate HSL color strings', () => {
test({
validator: 'isHSL',
valid: [
'hsl(360,0000000000100%,000000100%)',
'hsl(000010, 00000000001%, 00000040%)',
'HSL(00000,0000000000100%,000000100%)',
'hsL(0, 0%, 0%)',
'hSl( 360 , 100% , 100% )',
'Hsl( 00150 , 000099% , 01% )',
'hsl(01080, 03%, 4%)',
'hsl(-540, 03%, 4%)',
'hsla(+540, 03%, 4%)',
'hsla(+540, 03%, 4%, 500)',
'hsl(+540deg, 03%, 4%, 500)',
'hsl(+540gRaD, 03%, 4%, 500)',
'hsl(+540.01e-98rad, 03%, 4%, 500)',
'hsl(-540.5turn, 03%, 4%, 500)',
'hsl(+540, 03%, 4%, 500e-01)',
'hsl(+540, 03%, 4%, 500e+80)',
'hsl(4.71239rad, 60%, 70%)',
'hsl(270deg, 60%, 70%)',
'hsl(200, +.1%, 62%, 1)',
'hsl(270 60% 70%)',
'hsl(200, +.1e-9%, 62e10%, 1)',
'hsl(.75turn, 60%, 70%)',
// 'hsl(200grad+.1%62%/1)', //supposed to pass, but need to handle delimiters
'hsl(200grad +.1% 62% / 1)',
'hsl(270, 60%, 50%, .15)',
'hsl(270, 60%, 50%, 15%)',
'hsl(270 60% 50% / .15)',
'hsl(270 60% 50% / 15%)',
],
invalid: [
'hsl (360,0000000000100%,000000100%)',
'hsl(0260, 100 %, 100%)',
'hsl(0160, 100%, 100%, 100 %)',
'hsl(-0160, 100%, 100a)',
'hsl(-0160, 100%, 100)',
'hsl(-0160 100%, 100%, )',
'hsl(270 deg, 60%, 70%)',
'hsl( deg, 60%, 70%)',
'hsl(, 60%, 70%)',
'hsl(3000deg, 70%)',
],
});
});
});
147 changes: 147 additions & 0 deletions test/validators/isHash.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
import test from '../testFunctions';

describe('isHash', () => {
it('should validate hash strings', () => {
['md5', 'md4', 'ripemd128', 'tiger128'].forEach((algorithm) => {
test({
validator: 'isHash',
args: [algorithm],
valid: [
'd94f3f016ae679c3008de268209132f2',
'751adbc511ccbe8edf23d486fa4581cd',
'88dae00e614d8f24cfd5a8b3f8002e93',
'0bf1c35032a71a14c2f719e5a14c1e96',
'd94f3F016Ae679C3008de268209132F2',
'88DAE00e614d8f24cfd5a8b3f8002E93',
],
invalid: [
'q94375dj93458w34',
'39485729348',
'%&FHKJFvk',
'KYT0bf1c35032a71a14c2f719e5a1',
],
});
});

['crc32', 'crc32b'].forEach((algorithm) => {
test({
validator: 'isHash',
args: [algorithm],
valid: [
'd94f3f01',
'751adbc5',
'88dae00e',
'0bf1c350',
'88DAE00e',
'751aDBc5',
],
invalid: [
'KYT0bf1c35032a71a14c2f719e5a14c1',
'q94375dj93458w34',
'q943',
'39485729348',
'%&FHKJFvk',
],
});
});

['sha1', 'tiger160', 'ripemd160'].forEach((algorithm) => {
test({
validator: 'isHash',
args: [algorithm],
valid: [
'3ca25ae354e192b26879f651a51d92aa8a34d8d3',
'aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d',
'beb8c3f30da46be179b8df5f5ecb5e4b10508230',
'efd5d3b190e893ed317f38da2420d63b7ae0d5ed',
'AAF4c61ddCC5e8a2dabede0f3b482cd9AEA9434D',
'3ca25AE354e192b26879f651A51d92aa8a34d8D3',
],
invalid: [
'KYT0bf1c35032a71a14c2f719e5a14c1',
'KYT0bf1c35032a71a14c2f719e5a14c1dsjkjkjkjkkjk',
'q94375dj93458w34',
'39485729348',
'%&FHKJFvk',
],
});
});

test({
validator: 'isHash',
args: ['sha256'],
valid: [
'2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824',
'1d996e033d612d9af2b44b70061ee0e868bfd14c2dd90b129e1edeb7953e7985',
'80f70bfeaed5886e33536bcfa8c05c60afef5a0e48f699a7912d5e399cdcc441',
'579282cfb65ca1f109b78536effaf621b853c9f7079664a3fbe2b519f435898c',
'2CF24dba5FB0a30e26E83b2AC5b9E29E1b161e5C1fa7425E73043362938b9824',
'80F70bFEAed5886e33536bcfa8c05c60aFEF5a0e48f699a7912d5e399cdCC441',
],
invalid: [
'KYT0bf1c35032a71a14c2f719e5a14c1',
'KYT0bf1c35032a71a14c2f719e5a14c1dsjkjkjkjkkjk',
'q94375dj93458w34',
'39485729348',
'%&FHKJFvk',
],
});
test({
validator: 'isHash',
args: ['sha384'],
valid: [
'3fed1f814d28dc5d63e313f8a601ecc4836d1662a19365cbdcf6870f6b56388850b58043f7ebf2418abb8f39c3a42e31',
'b330f4e575db6e73500bd3b805db1a84b5a034e5d21f0041d91eec85af1dfcb13e40bb1c4d36a72487e048ac6af74b58',
'bf547c3fc5841a377eb1519c2890344dbab15c40ae4150b4b34443d2212e5b04aa9d58865bf03d8ae27840fef430b891',
'fc09a3d11368386530f985dacddd026ae1e44e0e297c805c3429d50744e6237eb4417c20ffca8807b071823af13a3f65',
'3fed1f814d28dc5d63e313f8A601ecc4836d1662a19365CBDCf6870f6b56388850b58043f7ebf2418abb8f39c3a42e31',
'b330f4E575db6e73500bd3b805db1a84b5a034e5d21f0041d91EEC85af1dfcb13e40bb1c4d36a72487e048ac6af74b58',
],
invalid: [
'KYT0bf1c35032a71a14c2f719e5a14c1',
'KYT0bf1c35032a71a14c2f719e5a14c1dsjkjkjkjkkjk',
'q94375dj93458w34',
'39485729348',
'%&FHKJFvk',
],
});
test({
validator: 'isHash',
args: ['sha512'],
valid: [
'9b71d224bd62f3785d96d46ad3ea3d73319bfbc2890caadae2dff72519673ca72323c3d99ba5c11d7c7acc6e14b8c5da0c4663475c2e5c3adef46f73bcdec043',
'83c586381bf5ba94c8d9ba8b6b92beb0997d76c257708742a6c26d1b7cbb9269af92d527419d5b8475f2bb6686d2f92a6649b7f174c1d8306eb335e585ab5049',
'45bc5fa8cb45ee408c04b6269e9f1e1c17090c5ce26ffeeda2af097735b29953ce547e40ff3ad0d120e5361cc5f9cee35ea91ecd4077f3f589b4d439168f91b9',
'432ac3d29e4f18c7f604f7c3c96369a6c5c61fc09bf77880548239baffd61636d42ed374f41c261e424d20d98e320e812a6d52865be059745fdb2cb20acff0ab',
'9B71D224bd62f3785D96d46ad3ea3d73319bFBC2890CAAdae2dff72519673CA72323C3d99ba5c11d7c7ACC6e14b8c5DA0c4663475c2E5c3adef46f73bcDEC043',
'432AC3d29E4f18c7F604f7c3c96369A6C5c61fC09Bf77880548239baffd61636d42ed374f41c261e424d20d98e320e812a6d52865be059745fdb2cb20acff0ab',
],
invalid: [
'KYT0bf1c35032a71a14c2f719e5a14c1',
'KYT0bf1c35032a71a14c2f719e5a14c1dsjkjkjkjkkjk',
'q94375dj93458w34',
'39485729348',
'%&FHKJFvk',
],
});
test({
validator: 'isHash',
args: ['tiger192'],
valid: [
'6281a1f098c5e7290927ed09150d43ff3990a0fe1a48267c',
'56268f7bc269cf1bc83d3ce42e07a85632394737918f4760',
'46fc0125a148788a3ac1d649566fc04eb84a746f1a6e4fa7',
'7731ea1621ae99ea3197b94583d034fdbaa4dce31a67404a',
'6281A1f098c5e7290927ed09150d43ff3990a0fe1a48267C',
'46FC0125a148788a3AC1d649566fc04eb84A746f1a6E4fa7',
],
invalid: [
'KYT0bf1c35032a71a14c2f719e5a14c1',
'KYT0bf1c35032a71a14c2f719e5a14c1dsjkjkjkjkkjk',
'q94375dj93458w34',
'39485729348',
'%&FHKJFvk',
],
});
});
});
22 changes: 22 additions & 0 deletions test/validators/isHexColor.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import test from '../testFunctions';

describe('isHexColor', () => {
it('should validate hexadecimal color strings', () => {
test({
validator: 'isHexColor',
valid: [
'#ff0000ff',
'#ff0034',
'#CCCCCC',
'0f38',
'fff',
'#f00',
],
invalid: [
'#ff',
'fff0a',
'#ff12FG',
],
});
});
});
Loading