1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#![allow(clippy::ptr_arg)]
#[allow(unused_imports)]
use async_trait::async_trait;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use std::{borrow::Cow, string::ToString};
#[allow(unused_imports)]
use wasmbus_rpc::{
deserialize, serialize, Context, Message, MessageDispatch, RpcError, RpcResult, SendOpts,
Transport,
};
pub const SMITHY_VERSION: &str = "1.0";
pub type OptMap = std::collections::HashMap<String, String>;
pub type PatternList = Vec<String>;
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub struct TestOptions {
pub options: OptMap,
pub patterns: PatternList,
}
#[derive(Default, Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub struct TestResult {
#[serde(default)]
pub name: String,
#[serde(default)]
pub pass: bool,
#[serde(rename = "snapData")]
#[serde(with = "serde_bytes")]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub snap_data: Option<Vec<u8>>,
}
pub type TestResults = Vec<TestResult>;
#[async_trait]
pub trait Testing {
async fn start(&self, ctx: &Context, arg: &TestOptions) -> RpcResult<TestResults>;
}
#[async_trait]
pub trait TestingReceiver: MessageDispatch + Testing {
async fn dispatch(&self, ctx: &Context, message: &Message<'_>) -> RpcResult<Message<'_>> {
match message.method {
"Start" => {
let value: TestOptions = deserialize(message.arg.as_ref()).map_err(|e| {
RpcError::Deser(format!(
"deserialization for message '{}': {}",
message.method, e
))
})?;
let resp = Testing::start(self, ctx, &value).await?;
let buf = Cow::Owned(serialize(&resp)?);
Ok(Message {
method: "Testing.Start",
arg: buf,
})
}
_ => Err(RpcError::MethodNotHandled(format!(
"Testing::{}",
message.method
))),
}
}
}
#[derive(Debug)]
pub struct TestingSender<'send, T> {
transport: &'send T,
}
impl<'send, T: Transport> TestingSender<'send, T> {
pub fn new(transport: &'send T) -> Self {
TestingSender { transport }
}
}
#[async_trait]
impl<'send, T: Transport + std::marker::Sync + std::marker::Send> Testing
for TestingSender<'send, T>
{
#[allow(unused)]
async fn start(&self, ctx: &Context, arg: &TestOptions) -> RpcResult<TestResults> {
let arg = serialize(arg)?;
let resp = self
.transport
.send(
ctx,
Message {
method: "Start",
arg: Cow::Borrowed(&arg),
},
None,
)
.await?;
let value = deserialize(&resp)
.map_err(|e| RpcError::Deser(format!("response to {}: {}", "Start", e)))?;
Ok(value)
}
}