isValidNumber.test.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. "use strict";
  2. var _metadataMin = _interopRequireDefault(require("../../metadata.min.json"));
  3. var _isValidNumber2 = _interopRequireDefault(require("./isValidNumber.js"));
  4. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
  5. function isValidNumber() {
  6. for (var _len = arguments.length, parameters = new Array(_len), _key = 0; _key < _len; _key++) {
  7. parameters[_key] = arguments[_key];
  8. }
  9. parameters.push(_metadataMin["default"]);
  10. return _isValidNumber2["default"].apply(this, parameters);
  11. }
  12. describe('isValidNumber', function () {
  13. it('should validate phone numbers', function () {
  14. isValidNumber('+1-213-373-4253').should.equal(true);
  15. isValidNumber('+1-213-373').should.equal(false);
  16. isValidNumber('+1-213-373-4253', undefined).should.equal(true);
  17. isValidNumber('(213) 373-4253', 'US').should.equal(true);
  18. isValidNumber('(213) 37', 'US').should.equal(false);
  19. isValidNumber({
  20. country: 'US',
  21. phone: '2133734253'
  22. }).should.equal(true); // No "types" info: should return `true`.
  23. isValidNumber('+380972423740').should.equal(true);
  24. isValidNumber('0912345678', 'TW').should.equal(true); // Moible numbers starting 07624* are Isle of Man
  25. // which has its own "country code" "IM"
  26. // which is in the "GB" "country calling code" zone.
  27. // So while this number is for "IM" it's still supposed to
  28. // be valid when passed "GB" as a default country.
  29. isValidNumber('07624369230', 'GB').should.equal(true);
  30. });
  31. it('should refine phone number validation in case extended regular expressions are set for a country', function () {
  32. // Germany general validation must pass
  33. console.log('--------------------------');
  34. isValidNumber('961111111', 'UZ').should.equal(true);
  35. var phoneNumberTypePatterns = _metadataMin["default"].countries.UZ[11]; // Different regular expressions for precise national number validation.
  36. // `types` index in compressed array is `9` for v1.
  37. // For v2 it's 10.
  38. // For v3 it's 11.
  39. _metadataMin["default"].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
  40. isValidNumber('961111111', 'UZ').should.equal(false); // Extended validation must pass for a valid phone number
  41. isValidNumber('912345678', 'UZ').should.equal(true);
  42. _metadataMin["default"].countries.UZ[11] = phoneNumberTypePatterns;
  43. });
  44. it('should work in edge cases', function () {
  45. // No metadata
  46. var thrower = function thrower() {
  47. return (0, _isValidNumber2["default"])('+78005553535');
  48. };
  49. thrower.should["throw"]('`metadata` argument not passed'); // Non-phone-number characters in a phone number
  50. isValidNumber('+499821958a').should.equal(false);
  51. isValidNumber('88005553535x', 'RU').should.equal(false); // Doesn't have `types` regexps in default metadata.
  52. isValidNumber({
  53. country: 'UA',
  54. phone: '300000000'
  55. }).should.equal(true);
  56. isValidNumber({
  57. country: 'UA',
  58. phone: '200000000'
  59. }).should.equal(false); // Numerical `value`
  60. thrower = function thrower() {
  61. return isValidNumber(88005553535, 'RU');
  62. };
  63. thrower.should["throw"]('A phone number must either be a string or an object of shape { phone, [country] }.'); // Long country phone code
  64. isValidNumber('+3725555555').should.equal(true); // Invalid country
  65. thrower = function thrower() {
  66. return isValidNumber({
  67. phone: '8005553535',
  68. country: 'RUS'
  69. });
  70. };
  71. thrower.should["throw"]('Unknown country');
  72. });
  73. it('should accept phone number extensions', function () {
  74. // International
  75. isValidNumber('+12133734253 ext. 123').should.equal(true); // National
  76. isValidNumber('88005553535 x123', 'RU').should.equal(true);
  77. });
  78. });
  79. //# sourceMappingURL=isValidNumber.test.js.map