isValidNumber.test.js 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. import metadata from '../../metadata.min.json' assert { type: 'json' };
  2. import _isValidNumber from './isValidNumber.js';
  3. function isValidNumber() {
  4. for (var _len = arguments.length, parameters = new Array(_len), _key = 0; _key < _len; _key++) {
  5. parameters[_key] = arguments[_key];
  6. }
  7. parameters.push(metadata);
  8. return _isValidNumber.apply(this, parameters);
  9. }
  10. describe('isValidNumber', function () {
  11. it('should validate phone numbers', function () {
  12. isValidNumber('+1-213-373-4253').should.equal(true);
  13. isValidNumber('+1-213-373').should.equal(false);
  14. isValidNumber('+1-213-373-4253', undefined).should.equal(true);
  15. isValidNumber('(213) 373-4253', 'US').should.equal(true);
  16. isValidNumber('(213) 37', 'US').should.equal(false);
  17. isValidNumber({
  18. country: 'US',
  19. phone: '2133734253'
  20. }).should.equal(true); // No "types" info: should return `true`.
  21. isValidNumber('+380972423740').should.equal(true);
  22. isValidNumber('0912345678', 'TW').should.equal(true); // Moible numbers starting 07624* are Isle of Man
  23. // which has its own "country code" "IM"
  24. // which is in the "GB" "country calling code" zone.
  25. // So while this number is for "IM" it's still supposed to
  26. // be valid when passed "GB" as a default country.
  27. isValidNumber('07624369230', 'GB').should.equal(true);
  28. });
  29. it('should refine phone number validation in case extended regular expressions are set for a country', function () {
  30. // Germany general validation must pass
  31. console.log('--------------------------');
  32. isValidNumber('961111111', 'UZ').should.equal(true);
  33. var phoneNumberTypePatterns = metadata.countries.UZ[11]; // Different regular expressions for precise national number validation.
  34. // `types` index in compressed array is `9` for v1.
  35. // For v2 it's 10.
  36. // For v3 it's 11.
  37. metadata.countries.UZ[11] = [["(?:6(?:1(?:22|3[124]|4[1-4]|5[123578]|64)|2(?:22|3[0-57-9]|41)|5(?:22|3[3-7]|5[024-8])|6\\d{2}|7(?:[23]\\d|7[69])|9(?:22|4[1-8]|6[135]))|7(?:0(?:5[4-9]|6[0146]|7[12456]|9[135-8])|1[12]\\d|2(?:22|3[1345789]|4[123579]|5[14])|3(?:2\\d|3[1578]|4[1-35-7]|5[1-57]|61)|4(?:2\\d|3[1-579]|7[1-79])|5(?:22|5[1-9]|6[1457])|6(?:22|3[12457]|4[13-8])|9(?:22|5[1-9])))\\d{5}"], ["6(?:1(?:2(?:98|2[01])|35[0-4]|50\\d|61[23]|7(?:[01][017]|4\\d|55|9[5-9]))|2(?:11\\d|2(?:[12]1|9[01379])|5(?:[126]\\d|3[0-4])|7\\d{2})|5(?:19[01]|2(?:27|9[26])|30\\d|59\\d|7\\d{2})|6(?:2(?:1[5-9]|2[0367]|38|41|52|60)|3[79]\\d|4(?:56|83)|7(?:[07]\\d|1[017]|3[07]|4[047]|5[057]|67|8[0178]|9[79])|9[0-3]\\d)|7(?:2(?:24|3[237]|4[5-9]|7[15-8])|5(?:7[12]|8[0589])|7(?:0\\d|[39][07])|9(?:0\\d|7[079]))|9(?:2(?:1[1267]|5\\d|3[01]|7[0-4])|5[67]\\d|6(?:2[0-26]|8\\d)|7\\d{2}))\\d{4}|7(?:0\\d{3}|1(?:13[01]|6(?:0[47]|1[67]|66)|71[3-69]|98\\d)|2(?:2(?:2[79]|95)|3(?:2[5-9]|6[0-6])|57\\d|7(?:0\\d|1[17]|2[27]|3[37]|44|5[057]|66|88))|3(?:2(?:1[0-6]|21|3[469]|7[159])|33\\d|5(?:0[0-4]|5[579]|9\\d)|7(?:[0-3579]\\d|4[0467]|6[67]|8[078])|9[4-6]\\d)|4(?:2(?:29|5[0257]|6[0-7]|7[1-57])|5(?:1[0-4]|8\\d|9[5-9])|7(?:0\\d|1[024589]|2[0127]|3[0137]|[46][07]|5[01]|7[5-9]|9[079])|9(?:7[015-9]|[89]\\d))|5(?:112|2(?:0\\d|2[29]|[49]4)|3[1568]\\d|52[6-9]|7(?:0[01578]|1[017]|[23]7|4[047]|[5-7]\\d|8[78]|9[079]))|6(?:2(?:2[1245]|4[2-4])|39\\d|41[179]|5(?:[349]\\d|5[0-2])|7(?:0[017]|[13]\\d|22|44|55|67|88))|9(?:22[128]|3(?:2[0-4]|7\\d)|57[05629]|7(?:2[05-9]|3[37]|4\\d|60|7[2579]|87|9[07])))\\d{4}|9[0-57-9]\\d{7}"]]; // Extended validation must not pass for an invalid phone number
  38. isValidNumber('961111111', 'UZ').should.equal(false); // Extended validation must pass for a valid phone number
  39. isValidNumber('912345678', 'UZ').should.equal(true);
  40. metadata.countries.UZ[11] = phoneNumberTypePatterns;
  41. });
  42. it('should work in edge cases', function () {
  43. // No metadata
  44. var thrower = function thrower() {
  45. return _isValidNumber('+78005553535');
  46. };
  47. thrower.should["throw"]('`metadata` argument not passed'); // Non-phone-number characters in a phone number
  48. isValidNumber('+499821958a').should.equal(false);
  49. isValidNumber('88005553535x', 'RU').should.equal(false); // Doesn't have `types` regexps in default metadata.
  50. isValidNumber({
  51. country: 'UA',
  52. phone: '300000000'
  53. }).should.equal(true);
  54. isValidNumber({
  55. country: 'UA',
  56. phone: '200000000'
  57. }).should.equal(false); // Numerical `value`
  58. thrower = function thrower() {
  59. return isValidNumber(88005553535, 'RU');
  60. };
  61. thrower.should["throw"]('A phone number must either be a string or an object of shape { phone, [country] }.'); // Long country phone code
  62. isValidNumber('+3725555555').should.equal(true); // Invalid country
  63. thrower = function thrower() {
  64. return isValidNumber({
  65. phone: '8005553535',
  66. country: 'RUS'
  67. });
  68. };
  69. thrower.should["throw"]('Unknown country');
  70. });
  71. it('should accept phone number extensions', function () {
  72. // International
  73. isValidNumber('+12133734253 ext. 123').should.equal(true); // National
  74. isValidNumber('88005553535 x123', 'RU').should.equal(true);
  75. });
  76. });
  77. //# sourceMappingURL=isValidNumber.test.js.map