Skip to content

Commit dc8ac05

Browse files
committed
fix(lib): Ensure match and match_phrase handle empty Variables
We want the match and match_phrase helper functions to gracefully handle the case where a variable has no value, which internally is an empty string. This requires doing an explicit comparison to ensure that optional parameters are not set unless the variable is actually defined.
1 parent 4d0298f commit dc8ac05

File tree

4 files changed

+64
-2
lines changed

4 files changed

+64
-2
lines changed

lib/leaf/match.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = function( property, value, params) {
2525
};
2626

2727
optional_params.forEach(function(param) {
28-
if (params && params[param]) {
28+
if (params && params[param] && params[param].toString() !== '') {
2929
query.match[property][param] = params[param];
3030
}
3131
});

lib/leaf/match_phrase.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = function( property, value, params ) {
1414
const optional_params = ['boost', 'slop', 'analyzer'];
1515

1616
optional_params.forEach(function(param) {
17-
if (params && params[param]) {
17+
if (params && params[param] && params[param].toString() !== '') {
1818
query.match_phrase[property][param] = params[param];
1919
}
2020
});

test/lib/leaf/match.js

+31
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const match = require('../../../lib/leaf/match');
2+
const Variable = require('../../../lib/Variable');
23

34
module.exports.tests = {};
45

@@ -127,6 +128,36 @@ module.exports.tests.match = function(test, common) {
127128
t.deepEqual(query, expected, 'valid match query with analyzer');
128129
t.end();
129130
});
131+
132+
test('match query does not allow empty string as optional param value', function(t) {
133+
const query = match('property', 'value', { analyzer: ''});
134+
135+
const expected = {
136+
match: {
137+
property: {
138+
query: 'value'
139+
}
140+
}
141+
};
142+
143+
t.deepEqual(query, expected, 'valid match query with out empty string value');
144+
t.end();
145+
});
146+
147+
test('match query does not allow empty Variable as optional param value', function(t) {
148+
const query = match('property', 'value', { analyzer: new Variable() });
149+
150+
const expected = {
151+
match: {
152+
property: {
153+
query: 'value'
154+
}
155+
}
156+
};
157+
158+
t.deepEqual(query, expected, 'valid match query with out empty string value');
159+
t.end();
160+
});
130161
};
131162

132163
module.exports.all = function (tape, common) {

test/lib/leaf/match_phrase.js

+31
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const match_phrase = require('../../../lib/leaf/match_phrase');
2+
const Variable = require('../../../lib/Variable');
23

34
module.exports.tests = {};
45

@@ -79,6 +80,36 @@ module.exports.tests.match_phrase = function(test, common) {
7980
t.deepEqual(query, expected, 'valid match_phrase query with analyzer');
8081
t.end();
8182
});
83+
84+
test('match_phrase query does not allow empty string as optional param value', function(t) {
85+
const query = match_phrase('property', 'value', { slop: '' });
86+
87+
const expected = {
88+
match_phrase: {
89+
property: {
90+
query: 'value'
91+
}
92+
}
93+
};
94+
95+
t.deepEqual(query, expected, 'valid match_phrase query without empty string value');
96+
t.end();
97+
});
98+
99+
test('match_phrase query does not allow empty Variable as optional param value', function(t) {
100+
const query = match_phrase('property', 'value', { analyzer: new Variable() });
101+
102+
const expected = {
103+
match_phrase: {
104+
property: {
105+
query: 'value'
106+
}
107+
}
108+
};
109+
110+
t.deepEqual(query, expected, 'valid match_phrase query with out empty string value');
111+
t.end();
112+
});
82113
};
83114

84115
module.exports.all = function (tape, common) {

0 commit comments

Comments
 (0)