isValidNumber.test.js 4.7 KB

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