2017-06-12 21:19:35 +00:00
|
|
|
// Copyright 2016 Mozilla
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
|
|
// specific language governing permissions and limitations under the License.
|
|
|
|
|
|
|
|
extern crate mentat_core;
|
2017-06-23 12:10:39 +00:00
|
|
|
extern crate mentat_db;
|
2017-06-12 21:19:35 +00:00
|
|
|
extern crate mentat_query;
|
|
|
|
extern crate mentat_query_algebrizer;
|
|
|
|
extern crate mentat_query_parser;
|
|
|
|
|
|
|
|
use mentat_core::{
|
|
|
|
Attribute,
|
|
|
|
Entid,
|
|
|
|
Schema,
|
|
|
|
ValueType,
|
|
|
|
};
|
|
|
|
|
2017-06-23 12:10:39 +00:00
|
|
|
use mentat_db::PartitionMap;
|
|
|
|
|
2017-06-12 21:19:35 +00:00
|
|
|
use mentat_query_parser::{
|
|
|
|
parse_find_string,
|
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_query::{
|
|
|
|
NamespacedKeyword,
|
|
|
|
};
|
|
|
|
|
|
|
|
use mentat_query_algebrizer::{
|
|
|
|
ConjoiningClauses,
|
|
|
|
algebrize,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// These are helpers that tests use to build Schema instances.
|
|
|
|
fn associate_ident(schema: &mut Schema, i: NamespacedKeyword, e: Entid) {
|
|
|
|
schema.entid_map.insert(e, i.clone());
|
|
|
|
schema.ident_map.insert(i.clone(), e);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_attribute(schema: &mut Schema, e: Entid, a: Attribute) {
|
|
|
|
schema.schema_map.insert(e, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn prepopulated_schema() -> Schema {
|
|
|
|
let mut schema = Schema::default();
|
|
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "name"), 65);
|
|
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "description"), 66);
|
|
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "parent"), 67);
|
|
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "age"), 68);
|
|
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "height"), 69);
|
|
|
|
add_attribute(&mut schema, 65, Attribute {
|
|
|
|
value_type: ValueType::String,
|
|
|
|
multival: false,
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
add_attribute(&mut schema, 66, Attribute {
|
|
|
|
value_type: ValueType::String,
|
|
|
|
fulltext: true,
|
|
|
|
multival: true,
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
add_attribute(&mut schema, 67, Attribute {
|
|
|
|
value_type: ValueType::String,
|
|
|
|
multival: true,
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
add_attribute(&mut schema, 68, Attribute {
|
|
|
|
value_type: ValueType::Long,
|
|
|
|
multival: false,
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
add_attribute(&mut schema, 69, Attribute {
|
|
|
|
value_type: ValueType::Long,
|
|
|
|
multival: false,
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
schema
|
|
|
|
}
|
|
|
|
|
2017-06-23 12:10:39 +00:00
|
|
|
fn alg(schema: &Schema, partition_map: &PartitionMap, input: &str) -> ConjoiningClauses {
|
2017-06-12 21:19:35 +00:00
|
|
|
let parsed = parse_find_string(input).expect("query input to have parsed");
|
2017-06-23 12:10:39 +00:00
|
|
|
algebrize(schema.into(), partition_map, parsed).expect("algebrizing to have succeeded").cc
|
2017-06-12 21:19:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_apply_fulltext() {
|
|
|
|
let schema = prepopulated_schema();
|
2017-06-23 12:10:39 +00:00
|
|
|
let partition_map = PartitionMap::default();
|
2017-06-12 21:19:35 +00:00
|
|
|
|
|
|
|
// If you use a non-FTS attribute, we will short-circuit.
|
|
|
|
let query = r#"[:find ?val
|
|
|
|
:where [(fulltext $ :foo/name "hello") [[?entity ?val _ _]]]]"#;
|
2017-06-23 12:10:39 +00:00
|
|
|
assert!(alg(&schema, &partition_map, query).is_known_empty());
|
2017-06-12 21:19:35 +00:00
|
|
|
|
|
|
|
// If you get a type mismatch, we will short-circuit.
|
|
|
|
let query = r#"[:find ?val
|
|
|
|
:where [(fulltext $ :foo/description "hello") [[?entity ?val ?tx ?score]]]
|
|
|
|
[?score :foo/bar _]]"#;
|
2017-06-23 12:10:39 +00:00
|
|
|
assert!(alg(&schema, &partition_map, query).is_known_empty());
|
2017-06-12 21:19:35 +00:00
|
|
|
}
|