e21156a754
* Refactor AttributeCache populator code for use from pull. * Pre: add to_value_rc to Cloned. * Pre: add From<StructuredMap> for Binding. * Pre: clarify Store::open_empty. * Pre: StructuredMap cleanup. * Pre: clean up a doc test. * Split projector crate. Pass schema to projector. * CLI support for printing bindings. * Add and use ConjoiningClauses::derive_types_from_find_spec. * Define pull types. * Implement pull on top of the attribute cache layer. * Add pull support to the projector. * Parse pull expressions. * Add simple pull support to connection objects. * Tests for pull. * Compile with Rust 1.25. The only choice involved in this commit is that of replacing the anonymous lifetime '_ with a named lifetime for the cache; since we're accepting a Known, which includes the cache in question, I think it's clear that we expect the function to apply to any given cache lifetime. * Review comments. * Bail on unnamed attribute. * Make assert_parse_failure_contains safe to use. * Rework query parser to report better errors for pull. * Test for mixed wildcard and simple attribute.
115 lines
3.5 KiB
Rust
115 lines
3.5 KiB
Rust
// 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;
|
|
extern crate mentat_query;
|
|
extern crate mentat_query_algebrizer;
|
|
extern crate mentat_query_parser;
|
|
extern crate mentat_query_projector;
|
|
|
|
use mentat_core::{
|
|
Attribute,
|
|
Entid,
|
|
Schema,
|
|
ValueType,
|
|
};
|
|
|
|
use mentat_query_parser::{
|
|
parse_find_string,
|
|
};
|
|
|
|
use mentat_query::{
|
|
NamespacedKeyword,
|
|
};
|
|
|
|
use mentat_query_algebrizer::{
|
|
Known,
|
|
algebrize,
|
|
};
|
|
|
|
use mentat_query_projector::{
|
|
query_projection,
|
|
};
|
|
|
|
// 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.attribute_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", "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, 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
|
|
}
|
|
|
|
#[test]
|
|
fn test_aggregate_unsuitable_type() {
|
|
let schema = prepopulated_schema();
|
|
|
|
let query = r#"[:find (avg ?e)
|
|
:where
|
|
[?e :foo/age ?a]]"#;
|
|
|
|
// While the query itself algebrizes and parses…
|
|
let parsed = parse_find_string(query).expect("query input to have parsed");
|
|
let algebrized = algebrize(Known::for_schema(&schema), parsed).expect("query algebrizes");
|
|
|
|
// … when we look at the projection list, we cannot reconcile the types.
|
|
assert!(query_projection(&schema, &algebrized).is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_the_without_max_or_min() {
|
|
let schema = prepopulated_schema();
|
|
|
|
let query = r#"[:find (the ?e) ?a
|
|
:where
|
|
[?e :foo/age ?a]]"#;
|
|
|
|
// While the query itself algebrizes and parses…
|
|
let parsed = parse_find_string(query).expect("query input to have parsed");
|
|
let algebrized = algebrize(Known::for_schema(&schema), parsed).expect("query algebrizes");
|
|
|
|
// … when we look at the projection list, we cannot reconcile the types.
|
|
let projection = query_projection(&schema, &algebrized);
|
|
assert!(projection.is_err());
|
|
use ::mentat_query_projector::errors::{
|
|
ErrorKind,
|
|
Error,
|
|
};
|
|
match projection {
|
|
Result::Err(Error(ErrorKind::InvalidProjection(s) , _)) => {
|
|
assert_eq!(s.as_str(), "Warning: used `the` without `min` or `max`.");
|
|
},
|
|
_ => panic!(),
|
|
}
|
|
}
|