use serde_json_bytes::Value as JSON;
use shape::Shape;
use shape::ShapeCase;
use crate::connectors::ConnectSpec;
use crate::connectors::json_selection::ApplyToError;
use crate::connectors::json_selection::ApplyToInternal;
use crate::connectors::json_selection::MethodArgs;
use crate::connectors::json_selection::ShapeContext;
use crate::connectors::json_selection::VarsWithPathsMap;
use crate::connectors::json_selection::immutable::InputPath;
use crate::connectors::json_selection::location::Ranged;
use crate::connectors::json_selection::location::WithRange;
use crate::connectors::json_selection::methods::common::number_value_as_float;
use crate::impl_arrow_method;
impl_arrow_method!(ContainsMethod, contains_method, contains_shape);
fn contains_method(
method_name: &WithRange<String>,
method_args: Option<&MethodArgs>,
data: &JSON,
vars: &VarsWithPathsMap,
input_path: &InputPath<JSON>,
spec: ConnectSpec,
) -> (Option<JSON>, Vec<ApplyToError>) {
if let Some(MethodArgs { args, .. }) = method_args
&& let [arg] = args.as_slice()
{
let (value_opt, arg_errors) = arg.apply_to_path(data, vars, input_path, spec);
let mut apply_to_errors = arg_errors;
let matches = value_opt.and_then(|search_value| {
if let JSON::Array(array) = data {
for item in array {
let is_equal = match (item, &search_value) {
(JSON::Number(left), JSON::Number(right)) => {
let left =
match number_value_as_float(left, method_name, input_path, spec) {
Ok(f) => f,
Err(err) => {
apply_to_errors.push(err);
return None;
}
};
let right =
match number_value_as_float(right, method_name, input_path, spec) {
Ok(f) => f,
Err(err) => {
apply_to_errors.push(err);
return None;
}
};
left == right
}
_ => item == &search_value,
};
if is_equal {
return Some(JSON::Bool(true));
}
}
Some(JSON::Bool(false))
} else {
apply_to_errors.push(ApplyToError::new(
format!(
"Method ->{} requires an array input, but got: {data}",
method_name.as_ref(),
),
input_path.to_vec(),
method_name.range(),
spec,
));
None
}
});
return (matches, apply_to_errors);
}
(
None,
vec![ApplyToError::new(
format!(
"Method ->{} requires exactly one argument",
method_name.as_ref()
),
input_path.to_vec(),
method_name.range(),
spec,
)],
)
}
#[allow(dead_code)] fn contains_shape(
context: &ShapeContext,
method_name: &WithRange<String>,
method_args: Option<&MethodArgs>,
input_shape: Shape,
dollar_shape: Shape,
) -> Shape {
let arg_count = method_args.map(|args| args.args.len()).unwrap_or_default();
if arg_count > 1 {
return Shape::error(
format!(
"Method ->{} requires only one argument, but {arg_count} were provided",
method_name.as_ref(),
),
vec![],
);
}
let Some(first_arg) = method_args.and_then(|args| args.args.first()) else {
return Shape::error(
format!("Method ->{} requires one argument", method_name.as_ref()),
method_name.shape_location(context.source_id()),
);
};
let arg_shape = first_arg.compute_output_shape(context, input_shape.clone(), dollar_shape);
if !Shape::tuple([], []).accepts(&input_shape) && !input_shape.accepts(&Shape::unknown([])) {
return Shape::error(
format!(
"Method ->{} requires an array input, but got: {input_shape}",
method_name.as_ref()
),
method_name.shape_location(context.source_id()),
);
}
let ShapeCase::Array { prefix, tail } = input_shape.case() else {
return Shape::bool(method_name.shape_location(context.source_id()));
};
if let Some(item) = prefix
.iter()
.find(|item| !(arg_shape.accepts(item) || item.accepts(&arg_shape)))
{
return Shape::error_with_partial(
format!(
"Method ->{} can only compare values of the same type. Got {item} == {arg_shape}.",
method_name.as_ref()
),
Shape::bool_value(false, method_name.shape_location(context.source_id())),
method_name.shape_location(context.source_id()),
);
}
if !(tail.is_none() || arg_shape.accepts(tail) || tail.accepts(&arg_shape)) {
return Shape::error_with_partial(
format!(
"Method ->{} can only compare values of the same type. Got {arg_shape} == {tail}.",
method_name.as_ref()
),
Shape::bool_value(false, method_name.shape_location(context.source_id())),
method_name.shape_location(context.source_id()),
);
}
Shape::bool(method_name.shape_location(context.source_id()))
}
#[cfg(test)]
mod method_tests {
use serde_json_bytes::json;
use crate::connectors::ConnectSpec;
use crate::connectors::json_selection::ApplyToError;
use crate::selection;
#[test]
fn contains_should_return_true_when_array_contains_value() {
assert_eq!(
selection!(
r#"
result: value->contains(123)
"#
)
.apply_to(&json!({ "value": [123, 456, 789] })),
(
Some(json!({
"result": true,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_false_when_array_does_not_contain_value() {
assert_eq!(
selection!(
r#"
result: value->contains(123)
"#
)
.apply_to(&json!({ "value": [456, 789] })),
(
Some(json!({
"result": false,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_true_when_array_contains_numbers_of_different_types() {
assert_eq!(
selection!(
r#"
result: value->contains(1.0)
"#
)
.apply_to(&json!({ "value": [1, 2.5, 3] })),
(
Some(json!({
"result": true,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_true_when_array_contains_string() {
assert_eq!(
selection!(
r#"
result: value->contains("hello")
"#
)
.apply_to(&json!({ "value": ["hello", "world", "test"] })),
(
Some(json!({
"result": true,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_false_when_array_does_not_contain_string() {
assert_eq!(
selection!(
r#"
result: value->contains("hello")
"#
)
.apply_to(&json!({ "value": ["world", "test"] })),
(
Some(json!({
"result": false,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_true_when_array_contains_bool() {
assert_eq!(
selection!(
r#"
result: value->contains(true)
"#
)
.apply_to(&json!({ "value": [true, false] })),
(
Some(json!({
"result": true,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_false_when_array_does_not_contain_bool() {
assert_eq!(
selection!(
r#"
result: value->contains(true)
"#
)
.apply_to(&json!({ "value": [false] })),
(
Some(json!({
"result": false,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_true_when_array_contains_object() {
assert_eq!(
selection!(
r#"
result: value->contains({"name": "John", "age": 30})
"#
)
.apply_to(
&json!({ "value": [{"name": "John", "age": 30}, {"name": "Jane", "age": 25}] })
),
(
Some(json!({
"result": true,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_false_when_array_does_not_contain_object() {
assert_eq!(
selection!(
r#"
result: value->contains({"name": "John", "age": 30})
"#
)
.apply_to(&json!({ "value": [{"name": "Jane", "age": 25}] })),
(
Some(json!({
"result": false,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_true_when_array_contains_array() {
assert_eq!(
selection!(
r#"
result: value->contains([1, 2, 3])
"#
)
.apply_to(&json!({ "value": [[1, 2, 3], [4, 5, 6]] })),
(
Some(json!({
"result": true,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_false_when_array_does_not_contain_array() {
assert_eq!(
selection!(
r#"
result: value->contains([1, 2, 3])
"#
)
.apply_to(&json!({ "value": [[4, 5, 6], [7, 8, 9]] })),
(
Some(json!({
"result": false,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_false_for_empty_array() {
assert_eq!(
selection!(
r#"
result: value->contains(123)
"#
)
.apply_to(&json!({ "value": [] })),
(
Some(json!({
"result": false,
})),
vec![],
),
);
}
#[test]
fn contains_should_return_error_when_no_arguments_provided() {
let result = selection!(
r#"
result: value->contains()
"#
)
.apply_to(&json!({ "value": [123] }));
assert_eq!(result.0, Some(json!({})));
assert!(!result.1.is_empty());
assert!(
result.1[0]
.message()
.contains("Method ->contains requires exactly one argument")
);
}
#[test]
fn contains_should_return_error_when_input_is_not_array() {
let result = selection!(
r#"
result: value->contains(123)
"#
)
.apply_to(&json!({ "value": 123 }));
assert_eq!(result.0, Some(json!({})));
assert!(!result.1.is_empty());
assert!(
result.1[0]
.message()
.contains("Method ->contains requires an array input, but got: 123")
);
}
#[rstest::rstest]
#[case::v0_2(ConnectSpec::V0_2)]
#[case::v0_3(ConnectSpec::V0_3)]
#[case::v0_4(ConnectSpec::V0_4)]
fn contains_should_return_none_when_argument_evaluates_to_none(#[case] spec: ConnectSpec) {
assert_eq!(
selection!("arr->contains($.missing)", spec).apply_to(&json!({
"arr": [1, 2, 3],
})),
(
None,
vec![ApplyToError::from_json(&json!({
"message": "Property .missing not found in object",
"path": ["missing"],
"range": [16, 23],
"spec": spec.to_string(),
}))]
),
);
}
}
#[cfg(test)]
mod shape_tests {
use serde_json::Number;
use shape::location::Location;
use shape::location::SourceId;
use super::*;
use crate::connectors::json_selection::lit_expr::LitExpr;
fn get_location() -> Location {
Location {
source_id: SourceId::new("test".to_string()),
span: 0..8,
}
}
fn get_shape(args: Vec<WithRange<LitExpr>>, input: Shape) -> Shape {
let location = get_location();
contains_shape(
&ShapeContext::new(location.source_id),
&WithRange::new("contains".to_string(), Some(location.span)),
Some(&MethodArgs { args, range: None }),
input,
Shape::none(),
)
}
#[test]
fn contains_shape_should_return_bool_on_valid_string_array() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::String("a".to_string()), None)],
Shape::list(Shape::string([]), [])
),
Shape::bool([get_location()])
);
}
#[test]
fn contains_shape_should_return_bool_on_valid_number_array() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::Number(Number::from(42)), None)],
Shape::list(Shape::int([]), [])
),
Shape::bool([get_location()])
);
}
#[test]
fn contains_shape_should_return_bool_on_valid_bool_array() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::Bool(true), None)],
Shape::list(Shape::bool([]), [])
),
Shape::bool([get_location()])
);
}
#[test]
fn contains_shape_should_error_on_non_array_input() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::String("a".to_string()), None)],
Shape::string([])
),
Shape::error(
"Method ->contains requires an array input, but got: String".to_string(),
[get_location()]
)
);
}
#[test]
fn contains_shape_should_error_on_mixed_types() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::String("a".to_string()), None)],
Shape::list(Shape::int([]), [])
),
Shape::error_with_partial(
"Method ->contains can only compare values of the same type. Got \"a\" == Int."
.to_string(),
Shape::bool_value(false, [get_location()]),
[get_location()]
)
);
}
#[test]
fn contains_shape_should_error_on_mixed_types_array() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::String("a".to_string()), None)],
Shape::array([Shape::int([])], Shape::none(), [])
),
Shape::error_with_partial(
"Method ->contains can only compare values of the same type. Got Int == \"a\"."
.to_string(),
Shape::bool_value(false, [get_location()]),
[get_location()]
)
);
}
#[test]
fn contains_shape_should_error_on_no_args() {
assert_eq!(
get_shape(vec![], Shape::list(Shape::string([]), [])),
Shape::error(
"Method ->contains requires one argument".to_string(),
[get_location()]
)
);
}
#[test]
fn contains_shape_should_error_on_too_many_args() {
assert_eq!(
get_shape(
vec![
WithRange::new(LitExpr::Number(Number::from(42)), None),
WithRange::new(LitExpr::Number(Number::from(43)), None)
],
Shape::list(Shape::int([]), [])
),
Shape::error(
"Method ->contains requires only one argument, but 2 were provided".to_string(),
[]
)
);
}
#[test]
fn contains_shape_should_error_on_none_args() {
let location = get_location();
assert_eq!(
contains_shape(
&ShapeContext::new(location.source_id),
&WithRange::new("contains".to_string(), Some(location.span)),
None,
Shape::list(Shape::string([]), []),
Shape::none(),
),
Shape::error(
"Method ->contains requires one argument".to_string(),
[get_location()]
)
);
}
#[test]
fn contains_shape_should_return_bool_on_unknown_input() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::String("test".to_string()), None)],
Shape::unknown([])
),
Shape::bool([get_location()])
);
}
#[test]
fn contains_shape_should_return_bool_on_named_input() {
assert_eq!(
get_shape(
vec![WithRange::new(LitExpr::Number(Number::from(42)), None)],
Shape::name("a", [])
),
Shape::bool([get_location()])
);
}
}