Mike Voronov 9fe7afb897
feat(all): reduce stream usage scope (#298)
This PR intended to reduce stream usage scope in order to make AquaVM truly deterministic.

Refs: #297.

Co-authored-by: Ivan Boldyrev <ivan@fluence.one>
Co-authored-by: Anatoly Laskaris <github_me@nahsi.dev>
2022-11-30 17:38:32 +03:00

70 lines
2.3 KiB
Rust

/*
* Copyright 2022 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.
*/
use air_test_framework::AirScriptExecutor;
use air_test_utils::prelude::*;
#[test]
fn issue_356() {
let script = r#"
(seq
(seq
(call "relay" ("kad" "neighborhood") ["relay"] neighs_top) ; ok = ["p1"]
(seq
(call "p1" ("kad" "neighborhood") ["p1"] neighs_inner) ; ok =["p1"]
(par
(call "relay" ("peer" "identify") ["relay"] $external_addresses) ; behaviour = echo
(call "p1" ("peer" "identify") ["p1"] $external_addresses) ; behaviour = echo
)
)
)
(seq
(new $monotonic_stream
(fold $external_addresses elem
(seq
(ap "asd" $monotonic_stream)
(seq
(canon "relay" $monotonic_stream #result)
(null)
)
)
)
)
(seq
(canon "client" $external_addresses #external_addresses)
(call "client" ("return" "") [#external_addresses neighs_inner] x) ; ok = null
)
)
)
"#;
let engine = AirScriptExecutor::new(
TestRunParameters::from_init_peer_id("client"),
vec![],
vec!["p1", "p2", "p3"].into_iter().map(Into::into),
&script,
)
.unwrap();
for _ in 0..7 {
for peer in ["client", "relay", "p1", "p2"] {
for outcome in engine.execution_iter(peer).unwrap() {
assert_eq!(outcome.ret_code, 0, "{:?}", outcome);
}
}
}
}