marine/fluence-faas/tests/greeting.rs

97 lines
3.3 KiB
Rust
Raw Normal View History

2020-08-23 22:47:04 +00: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.
*/
use fluence_faas::FluenceFaaS;
use fluence_faas::IValue;
#[test]
pub fn greeting() {
let greeting_config_path = "../examples/greeting/Config.toml";
let greeting_config_raw = std::fs::read(greeting_config_path)
.expect("../examples/greeting/Config.toml should presence");
2020-10-01 09:19:38 +00:00
let mut greeting_config: fluence_faas::TomlFaaSConfig =
2020-08-23 22:47:04 +00:00
toml::from_slice(&greeting_config_raw).expect("greeting config should be well-formed");
greeting_config.modules_dir = Some(String::from("../examples/greeting/artifacts"));
let mut faas = FluenceFaaS::with_raw_config(greeting_config)
2020-09-14 11:22:56 +00:00
.unwrap_or_else(|e| panic!("can't create Fluence FaaS instance: {:?}", e));
2020-08-23 22:47:04 +00:00
let result1 = faas
2020-09-15 22:14:15 +00:00
.call_with_ivalues(
2020-08-23 22:47:04 +00:00
"greeting",
"greeting",
&[IValue::String(String::from("Fluence"))],
2020-08-25 16:26:21 +00:00
<_>::default(),
2020-08-23 22:47:04 +00:00
)
.unwrap_or_else(|e| panic!("can't invoke greeting: {:?}", e));
let result2 = faas
2020-09-15 22:14:15 +00:00
.call_with_ivalues(
2020-08-25 16:26:21 +00:00
"greeting",
"greeting",
&[IValue::String(String::from(""))],
<_>::default(),
)
2020-08-23 22:47:04 +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, "))]);
}
2020-08-25 16:26:21 +00:00
#[test]
pub fn get_interfaces() {
let greeting_config_path = "../examples/greeting/Config.toml";
let greeting_config_raw = std::fs::read(greeting_config_path)
.expect("../examples/greeting/Config.toml should presence");
2020-10-01 09:19:38 +00:00
let mut greeting_config: fluence_faas::TomlFaaSConfig =
2020-08-25 16:26:21 +00:00
toml::from_slice(&greeting_config_raw).expect("greeting config should be well-formed");
greeting_config.modules_dir = Some(String::from("../examples/greeting/artifacts"));
let faas = FluenceFaaS::with_raw_config(greeting_config)
2020-09-14 11:22:56 +00:00
.unwrap_or_else(|e| panic!("can't create Fluence FaaS instance: {:?}", e));
2020-08-25 16:26:21 +00:00
let interface = faas.get_interface();
2020-09-15 22:14:15 +00:00
let arguments = vec![fluence_faas::IFunctionArg {
name: String::from("name"),
ty: fluence_faas::IType::String,
}];
let output_types = vec![fluence_faas::IType::String];
2020-08-25 16:26:21 +00:00
let greeting_sign = fluence_faas::FaaSFunctionSignature {
2020-09-15 22:14:15 +00:00
arguments: &arguments,
output_types: &output_types,
2020-08-25 16:26:21 +00:00
};
let mut functions = std::collections::HashMap::new();
functions.insert("greeting", greeting_sign);
let mut modules = std::collections::HashMap::new();
modules.insert("greeting", functions);
2020-09-15 22:14:15 +00:00
assert_eq!(
interface,
fluence_faas::FaaSInterface {
record_types: <_>::default(),
modules
}
);
2020-08-25 16:26:21 +00:00
}