mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-12-25 06:00:08 +01:00
improve the error messages and add tests for the filters
This commit is contained in:
parent
bd4c248292
commit
ebf82ac28c
@ -182,15 +182,42 @@ impl FilterCondition {
|
|||||||
Some(fid) => fid,
|
Some(fid) => fid,
|
||||||
None => return Ok(Empty),
|
None => return Ok(Empty),
|
||||||
};
|
};
|
||||||
let (lat_result, _) = pest_parse(items.next().unwrap());
|
let parameters_item = items.next().unwrap();
|
||||||
let (lng_result, _) = pest_parse(items.next().unwrap());
|
// We don't need more than 3 parameters, but to handle errors correctly we are still going
|
||||||
let lat = lat_result.map_err(UserError::InvalidFilter)?;
|
// to extract the first 4 parameters
|
||||||
let lng = lng_result.map_err(UserError::InvalidFilter)?;
|
let param_span = parameters_item.as_span();
|
||||||
let point = [lat, lng];
|
let parameters = parameters_item
|
||||||
let (distance_result, _) = pest_parse(items.next().unwrap());
|
.into_inner()
|
||||||
let distance = distance_result.map_err(UserError::InvalidFilter)?;
|
.take(4)
|
||||||
|
.map(|param| (param.clone(), param.as_span()))
|
||||||
Ok(Operator(fid, GeoLowerThan(point, distance)))
|
.map(|(param, span)| pest_parse(param).0.map(|arg| (arg, span)))
|
||||||
|
.collect::<StdResult<Vec<(f64, _)>, _>>()
|
||||||
|
.map_err(UserError::InvalidFilter)?;
|
||||||
|
if parameters.len() != 3 {
|
||||||
|
return Err(UserError::InvalidFilter(PestError::new_from_span(
|
||||||
|
ErrorVariant::CustomError {
|
||||||
|
message: format!("The `_geoRadius` filter expect three arguments: `_geoRadius(latitude, longitude, radius)`"),
|
||||||
|
},
|
||||||
|
// we want to point to the last parameters and if there was no parameters we
|
||||||
|
// point to the parenthesis
|
||||||
|
parameters.last().map(|param| param.1.clone()).unwrap_or(param_span),
|
||||||
|
)))?;
|
||||||
|
}
|
||||||
|
let (lat, lng, distance) = (¶meters[0], ¶meters[1], parameters[2].0);
|
||||||
|
if let Some(span) = (!(-181.0..181.).contains(&lat.0))
|
||||||
|
.then(|| &lat.1)
|
||||||
|
.or((!(-181.0..181.).contains(&lng.0)).then(|| &lng.1))
|
||||||
|
{
|
||||||
|
return Err(UserError::InvalidFilter(PestError::new_from_span(
|
||||||
|
ErrorVariant::CustomError {
|
||||||
|
message: format!(
|
||||||
|
"Latitude and longitude must be contained between -180 to 180 degrees."
|
||||||
|
),
|
||||||
|
},
|
||||||
|
span.clone(),
|
||||||
|
)))?;
|
||||||
|
}
|
||||||
|
Ok(Operator(fid, GeoLowerThan([lat.0, lng.0], distance)))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn between(
|
fn between(
|
||||||
@ -726,6 +753,86 @@ mod tests {
|
|||||||
assert_eq!(condition, expected);
|
assert_eq!(condition, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn geo_radius() {
|
||||||
|
let path = tempfile::tempdir().unwrap();
|
||||||
|
let mut options = EnvOpenOptions::new();
|
||||||
|
options.map_size(10 * 1024 * 1024); // 10 MB
|
||||||
|
let index = Index::new(options, &path).unwrap();
|
||||||
|
|
||||||
|
// Set the filterable fields to be the channel.
|
||||||
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
|
let mut builder = Settings::new(&mut wtxn, &index, 0);
|
||||||
|
builder.set_searchable_fields(vec![S("_geo"), S("price")]); // to keep the fields order
|
||||||
|
builder.set_filterable_fields(hashset! { S("_geo"), S("price") });
|
||||||
|
builder.execute(|_, _| ()).unwrap();
|
||||||
|
wtxn.commit().unwrap();
|
||||||
|
|
||||||
|
let rtxn = index.read_txn().unwrap();
|
||||||
|
// basic test
|
||||||
|
let condition =
|
||||||
|
FilterCondition::from_str(&rtxn, &index, "_geoRadius(12, 13.0005, 2000)").unwrap();
|
||||||
|
let expected = Operator(0, GeoLowerThan([12., 13.0005], 2000.));
|
||||||
|
assert_eq!(condition, expected);
|
||||||
|
|
||||||
|
// test the negation of the GeoLowerThan
|
||||||
|
let condition =
|
||||||
|
FilterCondition::from_str(&rtxn, &index, "NOT _geoRadius(50, 18, 2000.500)").unwrap();
|
||||||
|
let expected = Operator(0, GeoGreaterThan([50., 18.], 2000.500));
|
||||||
|
assert_eq!(condition, expected);
|
||||||
|
|
||||||
|
// composition of multiple operations
|
||||||
|
let condition = FilterCondition::from_str(
|
||||||
|
&rtxn,
|
||||||
|
&index,
|
||||||
|
"(NOT _geoRadius(1, 2, 300) AND _geoRadius(1.001, 2.002, 1000.300)) OR price <= 10",
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
let expected = Or(
|
||||||
|
Box::new(And(
|
||||||
|
Box::new(Operator(0, GeoGreaterThan([1., 2.], 300.))),
|
||||||
|
Box::new(Operator(0, GeoLowerThan([1.001, 2.002], 1000.300))),
|
||||||
|
)),
|
||||||
|
Box::new(Operator(1, LowerThanOrEqual(10.))),
|
||||||
|
);
|
||||||
|
assert_eq!(condition, expected);
|
||||||
|
|
||||||
|
// georadius don't have any parameters
|
||||||
|
let result = FilterCondition::from_str(&rtxn, &index, "_geoRadius()");
|
||||||
|
assert!(result.is_err());
|
||||||
|
let error = result.unwrap_err();
|
||||||
|
assert!(error.to_string().contains("The `_geoRadius` filter expect three arguments: `_geoRadius(latitude, longitude, radius)`"));
|
||||||
|
|
||||||
|
// georadius don't have enough parameters
|
||||||
|
let result = FilterCondition::from_str(&rtxn, &index, "_geoRadius(1, 2)");
|
||||||
|
assert!(result.is_err());
|
||||||
|
let error = result.unwrap_err();
|
||||||
|
assert!(error.to_string().contains("The `_geoRadius` filter expect three arguments: `_geoRadius(latitude, longitude, radius)`"));
|
||||||
|
|
||||||
|
// georadius have too many parameters
|
||||||
|
let result =
|
||||||
|
FilterCondition::from_str(&rtxn, &index, "_geoRadius(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)");
|
||||||
|
assert!(result.is_err());
|
||||||
|
let error = result.unwrap_err();
|
||||||
|
assert!(error.to_string().contains("The `_geoRadius` filter expect three arguments: `_geoRadius(latitude, longitude, radius)`"));
|
||||||
|
|
||||||
|
// georadius have a bad latitude
|
||||||
|
let result = FilterCondition::from_str(&rtxn, &index, "_geoRadius(-200, 150, 10)");
|
||||||
|
assert!(result.is_err());
|
||||||
|
let error = result.unwrap_err();
|
||||||
|
assert!(error
|
||||||
|
.to_string()
|
||||||
|
.contains("Latitude and longitude must be contained between -180 to 180 degrees."));
|
||||||
|
|
||||||
|
// georadius have a bad longitude
|
||||||
|
let result = FilterCondition::from_str(&rtxn, &index, "_geoRadius(-10, 181, 10)");
|
||||||
|
assert!(result.is_err());
|
||||||
|
let error = result.unwrap_err();
|
||||||
|
assert!(error
|
||||||
|
.to_string()
|
||||||
|
.contains("Latitude and longitude must be contained between -180 to 180 degrees."));
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn from_array() {
|
fn from_array() {
|
||||||
let path = tempfile::tempdir().unwrap();
|
let path = tempfile::tempdir().unwrap();
|
||||||
|
@ -8,6 +8,8 @@ char = _{ !(PEEK | "\\") ~ ANY
|
|||||||
| "\\" ~ (PEEK | "\\" | "/" | "b" | "f" | "n" | "r" | "t")
|
| "\\" ~ (PEEK | "\\" | "/" | "b" | "f" | "n" | "r" | "t")
|
||||||
| "\\" ~ ("u" ~ ASCII_HEX_DIGIT{4})}
|
| "\\" ~ ("u" ~ ASCII_HEX_DIGIT{4})}
|
||||||
|
|
||||||
|
// we deliberately choose to allow empty parameters to generate more specific error message later
|
||||||
|
parameters ={"(" ~ (value ~ ",")* ~ value? ~ ")"}
|
||||||
condition = _{between | eq | greater | less | geq | leq | neq}
|
condition = _{between | eq | greater | less | geq | leq | neq}
|
||||||
between = {key ~ value ~ "TO" ~ value}
|
between = {key ~ value ~ "TO" ~ value}
|
||||||
geq = {key ~ ">=" ~ value}
|
geq = {key ~ ">=" ~ value}
|
||||||
@ -16,7 +18,7 @@ neq = {key ~ "!=" ~ value}
|
|||||||
eq = {key ~ "=" ~ value}
|
eq = {key ~ "=" ~ value}
|
||||||
greater = {key ~ ">" ~ value}
|
greater = {key ~ ">" ~ value}
|
||||||
less = {key ~ "<" ~ value}
|
less = {key ~ "<" ~ value}
|
||||||
geo_radius = {"_geoRadius(" ~ value ~ "," ~ value ~ "," ~ value ~ ")"}
|
geo_radius = {"_geoRadius" ~ parameters }
|
||||||
|
|
||||||
prgm = {SOI ~ expr ~ EOI}
|
prgm = {SOI ~ expr ~ EOI}
|
||||||
expr = _{ ( term ~ (operation ~ term)* ) }
|
expr = _{ ( term ~ (operation ~ term)* ) }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user