You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							194 lines
						
					
					
						
							7.8 KiB
						
					
					
				
			
		
		
	
	
							194 lines
						
					
					
						
							7.8 KiB
						
					
					
				"use strict";
 | 
						|
 | 
						|
var _findNumbers = _interopRequireDefault(require("./findNumbers.js"));
 | 
						|
 | 
						|
var _metadataMax = _interopRequireDefault(require("../metadata.max.json"));
 | 
						|
 | 
						|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
 | 
						|
 | 
						|
describe('findNumbers', function () {
 | 
						|
  it('should find numbers', function () {
 | 
						|
    (0, _findNumbers["default"])('2133734253', 'US', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '2133734253',
 | 
						|
      country: 'US',
 | 
						|
      startsAt: 0,
 | 
						|
      endsAt: 10
 | 
						|
    }]);
 | 
						|
    (0, _findNumbers["default"])('(213) 373-4253', 'US', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '2133734253',
 | 
						|
      country: 'US',
 | 
						|
      startsAt: 0,
 | 
						|
      endsAt: 14
 | 
						|
    }]);
 | 
						|
    (0, _findNumbers["default"])('The number is +7 (800) 555-35-35 and not (213) 373-4253 as written in the document.', 'US', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      startsAt: 14,
 | 
						|
      endsAt: 32
 | 
						|
    }, {
 | 
						|
      phone: '2133734253',
 | 
						|
      country: 'US',
 | 
						|
      startsAt: 41,
 | 
						|
      endsAt: 55
 | 
						|
    }]); // Opening parenthesis issue.
 | 
						|
    // https://github.com/catamphetamine/libphonenumber-js/issues/252
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('The number is +7 (800) 555-35-35 and not (213) 373-4253 (that\'s not even in the same country!) as written in the document.', 'US', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      startsAt: 14,
 | 
						|
      endsAt: 32
 | 
						|
    }, {
 | 
						|
      phone: '2133734253',
 | 
						|
      country: 'US',
 | 
						|
      startsAt: 41,
 | 
						|
      endsAt: 55
 | 
						|
    }]); // No default country.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('The number is +7 (800) 555-35-35 as written in the document.', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      startsAt: 14,
 | 
						|
      endsAt: 32
 | 
						|
    }]); // Passing `options` and default country.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('The number is +7 (800) 555-35-35 as written in the document.', 'US', {
 | 
						|
      leniency: 'VALID'
 | 
						|
    }, _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      startsAt: 14,
 | 
						|
      endsAt: 32
 | 
						|
    }]); // Passing `options`.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('The number is +7 (800) 555-35-35 as written in the document.', {
 | 
						|
      leniency: 'VALID'
 | 
						|
    }, _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      startsAt: 14,
 | 
						|
      endsAt: 32
 | 
						|
    }]); // Not a phone number and a phone number.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('Digits 12 are not a number, but +7 (800) 555-35-35 is.', {
 | 
						|
      leniency: 'VALID'
 | 
						|
    }, _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      startsAt: 32,
 | 
						|
      endsAt: 50
 | 
						|
    }]); // Phone number extension.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('Date 02/17/2018 is not a number, but +7 (800) 555-35-35 ext. 123 is.', {
 | 
						|
      leniency: 'VALID'
 | 
						|
    }, _metadataMax["default"]).should.deep.equal([{
 | 
						|
      phone: '8005553535',
 | 
						|
      country: 'RU',
 | 
						|
      ext: '123',
 | 
						|
      startsAt: 37,
 | 
						|
      endsAt: 64
 | 
						|
    }]);
 | 
						|
  });
 | 
						|
  it('should find numbers (v2)', function () {
 | 
						|
    var phoneNumbers = (0, _findNumbers["default"])('The number is +7 (800) 555-35-35 ext. 1234 and not (213) 373-4253 as written in the document.', 'US', {
 | 
						|
      v2: true
 | 
						|
    }, _metadataMax["default"]);
 | 
						|
    phoneNumbers.length.should.equal(2);
 | 
						|
    phoneNumbers[0].startsAt.should.equal(14);
 | 
						|
    phoneNumbers[0].endsAt.should.equal(42);
 | 
						|
    phoneNumbers[0].number.number.should.equal('+78005553535');
 | 
						|
    phoneNumbers[0].number.nationalNumber.should.equal('8005553535');
 | 
						|
    phoneNumbers[0].number.country.should.equal('RU');
 | 
						|
    phoneNumbers[0].number.countryCallingCode.should.equal('7');
 | 
						|
    phoneNumbers[0].number.ext.should.equal('1234');
 | 
						|
    phoneNumbers[1].startsAt.should.equal(51);
 | 
						|
    phoneNumbers[1].endsAt.should.equal(65);
 | 
						|
    phoneNumbers[1].number.number.should.equal('+12133734253');
 | 
						|
    phoneNumbers[1].number.nationalNumber.should.equal('2133734253');
 | 
						|
    phoneNumbers[1].number.country.should.equal('US');
 | 
						|
    phoneNumbers[1].number.countryCallingCode.should.equal('1');
 | 
						|
  });
 | 
						|
  it('shouldn\'t find non-valid numbers', function () {
 | 
						|
    // Not a valid phone number for US.
 | 
						|
    (0, _findNumbers["default"])('1111111111', 'US', _metadataMax["default"]).should.deep.equal([]);
 | 
						|
  });
 | 
						|
  it('should find non-European digits', function () {
 | 
						|
    // E.g. in Iraq they don't write `+442323234` but rather `+٤٤٢٣٢٣٢٣٤`.
 | 
						|
    (0, _findNumbers["default"])('العَرَبِيَّة +٤٤٣٣٣٣٣٣٣٣٣٣عَرَبِيّ', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      country: 'GB',
 | 
						|
      phone: '3333333333',
 | 
						|
      startsAt: 14,
 | 
						|
      endsAt: 27
 | 
						|
    }]);
 | 
						|
  });
 | 
						|
  it('should work in edge cases', function () {
 | 
						|
    var thrower; // No input
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('', _metadataMax["default"]).should.deep.equal([]); // // No country metadata for this `require` country code
 | 
						|
    // thrower = () => findNumbers('123', 'ZZ', metadata)
 | 
						|
    // thrower.should.throw('Unknown country')
 | 
						|
    // Numerical `value`
 | 
						|
 | 
						|
    thrower = function thrower() {
 | 
						|
      return (0, _findNumbers["default"])(2141111111, 'US');
 | 
						|
    };
 | 
						|
 | 
						|
    thrower.should["throw"]('A text for parsing must be a string.'); // // No metadata
 | 
						|
    // thrower = () => findNumbers('')
 | 
						|
    // thrower.should.throw('`metadata` argument not passed')
 | 
						|
    // No metadata, no default country, no phone numbers.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('').should.deep.equal([]);
 | 
						|
  });
 | 
						|
  it('should find international numbers when passed a non-existent default country', function () {
 | 
						|
    var numbers = (0, _findNumbers["default"])('Phone: +7 (800) 555 35 35. National: 8 (800) 555-55-55', {
 | 
						|
      defaultCountry: 'XX',
 | 
						|
      v2: true
 | 
						|
    }, _metadataMax["default"]);
 | 
						|
    numbers.length.should.equal(1);
 | 
						|
    numbers[0].number.nationalNumber.should.equal('8005553535');
 | 
						|
  });
 | 
						|
  it('shouldn\'t find phone numbers which are not phone numbers', function () {
 | 
						|
    // A timestamp.
 | 
						|
    (0, _findNumbers["default"])('2012-01-02 08:00', 'US', _metadataMax["default"]).should.deep.equal([]); // A valid number (not a complete timestamp).
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('2012-01-02 08', 'US', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      country: 'US',
 | 
						|
      phone: '2012010208',
 | 
						|
      startsAt: 0,
 | 
						|
      endsAt: 13
 | 
						|
    }]); // Invalid parens.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('213(3734253', 'US', _metadataMax["default"]).should.deep.equal([]); // Letters after phone number.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('2133734253a', 'US', _metadataMax["default"]).should.deep.equal([]); // Valid phone (same as the one found in the UUID below).
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('The phone number is 231354125.', 'FR', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      country: 'FR',
 | 
						|
      phone: '231354125',
 | 
						|
      startsAt: 20,
 | 
						|
      endsAt: 29
 | 
						|
    }]); // Not a phone number (part of a UUID).
 | 
						|
    // Should parse in `{ extended: true }` mode.
 | 
						|
 | 
						|
    var possibleNumbers = (0, _findNumbers["default"])('The UUID is CA801c26f98cd16e231354125ad046e40b.', 'FR', {
 | 
						|
      extended: true
 | 
						|
    }, _metadataMax["default"]);
 | 
						|
    possibleNumbers.length.should.equal(1);
 | 
						|
    possibleNumbers[0].country.should.equal('FR');
 | 
						|
    possibleNumbers[0].phone.should.equal('231354125'); // Not a phone number (part of a UUID).
 | 
						|
    // Shouldn't parse by default.
 | 
						|
 | 
						|
    (0, _findNumbers["default"])('The UUID is CA801c26f98cd16e231354125ad046e40b.', 'FR', _metadataMax["default"]).should.deep.equal([]);
 | 
						|
  }); // https://gitlab.com/catamphetamine/libphonenumber-js/-/merge_requests/4
 | 
						|
 | 
						|
  it('should return correct `startsAt` and `endsAt` when matching "inner" candidates in a could-be-a-candidate substring', function () {
 | 
						|
    (0, _findNumbers["default"])('39945926 77200596 16533084', 'ID', _metadataMax["default"]).should.deep.equal([{
 | 
						|
      country: 'ID',
 | 
						|
      phone: '77200596',
 | 
						|
      startsAt: 9,
 | 
						|
      endsAt: 17
 | 
						|
    }]);
 | 
						|
  });
 | 
						|
});
 | 
						|
//# sourceMappingURL=findNumbers.test.js.map
 |