-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathjit_spec.rs
254 lines (212 loc) · 7.89 KB
/
jit_spec.rs
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#[cfg(test)]
mod tests {
use core::str;
use std::sync::Arc;
use async_graphql_value::ConstValue;
use tailcall::core::app_context::AppContext;
use tailcall::core::blueprint::Blueprint;
use tailcall::core::config::{Config, ConfigModule};
use tailcall::core::http::RequestContext;
use tailcall::core::jit::{ConstValueExecutor, Request};
use tailcall::core::json::JsonLike;
use tailcall::core::rest::EndpointSet;
use tailcall_valid::Validator;
struct TestExecutor {
app_ctx: Arc<AppContext>,
req_ctx: Arc<RequestContext>,
}
impl TestExecutor {
async fn try_new() -> anyhow::Result<Self> {
let sdl =
tokio::fs::read_to_string(tailcall_fixtures::configs::JSONPLACEHOLDER).await?;
let config = Config::from_sdl(&sdl).to_result()?;
let blueprint = Blueprint::try_from(&ConfigModule::from(config))?;
let runtime = tailcall::cli::runtime::init(&blueprint);
let app_ctx = Arc::new(AppContext::new(blueprint, runtime, EndpointSet::default()));
let req_ctx = Arc::new(RequestContext::from(app_ctx.as_ref()));
Ok(Self { app_ctx, req_ctx })
}
async fn run(&self, request: Request<ConstValue>) -> anyhow::Result<serde_json::Value> {
let executor = ConstValueExecutor::try_new(&request, &self.app_ctx)?;
let resp = executor
.execute(&self.app_ctx, &self.req_ctx, request)
.await;
let resp = Arc::into_inner(resp.body).unwrap();
let resp = str::from_utf8(&resp)?;
Ok(serde_json::from_str(resp)?)
}
}
#[tokio::test]
async fn test_executor() {
// NOTE: This test makes a real HTTP call
let request = Request::new("query {posts {id title}}");
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_nested() {
// NOTE: This test makes a real HTTP call
let request = Request::new("query {posts {title userId user {id name blog} }}");
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_nested_list() {
// NOTE: This test makes a real HTTP call
let request = Request::new(
"query {posts { id user { id albums { id photos { id title combinedId } } } }}",
);
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_fragments() {
// NOTE: This test makes a real HTTP call
let request = Request::new(
r#"
fragment UserPII on User {
name
email
phone
}
query {
users {
id
...UserPII
username
}
}
"#,
);
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_fragments_nested() {
// NOTE: This test makes a real HTTP call
let request = Request::new(
r#"
fragment UserPII on User {
name
email
phone
}
query {
posts {
id
user {
id
...UserPII
username
}
}
}
"#,
);
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_arguments() {
// NOTE: This test makes a real HTTP call
let request = Request::new("query {user(id: 1) {id}}");
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_arguments_default_value() {
// NOTE: This test makes a real HTTP call
let request = Request::new("query {post {id title}}");
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_executor_variables() {
// NOTE: This test makes a real HTTP call
let query = r#"
query user($id: Int!) {
user(id: $id) {
id
name
}
}
"#;
let request = Request::new(query);
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
let request = Request::new(query);
let request = request.variables([("id".into(), ConstValue::from(1))]);
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_operation_plan_cache() {
fn get_id_value(data: serde_json::Value) -> Option<i64> {
data.get_key("data")
.and_then(|v| v.get_key("user"))
.and_then(|v| v.get_key("id"))
.and_then(|u| u.as_i64())
}
// NOTE: This test makes a real HTTP call
let query = r#"
query user($id: Int!) {
user(id: $id) {
id
name
}
}
"#;
let request = Request::new(query);
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
let request = Request::new(query);
let request = request.variables([("id".into(), ConstValue::from(1))]);
let response = executor.run(request).await.unwrap();
assert_eq!(get_id_value(response).unwrap(), 1);
let request = Request::new(query);
let request = request.variables([("id".into(), ConstValue::from(2))]);
let response = executor.run(request).await.unwrap();
assert_eq!(get_id_value(response).unwrap(), 2);
}
#[tokio::test]
async fn test_query_alias() {
// NOTE: This test makes a real HTTP call
let request =
Request::new("query {user1: user(id: 1) {id name} user2: user(id: 2) {id name}}");
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
#[tokio::test]
async fn test_skip() {
// NOTE: This test makes a real HTTP call
let mut request = Request::new(
r#"
query ($TRUE: Boolean!){
users {
id @skip(if: true)
name @skip(if: $TRUE)
email @include(if: $TRUE)
username @include(if: false)
phone @skip(if: false) @include(if: true)
}
}
"#,
);
request
.variables
.insert("TRUE".to_string(), ConstValue::Boolean(true));
let executor = TestExecutor::try_new().await.unwrap();
let response = executor.run(request).await.unwrap();
insta::assert_json_snapshot!(response);
}
}