123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- import {MutableSearch, TokenType} from 'sentry/utils/tokenizeSearch';
- describe('utils/tokenizeSearch', function () {
- describe('new MutableSearch()', function () {
- const cases = [
- {
- name: 'should convert a basic query string to a query object',
- string: 'is:unresolved',
- object: {
- tokens: [{type: TokenType.FILTER, key: 'is', value: 'unresolved'}],
- },
- },
- {
- name: 'should convert quoted strings',
- string: 'is:unresolved browser:"Chrome 36"',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'is', value: 'unresolved'},
- {type: TokenType.FILTER, key: 'browser', value: 'Chrome 36'},
- ],
- },
- },
- {
- name: 'should populate the text query',
- string: 'python is:unresolved browser:"Chrome 36"',
- object: {
- tokens: [
- {type: TokenType.FREE_TEXT, value: 'python'},
- {type: TokenType.FILTER, key: 'is', value: 'unresolved'},
- {type: TokenType.FILTER, key: 'browser', value: 'Chrome 36'},
- ],
- },
- },
- {
- name: 'should tokenize the text query',
- string: 'python exception',
- object: {
- tokens: [
- {type: TokenType.FREE_TEXT, value: 'python'},
- {type: TokenType.FREE_TEXT, value: 'exception'},
- ],
- },
- },
- {
- name: 'should tokenize has condition',
- string: 'has:user has:browser',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'has', value: 'user'},
- {type: TokenType.FILTER, key: 'has', value: 'browser'},
- ],
- },
- },
- {
- name: 'should tokenize !has condition',
- string: '!has:user has:browser',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: '!has', value: 'user'},
- {type: TokenType.FILTER, key: 'has', value: 'browser'},
- ],
- },
- },
- {
- name: 'should remove spaces in the query',
- string: 'python is:unresolved exception',
- object: {
- tokens: [
- {type: TokenType.FREE_TEXT, value: 'python'},
- {type: TokenType.FILTER, key: 'is', value: 'unresolved'},
- {type: TokenType.FREE_TEXT, value: 'exception'},
- ],
- },
- },
- {
- name: 'should tokenize the quoted tags',
- string: 'event.type:error title:"QueryExecutionError: Code: 141."',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'event.type', value: 'error'},
- {
- type: TokenType.FILTER,
- key: 'title',
- value: 'QueryExecutionError: Code: 141.',
- },
- ],
- },
- },
- {
- name: 'should tokenize words with :: in them',
- string: 'key:Resque::DirtyExit',
- object: {
- tokens: [{type: TokenType.FILTER, key: 'key', value: 'Resque::DirtyExit'}],
- },
- },
- {
- name: 'tokens that begin with a colon are still queries',
- string: 'country:canada :unresolved',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'country', value: 'canada'},
- {type: TokenType.FREE_TEXT, value: ':unresolved'},
- ],
- },
- },
- {
- name: 'correctly preserve boolean operators',
- string: 'country:canada Or country:newzealand',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'country', value: 'canada'},
- {type: TokenType.OPERATOR, value: 'OR'},
- {type: TokenType.FILTER, key: 'country', value: 'newzealand'},
- ],
- },
- },
- {
- name: 'correctly preserve parens',
- string: '(country:canada Or country:newzealand) AnD province:pei',
- object: {
- tokens: [
- {type: TokenType.OPERATOR, value: '('},
- {type: TokenType.FILTER, key: 'country', value: 'canada'},
- {type: TokenType.OPERATOR, value: 'OR'},
- {type: TokenType.FILTER, key: 'country', value: 'newzealand'},
- {type: TokenType.OPERATOR, value: ')'},
- {type: TokenType.OPERATOR, value: 'AND'},
- {type: TokenType.FILTER, key: 'province', value: 'pei'},
- ],
- },
- },
- {
- name: 'query tags boolean and parens are all stitched back together correctly',
- string: '(a:a OR (b:b AND c d e)) OR f g:g',
- object: {
- tokens: [
- {type: TokenType.OPERATOR, value: '('},
- {type: TokenType.FILTER, key: 'a', value: 'a'},
- {type: TokenType.OPERATOR, value: 'OR'},
- {type: TokenType.OPERATOR, value: '('},
- {type: TokenType.FILTER, key: 'b', value: 'b'},
- {type: TokenType.OPERATOR, value: 'AND'},
- {type: TokenType.FREE_TEXT, value: 'c'},
- {type: TokenType.FREE_TEXT, value: 'd'},
- {type: TokenType.FREE_TEXT, value: 'e'},
- {type: TokenType.OPERATOR, value: ')'},
- {type: TokenType.OPERATOR, value: ')'},
- {type: TokenType.OPERATOR, value: 'OR'},
- {type: TokenType.FREE_TEXT, value: 'f'},
- {type: TokenType.FILTER, key: 'g', value: 'g'},
- ],
- },
- },
- {
- name: 'correctly preserve filters with functions',
- string: 'country:>canada OR coronaFree():<newzealand',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'country', value: '>canada'},
- {type: TokenType.OPERATOR, value: 'OR'},
- {type: TokenType.FILTER, key: 'coronaFree()', value: '<newzealand'},
- ],
- },
- },
- {
- name: 'correctly preserves leading/trailing escaped quotes',
- string: 'a:"\\"a\\""',
- object: {
- tokens: [{type: TokenType.FILTER, key: 'a', value: '\\"a\\"'}],
- },
- },
- {
- name: 'correctly tokenizes escaped quotes',
- string: 'a:"i \\" quote" b:"b\\"bb" c:"cc"',
- object: {
- tokens: [
- {type: TokenType.FILTER, key: 'a', value: 'i \\" quote'},
- {type: TokenType.FILTER, key: 'b', value: 'b\\"bb'},
- {type: TokenType.FILTER, key: 'c', value: 'cc'},
- ],
- },
- },
- ];
- for (const {name, string, object} of cases) {
- // eslint-disable-next-line jest/valid-title
- it(name, () => expect(new MutableSearch(string)).toEqual(object));
- }
- });
- describe('QueryResults operations', function () {
- it('add tokens to query object', function () {
- const results = new MutableSearch([]);
- results.addStringFilter('a:a');
- expect(results.formatString()).toEqual('a:a');
- results.addFilterValues('b', ['b']);
- expect(results.formatString()).toEqual('a:a b:b');
- results.addFilterValues('c', ['c1', 'c2']);
- expect(results.formatString()).toEqual('a:a b:b c:c1 c:c2');
- results.addFilterValues('d', ['d']);
- expect(results.formatString()).toEqual('a:a b:b c:c1 c:c2 d:d');
- results.addFilterValues('e', ['e1*e2\\e3']);
- expect(results.formatString()).toEqual('a:a b:b c:c1 c:c2 d:d e:"e1\\*e2\\e3"');
- results.addStringFilter('d:d2');
- expect(results.formatString()).toEqual(
- 'a:a b:b c:c1 c:c2 d:d e:"e1\\*e2\\e3" d:d2'
- );
- });
- it('add text searches to query object', function () {
- const results = new MutableSearch(['a:a']);
- results.addFreeText('b');
- expect(results.formatString()).toEqual('a:a b');
- expect(results.freeText).toEqual(['b']);
- results.addFreeText('c');
- expect(results.formatString()).toEqual('a:a b c');
- expect(results.freeText).toEqual(['b', 'c']);
- results.addStringFilter('d:d').addFreeText('e');
- expect(results.formatString()).toEqual('a:a b c d:d e');
- expect(results.freeText).toEqual(['b', 'c', 'e']);
- results.freeText = ['x', 'y'];
- expect(results.formatString()).toEqual('a:a d:d x y');
- expect(results.freeText).toEqual(['x', 'y']);
- results.freeText = ['a b c'];
- expect(results.formatString()).toEqual('a:a d:d "a b c"');
- expect(results.freeText).toEqual(['a b c']);
- results.freeText = ['invalid literal for int() with base'];
- expect(results.formatString()).toEqual(
- 'a:a d:d "invalid literal for int() with base"'
- );
- expect(results.freeText).toEqual(['invalid literal for int() with base']);
- });
- it('add ops to query object', function () {
- const results = new MutableSearch(['x', 'a:a', 'y']);
- results.addOp('OR');
- expect(results.formatString()).toEqual('x a:a y OR');
- results.addFreeText('z');
- expect(results.formatString()).toEqual('x a:a y OR z');
- results
- .addOp('(')
- .addStringFilter('b:b')
- .addOp('AND')
- .addStringFilter('c:c')
- .addOp(')');
- expect(results.formatString()).toEqual('x a:a y OR z ( b:b AND c:c )');
- });
- it('adds tags to query', function () {
- const results = new MutableSearch(['tag:value']);
- results.addStringFilter('new:too');
- expect(results.formatString()).toEqual('tag:value new:too');
- });
- it('setTag() replaces tags', function () {
- const results = new MutableSearch(['tag:value']);
- results.setFilterValues('tag', ['too']);
- expect(results.formatString()).toEqual('tag:too');
- });
- it('setTag() replaces tags in OR', function () {
- let results = new MutableSearch([
- '(',
- 'transaction:xyz',
- 'OR',
- 'transaction:abc',
- ')',
- ]);
- results.setFilterValues('transaction', ['def']);
- expect(results.formatString()).toEqual('transaction:def');
- results = new MutableSearch(['(transaction:xyz', 'OR', 'transaction:abc)']);
- results.setFilterValues('transaction', ['def']);
- expect(results.formatString()).toEqual('transaction:def');
- });
- it('does not remove boolean operators after setting tag values', function () {
- const results = new MutableSearch([
- '(',
- 'start:xyz',
- 'AND',
- 'end:abc',
- ')',
- 'OR',
- '(',
- 'start:abc',
- 'AND',
- 'end:xyz',
- ')',
- ]);
- results.setFilterValues('transaction', ['def']);
- expect(results.formatString()).toEqual(
- '( start:xyz AND end:abc ) OR ( start:abc AND end:xyz ) transaction:def'
- );
- });
- it('removes tags from query object', function () {
- let results = new MutableSearch(['x', 'a:a', 'b:b']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('x b:b');
- results = new MutableSearch(['a:a']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('');
- results = new MutableSearch(['x', 'a:a', 'a:a2']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('x');
- results = new MutableSearch(['a:a', 'OR', 'b:b']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('b:b');
- results = new MutableSearch(['a:a', 'OR', 'a:a1', 'AND', 'b:b']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('b:b');
- results = new MutableSearch(['(a:a', 'OR', 'b:b)']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('b:b');
- results = new MutableSearch(['(a:a', 'OR', 'b:b', 'OR', 'y)']);
- results.removeFilter('a');
- expect(results.formatString()).toEqual('( b:b OR y )');
- results = new MutableSearch(['(a:a', 'OR', '(b:b1', 'OR', '(c:c', 'OR', 'b:b2)))']);
- results.removeFilter('b');
- expect(results.formatString()).toEqual('( a:a OR c:c )');
- results = new MutableSearch(['(((a:a', 'OR', 'b:b1)', 'OR', 'c:c)', 'OR', 'b:b2)']);
- results.removeFilter('b');
- expect(results.formatString()).toEqual('( ( a:a OR c:c ) )');
- });
- it('can return the tag keys', function () {
- const results = new MutableSearch(['tag:value', 'other:value', 'additional text']);
- expect(results.getFilterKeys()).toEqual(['tag', 'other']);
- });
- it('getTagValues', () => {
- const results = new MutableSearch([
- 'tag:value',
- 'other:value',
- 'tag:value2',
- 'additional text',
- ]);
- expect(results.getFilterValues('tag')).toEqual(['value', 'value2']);
- expect(results.getFilterValues('nonexistent')).toEqual([]);
- });
- });
- describe('QueryResults.formatString', function () {
- const cases = [
- {
- name: 'should convert a basic object to a query string',
- object: new MutableSearch(['is:unresolved']),
- string: 'is:unresolved',
- },
- {
- name: 'should quote tags with spaces',
- object: new MutableSearch(['is:unresolved', 'browser:"Chrome 36"']),
- string: 'is:unresolved browser:"Chrome 36"',
- },
- {
- name: 'should stringify the query',
- object: new MutableSearch(['python', 'is:unresolved', 'browser:"Chrome 36"']),
- string: 'python is:unresolved browser:"Chrome 36"',
- },
- {
- name: 'should join tokenized queries',
- object: new MutableSearch(['python', 'exception']),
- string: 'python exception',
- },
- {
- name: 'should quote tags with spaces',
- object: new MutableSearch([
- 'oh',
- 'me',
- 'oh',
- 'my',
- 'browser:"Chrome 36"',
- 'browser:"Firefox 60"',
- ]),
- string: 'oh me oh my browser:"Chrome 36" browser:"Firefox 60"',
- },
- {
- name: 'should quote tags with parens',
- object: new MutableSearch([
- 'bad',
- 'things',
- 'repository_id:"UUID(\'long-value\')"',
- ]),
- string: 'bad things repository_id:"UUID(\'long-value\')"',
- },
- {
- // values with quotes do not need to be quoted
- // furthermore, timestamps contain colons
- // but the backend currently does not support quoted date formats
- name: 'should not quote tags with colon',
- object: new MutableSearch(['bad', 'things', 'user:"id:123"']),
- string: 'bad things user:id:123',
- },
- {
- name: 'should escape quote tags with double quotes',
- object: new MutableSearch([
- 'bad',
- 'things',
- 'name:"Ernest \\"Papa\\" Hemingway"',
- ]),
- string: 'bad things name:"Ernest \\"Papa\\" Hemingway"',
- },
- {
- name: 'should include blank strings',
- object: new MutableSearch(['bad', 'things', 'name:""']),
- string: 'bad things name:""',
- },
- {
- name: 'correctly preserve boolean operators',
- object: new MutableSearch(['country:canada', 'OR', 'country:newzealand']),
- string: 'country:canada OR country:newzealand',
- },
- {
- name: 'correctly preserve parens',
- object: new MutableSearch([
- '(country:canada',
- 'OR',
- 'country:newzealand)',
- 'AND',
- 'province:pei',
- ]),
- string: '( country:canada OR country:newzealand ) AND province:pei',
- },
- {
- name: 'query tags boolean and parens are all stitched back together correctly',
- object: new MutableSearch([
- '(a:a',
- 'OR',
- '(b:b',
- 'AND',
- 'c',
- 'd',
- 'e))',
- 'OR',
- 'f',
- 'g:g',
- ]),
- string: '( a:a OR ( b:b AND c d e ) ) OR f g:g',
- },
- {
- name: 'correctly preserve filters with functions',
- object: new MutableSearch(['country:>canada', 'OR', 'coronaFree():<newzealand']),
- string: 'country:>canada OR coronaFree():<newzealand',
- },
- {
- name: 'should quote tags with parens and spaces',
- object: new MutableSearch(['release:4.9.0 build (0.0.01)', 'error.handled:0']),
- string: 'release:"4.9.0 build (0.0.01)" error.handled:0',
- },
- ];
- for (const {name, string, object} of cases) {
- // eslint-disable-next-line jest/valid-title
- it(name, () => expect(object.formatString()).toEqual(string));
- }
- });
- });
|