2020-08-23 22:00:38 +00:00
|
|
|
/*
|
2024-06-26 09:37:14 +00:00
|
|
|
* Marine WebAssembly runtime
|
2020-08-23 22:00:38 +00:00
|
|
|
*
|
2024-06-26 09:37:14 +00:00
|
|
|
* Copyright (C) 2024 Fluence DAO
|
2020-08-23 22:00:38 +00:00
|
|
|
*
|
2024-06-26 09:37:14 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation version 3 of the
|
|
|
|
* License.
|
2020-08-23 22:00:38 +00:00
|
|
|
*
|
2024-06-26 09:37:14 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-08-23 22:00:38 +00:00
|
|
|
*/
|
|
|
|
|
2022-06-09 14:00:19 +00:00
|
|
|
use marine_core::MarineCore;
|
2023-12-13 16:51:58 +00:00
|
|
|
use marine_core::MarineCoreConfig;
|
2022-06-09 14:00:19 +00:00
|
|
|
use marine_core::IValue;
|
2024-04-10 20:34:34 +00:00
|
|
|
use marine_wasm_backend_traits::WasmBackend;
|
|
|
|
use marine_wasmtime_backend::WasmtimeWasmBackend;
|
2020-08-23 22:00:38 +00:00
|
|
|
|
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
|
|
|
|
static GREETING_WASM_BYTES: Lazy<Vec<u8>> = Lazy::new(|| {
|
|
|
|
std::fs::read("../examples/greeting/artifacts/greeting.wasm")
|
2020-08-23 22:55:52 +00:00
|
|
|
.expect("../examples/greeting/artifacts/greeting.wasm should presence")
|
2020-08-23 22:00:38 +00:00
|
|
|
});
|
|
|
|
|
2024-04-10 20:34:34 +00:00
|
|
|
#[tokio::test]
|
|
|
|
pub async fn greeting_basic() {
|
|
|
|
let backend = WasmtimeWasmBackend::new_async().unwrap();
|
|
|
|
let mut marine_core = MarineCore::new(MarineCoreConfig::new(backend, None)).unwrap();
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core
|
2023-03-14 21:43:51 +00:00
|
|
|
.load_module("greeting", &GREETING_WASM_BYTES, <_>::default())
|
2024-04-10 20:34:34 +00:00
|
|
|
.await
|
2021-05-10 09:51:22 +00:00
|
|
|
.unwrap_or_else(|e| panic!("can't load a module into Marine: {:?}", e));
|
2020-08-23 22:00:38 +00:00
|
|
|
|
2022-06-09 14:00:19 +00:00
|
|
|
let result1 = marine_core
|
2024-04-10 20:34:34 +00:00
|
|
|
.call_async(
|
2020-08-23 22:00:38 +00:00
|
|
|
"greeting",
|
|
|
|
"greeting",
|
|
|
|
&[IValue::String(String::from("Fluence"))],
|
|
|
|
)
|
2024-04-10 20:34:34 +00:00
|
|
|
.await
|
2020-08-23 22:00:38 +00:00
|
|
|
.unwrap_or_else(|e| panic!("can't invoke greeting: {:?}", e));
|
|
|
|
|
2022-06-09 14:00:19 +00:00
|
|
|
let result2 = marine_core
|
2024-04-10 20:34:34 +00:00
|
|
|
.call_async("greeting", "greeting", &[IValue::String(String::from(""))])
|
|
|
|
.await
|
2020-08-23 22:00:38 +00:00
|
|
|
.unwrap_or_else(|e| panic!("can't invoke greeting: {:?}", e));
|
|
|
|
|
|
|
|
assert_eq!(result1, vec![IValue::String(String::from("Hi, Fluence"))]);
|
|
|
|
assert_eq!(result2, vec![IValue::String(String::from("Hi, "))]);
|
|
|
|
}
|
|
|
|
|
2024-04-10 20:34:34 +00:00
|
|
|
#[tokio::test]
|
2020-08-23 22:00:38 +00:00
|
|
|
// test loading module with the same name twice
|
2024-04-10 20:34:34 +00:00
|
|
|
pub async fn non_unique_module_name() {
|
|
|
|
let backend = WasmtimeWasmBackend::new_async().unwrap();
|
|
|
|
let mut marine_core = MarineCore::new(MarineCoreConfig::new(backend, None)).unwrap();
|
2020-10-21 19:21:16 +00:00
|
|
|
let module_name = String::from("greeting");
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core
|
2023-03-14 21:43:51 +00:00
|
|
|
.load_module(&module_name, &GREETING_WASM_BYTES, <_>::default())
|
2024-04-10 20:34:34 +00:00
|
|
|
.await
|
2021-05-10 09:51:22 +00:00
|
|
|
.unwrap_or_else(|e| panic!("can't load a module into Marine: {:?}", e));
|
2020-08-23 22:00:38 +00:00
|
|
|
|
2024-04-10 20:34:34 +00:00
|
|
|
let load_result = marine_core
|
|
|
|
.load_module(&module_name, &GREETING_WASM_BYTES, <_>::default())
|
|
|
|
.await;
|
2020-08-23 22:00:38 +00:00
|
|
|
assert!(load_result.is_err());
|
|
|
|
assert!(std::matches!(
|
|
|
|
load_result.err().unwrap(),
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core::MError::NonUniqueModuleName(_)
|
2020-08-23 22:00:38 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2024-04-10 20:34:34 +00:00
|
|
|
#[tokio::test]
|
2020-08-23 22:00:38 +00:00
|
|
|
#[allow(unused_variables)]
|
2021-05-10 09:51:22 +00:00
|
|
|
// test calling Marine with non-exist module and function names
|
2024-04-10 20:34:34 +00:00
|
|
|
pub async fn non_exist_module_func() {
|
|
|
|
let backend = WasmtimeWasmBackend::new_async().unwrap();
|
|
|
|
let mut marine_core = MarineCore::new(MarineCoreConfig::new(backend, None)).unwrap();
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core
|
2023-03-14 21:43:51 +00:00
|
|
|
.load_module("greeting", &GREETING_WASM_BYTES, <_>::default())
|
2024-04-10 20:34:34 +00:00
|
|
|
.await
|
2021-05-10 09:51:22 +00:00
|
|
|
.unwrap_or_else(|e| panic!("can't load a module into Marine: {:?}", e));
|
2020-08-23 22:00:38 +00:00
|
|
|
|
2021-04-11 21:21:47 +00:00
|
|
|
let module_name = "greeting";
|
|
|
|
let function_name = "greeting";
|
2020-08-23 22:00:38 +00:00
|
|
|
let non_exist_name = String::from("_");
|
|
|
|
|
2024-04-10 20:34:34 +00:00
|
|
|
let call_result1 = marine_core
|
|
|
|
.call_async(
|
|
|
|
non_exist_name.as_str(),
|
|
|
|
function_name,
|
|
|
|
&[IValue::String(String::from("Fluence"))],
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
let call_result2 = marine_core
|
|
|
|
.call_async(
|
|
|
|
module_name,
|
|
|
|
non_exist_name.as_str(),
|
|
|
|
&[IValue::String(String::from("Fluence"))],
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
let call_result3 = marine_core
|
|
|
|
.call_async(
|
|
|
|
non_exist_name.as_str(),
|
|
|
|
non_exist_name.as_str(),
|
|
|
|
&[IValue::String(String::from("Fluence"))],
|
|
|
|
)
|
|
|
|
.await;
|
2020-08-23 22:00:38 +00:00
|
|
|
|
|
|
|
assert!(call_result1.is_err());
|
|
|
|
assert!(matches!(
|
|
|
|
call_result1.err().unwrap(),
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core::MError::NoSuchModule(non_exist_name)
|
2020-08-23 22:00:38 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert!(call_result2.is_err());
|
|
|
|
assert!(matches!(
|
|
|
|
call_result2.err().unwrap(),
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core::MError::NoSuchFunction(module_name, non_exist_name)
|
2020-08-23 22:00:38 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
assert!(call_result3.is_err());
|
|
|
|
// at first, the module name should be checked
|
|
|
|
assert!(matches!(
|
|
|
|
call_result3.err().unwrap(),
|
2022-06-09 14:00:19 +00:00
|
|
|
marine_core::MError::NoSuchModule(non_exist_name)
|
2020-08-23 22:00:38 +00:00
|
|
|
));
|
|
|
|
}
|