123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- var getRegexLiteral = function (stringRegex) {
- try {
- /* eslint-disable no-new-func */
- return Function('return ' + stringRegex + ';')();
- /* eslint-enable no-new-func */
- } catch (e) { /**/ }
- };
- var describeIfSupportsDescriptors = Object.getOwnPropertyDescriptor ? describe : describe.skip;
- var callAllowsPrimitives = (function () { return this === 3; }.call(3));
- var ifCallAllowsPrimitivesIt = callAllowsPrimitives ? it : it.skip;
- var ifShimIt = (typeof process !== 'undefined' && process.env.NO_ES6_SHIM) ? it.skip : it;
- var hasSymbols = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' && typeof Symbol('') === 'symbol';
- var ifSymbolsDescribe = hasSymbols ? describe : describe.skip;
- var defaultRegex = (function () {
- // Chrome Canary 51 has an undefined RegExp#toSource, and
- // RegExp#toString produces `/undefined/`
- try {
- return RegExp.prototype.source ? String(RegExp.prototype) : '/(?:)/';
- } catch (e) {
- return '/(?:)/';
- }
- }());
- describe('RegExp', function () {
- ifShimIt('is on the exported object', function () {
- var exported = require('../');
- expect(exported.RegExp).to.equal(RegExp);
- });
- it('can be called with no arguments', function () {
- var regex = RegExp();
- expect(String(regex)).to.equal(defaultRegex);
- expect(regex).to.be.an.instanceOf(RegExp);
- });
- it('can be called with null/undefined', function () {
- expect(String(RegExp(null))).to.equal('/null/');
- expect(String(RegExp(undefined))).to.equal(defaultRegex);
- });
- describe('constructor', function () {
- it('allows a regex as the pattern', function () {
- var a = /a/g;
- var b = new RegExp(a);
- if (typeof a !== 'function') {
- // in browsers like Safari 5, new RegExp with a regex returns the same instance.
- expect(a).not.to.equal(b);
- }
- expect(a).to.eql(b);
- });
- it('allows a string with flags', function () {
- expect(new RegExp('a', 'mgi')).to.eql(/a/gim);
- expect(String(new RegExp('a', 'mgi'))).to.equal('/a/gim');
- });
- it('allows a regex with flags', function () {
- var a = /a/g;
- var makeRegex = function () { return new RegExp(a, 'mi'); };
- expect(makeRegex).not.to['throw'](TypeError);
- expect(makeRegex()).to.eql(/a/mi);
- expect(String(makeRegex())).to.equal('/a/im');
- });
- it('works with instanceof', function () {
- expect(/a/g).to.be.an.instanceOf(RegExp);
- expect(new RegExp('a', 'im')).to.be.an.instanceOf(RegExp);
- expect(new RegExp(/a/g, 'im')).to.be.an.instanceOf(RegExp);
- });
- it('has the right constructor', function () {
- expect(/a/g).to.have.property('constructor', RegExp);
- expect(new RegExp('a', 'im')).to.have.property('constructor', RegExp);
- expect(new RegExp(/a/g, 'im')).to.have.property('constructor', RegExp);
- });
- it('toStrings properly', function () {
- expect(Object.prototype.toString.call(/a/g)).to.equal('[object RegExp]');
- expect(Object.prototype.toString.call(new RegExp('a', 'g'))).to.equal('[object RegExp]');
- expect(Object.prototype.toString.call(new RegExp(/a/g, 'im'))).to.equal('[object RegExp]');
- });
- it('functions as a boxed primitive wrapper', function () {
- var regex = /a/g;
- expect(RegExp(regex)).to.equal(regex);
- });
- ifSymbolsDescribe('Symbol.replace', function () {
- if (!hasSymbols || typeof Symbol.replace === 'undefined') {
- return;
- }
- it('is a function', function () {
- expect(RegExp.prototype).to.have.property(Symbol.replace);
- expect(typeof RegExp.prototype[Symbol.replace]).to.equal('function');
- });
- it('is the same as String#replace', function () {
- var regex = /a/g;
- var str = 'abc';
- var symbolReplace = regex[Symbol.replace](str);
- var stringReplace = str.replace(regex);
- expect(Object.keys(symbolReplace)).to.eql(Object.keys(stringReplace));
- expect(symbolReplace).to.eql(stringReplace);
- });
- });
- ifSymbolsDescribe('Symbol.search', function () {
- if (!hasSymbols || typeof Symbol.search === 'undefined') {
- return;
- }
- it('is a function', function () {
- expect(RegExp.prototype).to.have.property(Symbol.search);
- expect(typeof RegExp.prototype[Symbol.search]).to.equal('function');
- });
- it('is the same as String#search', function () {
- var regex = /a/g;
- var str = 'abc';
- var symbolSearch = regex[Symbol.search](str);
- var stringSearch = str.search(regex);
- expect(Object.keys(symbolSearch)).to.eql(Object.keys(stringSearch));
- expect(symbolSearch).to.eql(stringSearch);
- });
- });
- ifSymbolsDescribe('Symbol.split', function () {
- if (!hasSymbols || typeof Symbol.split === 'undefined') {
- return;
- }
- it('is a function', function () {
- expect(RegExp.prototype).to.have.property(Symbol.split);
- expect(typeof RegExp.prototype[Symbol.split]).to.equal('function');
- });
- it('is the same as String#split', function () {
- var regex = /a/g;
- var str = 'abcabc';
- var symbolSplit = regex[Symbol.split](str, 1);
- var stringSplit = str.split(regex, 1);
- expect(Object.keys(symbolSplit)).to.eql(Object.keys(stringSplit));
- expect(symbolSplit).to.eql(stringSplit);
- });
- });
- ifSymbolsDescribe('Symbol.match', function () {
- if (!hasSymbols || typeof Symbol.match === 'undefined') {
- return;
- }
- var regexFalsyMatch;
- var nonregexTruthyMatch;
- beforeEach(function () {
- regexFalsyMatch = /./;
- regexFalsyMatch[Symbol.match] = false;
- nonregexTruthyMatch = { constructor: RegExp };
- nonregexTruthyMatch[Symbol.match] = true;
- });
- it('is a function', function () {
- expect(RegExp.prototype).to.have.property(Symbol.match);
- expect(typeof RegExp.prototype[Symbol.match]).to.equal('function');
- });
- it('is the same as String#match', function () {
- var regex = /a/g;
- var str = 'abc';
- var symbolMatch = regex[Symbol.match](str);
- var stringMatch = str.match(regex);
- expect(Object.keys(symbolMatch)).to.eql(Object.keys(stringMatch));
- expect(symbolMatch).to.eql(stringMatch);
- });
- it('function does not passthrough regexes with a falsy Symbol.match', function () {
- expect(RegExp(regexFalsyMatch)).not.to.equal(regexFalsyMatch);
- });
- it('constructor does not passthrough regexes with a falsy Symbol.match', function () {
- expect(new RegExp(regexFalsyMatch)).not.to.equal(regexFalsyMatch);
- });
- it('function passes through non-regexes with a truthy Symbol.match', function () {
- expect(RegExp(nonregexTruthyMatch)).to.equal(nonregexTruthyMatch);
- });
- it('constructor does not pass through non-regexes with a truthy Symbol.match', function () {
- expect(new RegExp(nonregexTruthyMatch)).not.to.equal(nonregexTruthyMatch);
- });
- });
- });
- describeIfSupportsDescriptors('#flags', function () {
- if (!Object.prototype.hasOwnProperty.call(RegExp.prototype, 'flags')) {
- return it('exists', function () {
- expect(RegExp.prototype).to.have.property('flags');
- });
- }
- var regexpFlagsDescriptor = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags');
- var testGenericRegExpFlags = function (object) {
- return regexpFlagsDescriptor.get.call(object);
- };
- it('has the correct descriptor', function () {
- expect(regexpFlagsDescriptor.configurable).to.equal(true);
- expect(regexpFlagsDescriptor.enumerable).to.equal(false);
- expect(regexpFlagsDescriptor.get instanceof Function).to.equal(true);
- expect(regexpFlagsDescriptor.set).to.equal(undefined);
- });
- ifCallAllowsPrimitivesIt('throws when not called on an object', function () {
- var nonObjects = ['', false, true, 42, NaN, null, undefined];
- nonObjects.forEach(function (nonObject) {
- expect(function () { testGenericRegExpFlags(nonObject); }).to['throw'](TypeError);
- });
- });
- it('has the correct flags on a literal', function () {
- expect((/a/g).flags).to.equal('g');
- expect((/a/i).flags).to.equal('i');
- expect((/a/m).flags).to.equal('m');
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'sticky')) {
- expect(getRegexLiteral('/a/y').flags).to.equal('y');
- }
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'unicode')) {
- expect(getRegexLiteral('/a/u').flags).to.equal('u');
- }
- });
- it('has the correct flags on a constructed RegExp', function () {
- expect(new RegExp('a', 'g').flags).to.equal('g');
- expect(new RegExp('a', 'i').flags).to.equal('i');
- expect(new RegExp('a', 'm').flags).to.equal('m');
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'sticky')) {
- expect(new RegExp('a', 'y').flags).to.equal('y');
- }
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'unicode')) {
- expect(new RegExp('a', 'u').flags).to.equal('u');
- }
- });
- it('returns flags sorted on a literal', function () {
- expect((/a/gim).flags).to.equal('gim');
- expect((/a/mig).flags).to.equal('gim');
- expect((/a/mgi).flags).to.equal('gim');
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'sticky')) {
- expect(getRegexLiteral('/a/gyim').flags).to.equal('gimy');
- }
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'unicode')) {
- expect(getRegexLiteral('/a/ugmi').flags).to.equal('gimu');
- }
- });
- it('returns flags sorted on a constructed RegExp', function () {
- expect(new RegExp('a', 'gim').flags).to.equal('gim');
- expect(new RegExp('a', 'mig').flags).to.equal('gim');
- expect(new RegExp('a', 'mgi').flags).to.equal('gim');
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'sticky')) {
- expect(new RegExp('a', 'mygi').flags).to.equal('gimy');
- }
- if (Object.prototype.hasOwnProperty.call(RegExp.prototype, 'unicode')) {
- expect(new RegExp('a', 'mugi').flags).to.equal('gimu');
- }
- });
- });
- describe('#toString()', function () {
- it('throws on null/undefined', function () {
- expect(function () { RegExp.prototype.toString.call(null); }).to['throw'](TypeError);
- expect(function () { RegExp.prototype.toString.call(undefined); }).to['throw'](TypeError);
- });
- it('has an undefined prototype', function () {
- expect(RegExp.prototype.toString.prototype).to.equal(undefined);
- });
- it('works on regexes', function () {
- expect(RegExp.prototype.toString.call(/a/g)).to.equal('/a/g');
- expect(RegExp.prototype.toString.call(new RegExp('a', 'g'))).to.equal('/a/g');
- });
- it('works on non-regexes', function () {
- expect(RegExp.prototype.toString.call({ source: 'abc', flags: '' })).to.equal('/abc/');
- expect(RegExp.prototype.toString.call({ source: 'abc', flags: 'xyz' })).to.equal('/abc/xyz');
- });
- ifSymbolsDescribe('Symbol.match', function () {
- if (!hasSymbols || typeof Symbol.match === 'undefined') {
- return;
- }
- it('accepts a non-regex with Symbol.match', function () {
- var obj = { source: 'abc', flags: 'def' };
- obj[Symbol.match] = RegExp.prototype[Symbol.match];
- expect(RegExp.prototype.toString.call(obj)).to.equal('/abc/def');
- });
- });
- });
- describe('Object properties', function () {
- it('does not have the nonstandard $input property', function () {
- expect(RegExp).not.to.have.property('$input'); // Chrome < 39, Opera < 26 have this
- });
- it('has "input" property', function () {
- expect(RegExp).to.have.ownProperty('input');
- expect(RegExp).to.have.ownProperty('$_');
- });
- it('has "last match" property', function () {
- expect(RegExp).to.have.ownProperty('lastMatch');
- expect(RegExp).to.have.ownProperty('$+');
- });
- it('has "last paren" property', function () {
- expect(RegExp).to.have.ownProperty('lastParen');
- expect(RegExp).to.have.ownProperty('$&');
- });
- it('has "leftContext" property', function () {
- expect(RegExp).to.have.ownProperty('leftContext');
- expect(RegExp).to.have.ownProperty('$`');
- });
- it('has "rightContext" property', function () {
- expect(RegExp).to.have.ownProperty('rightContext');
- expect(RegExp).to.have.ownProperty("$'");
- });
- it.skip('has "multiline" property', function () {
- // fails in IE 9, 10, 11
- expect(RegExp).to.have.ownProperty('multiline');
- expect(RegExp).to.have.ownProperty('$*');
- });
- it('has the right globals', function () {
- var matchVars = [
- '$1',
- '$2',
- '$3',
- '$4',
- '$5',
- '$6',
- '$7',
- '$8',
- '$9'
- ];
- matchVars.forEach(function (match) {
- expect(RegExp).to.have.property(match);
- });
- });
- describe('updates RegExp globals', function () {
- var str = 'abcdefghijklmnopq';
- var re;
- beforeEach(function () {
- re = /(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)(l)(m)(n)(o)(p)/;
- re.exec(str);
- });
- it('has "input"', function () {
- expect(RegExp.input).to.equal(str);
- expect(RegExp.$_).to.equal(str);
- });
- it('has "multiline"', function () {
- if (Object.prototype.hasOwnProperty.call(RegExp, 'multiline')) {
- expect(RegExp.multiline).to.equal(false);
- }
- if (Object.prototype.hasOwnProperty.call(RegExp, '$*')) {
- expect(RegExp['$*']).to.equal(false);
- }
- });
- it('has "lastMatch"', function () {
- expect(RegExp.lastMatch).to.equal('bcdefghijklmnop');
- expect(RegExp['$&']).to.equal('bcdefghijklmnop');
- });
- // in all but IE, this works. IE lastParen breaks after 11 tokens.
- it.skip('has "lastParen"', function () {
- expect(RegExp.lastParen).to.equal('p');
- expect(RegExp['$+']).to.equal('p');
- });
- it('has "lastParen" for less than 11 tokens', function () {
- (/(b)(c)(d)/).exec('abcdef');
- expect(RegExp.lastParen).to.equal('d');
- expect(RegExp['$+']).to.equal('d');
- });
- it('has "leftContext"', function () {
- expect(RegExp.leftContext).to.equal('a');
- expect(RegExp['$`']).to.equal('a');
- });
- it('has "rightContext"', function () {
- expect(RegExp.rightContext).to.equal('q');
- expect(RegExp["$'"]).to.equal('q');
- });
- it('has $1 - $9', function () {
- expect(RegExp.$1).to.equal('b');
- expect(RegExp.$2).to.equal('c');
- expect(RegExp.$3).to.equal('d');
- expect(RegExp.$4).to.equal('e');
- expect(RegExp.$5).to.equal('f');
- expect(RegExp.$6).to.equal('g');
- expect(RegExp.$7).to.equal('h');
- expect(RegExp.$8).to.equal('i');
- expect(RegExp.$9).to.equal('j');
- });
- });
- });
- });
|