2021-06-09 19:58:59 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2020 Fluence Labs Limited
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-10-04 10:58:00 +03:00
|
|
|
use air_test_utils::prelude::*;
|
2021-06-09 19:58:59 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn json_path_not_allowed_for_non_objects_and_arrays() {
|
|
|
|
let set_variable_peer_id = "set_variable";
|
2021-10-04 10:58:00 +03:00
|
|
|
let mut set_variable_vm = create_avm(echo_call_service(), set_variable_peer_id);
|
2021-06-09 19:58:59 +03:00
|
|
|
|
|
|
|
let local_peer_id = "local_peer_id";
|
2021-10-04 10:58:00 +03:00
|
|
|
let mut local_vm = create_avm(echo_call_service(), local_peer_id);
|
2021-06-09 19:58:59 +03:00
|
|
|
|
|
|
|
let script = format!(
|
|
|
|
r#"
|
|
|
|
(seq
|
|
|
|
(call "{0}" ("" "") ["some_string"] string_variable)
|
|
|
|
(call "{1}" ("" "") [string_variable.$.some_json_path])
|
|
|
|
)
|
|
|
|
"#,
|
|
|
|
set_variable_peer_id, local_peer_id
|
|
|
|
);
|
|
|
|
|
2021-08-24 16:14:15 +03:00
|
|
|
let result = checked_call_vm!(set_variable_vm, "asd", &script, "", "");
|
|
|
|
let result = call_vm!(local_vm, "asd", script, "", result.data);
|
2021-06-09 19:58:59 +03:00
|
|
|
|
2021-08-24 16:14:15 +03:00
|
|
|
assert_eq!(result.ret_code, 1017);
|
2021-06-09 19:58:59 +03:00
|
|
|
}
|