async-graphql/tests/input_object.rs

96 lines
1.8 KiB
Rust
Raw Normal View History

2020-03-07 12:54:03 +00:00
use async_graphql::*;
#[async_std::test]
pub async fn test_input_object_default_value() {
#[InputObject]
struct MyInput {
#[field(default = "999")]
a: i32,
#[field(default = "[1, 2, 3]")]
b: Vec<i32>,
#[field(default = "\"abc\"")]
c: String,
#[field(default = "999")]
d: Option<i32>,
#[field(default = "999")]
e: Option<i32>,
}
struct MyOutput {
a: i32,
b: Vec<i32>,
c: String,
d: Option<i32>,
e: Option<i32>,
}
#[Object]
impl MyOutput {
#[field]
async fn a(&self) -> i32 {
self.a
}
#[field]
async fn b(&self) -> &Vec<i32> {
&self.b
}
#[field]
async fn c(&self) -> &String {
&self.c
}
#[field]
async fn d(&self) -> &Option<i32> {
&self.d
}
#[field]
async fn e(&self) -> &Option<i32> {
&self.e
}
}
struct Root;
#[Object]
impl Root {
#[field]
async fn a(&self, input: MyInput) -> MyOutput {
MyOutput {
a: input.a,
b: input.b,
c: input.c,
d: input.d,
e: input.e,
}
}
}
2020-03-19 09:20:12 +00:00
let schema = Schema::new(Root, EmptyMutation, EmptySubscription);
2020-03-07 12:54:03 +00:00
let query = format!(
r#"{{
2020-03-09 01:33:36 +00:00
a(input:{{e:777}}) {{
2020-03-07 12:54:03 +00:00
a b c d e
}}
}}"#
);
assert_eq!(
2020-04-01 08:53:49 +00:00
schema.query(&query).unwrap().execute().await.unwrap().data,
2020-03-07 12:54:03 +00:00
serde_json::json!({
"a": {
"a": 999,
"b": [1, 2, 3],
"c": "abc",
"d": 999,
2020-03-09 01:33:36 +00:00
"e": 777,
2020-03-07 12:54:03 +00:00
}
})
);
}