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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
mod config;
mod connector_tag;
mod datamodel_rendering;
mod error;
mod logging;
mod query_result;
mod runner;
mod schema_gen;
mod templating;

pub use config::*;
pub use connector_tag::*;
pub use datamodel_rendering::*;
pub use error::*;
pub use logging::*;
pub use query_core;
pub use query_result::*;
pub use request_handlers::{GraphqlBody, MultiQuery};
pub use runner::*;
pub use schema_gen::*;
pub use templating::*;

use colored::Colorize;
use once_cell::sync::Lazy;
use psl::datamodel_connector::ConnectorCapabilities;
use query_engine_metrics::MetricRegistry;
use std::future::Future;
use std::sync::Once;
use tokio::runtime::Builder;
use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender};
use tracing_futures::WithSubscriber;

pub type TestResult<T> = Result<T, TestError>;

/// Test configuration, loaded once at runtime.
pub static CONFIG: Lazy<TestConfig> = Lazy::new(TestConfig::load);

/// The log level from the environment.
pub static ENV_LOG_LEVEL: Lazy<String> = Lazy::new(|| std::env::var("LOG_LEVEL").unwrap_or_else(|_| "info".to_owned()));

/// Engine protocol used to run tests. Either 'graphql' or 'json'.
pub static ENGINE_PROTOCOL: Lazy<String> =
    Lazy::new(|| std::env::var("PRISMA_ENGINE_PROTOCOL").unwrap_or_else(|_| "graphql".to_owned()));

/// Teardown of a test setup.
async fn teardown_project(datamodel: &str, db_schemas: &[&str], schema_id: Option<usize>) -> TestResult<()> {
    if let Some(schema_id) = schema_id {
        let params = serde_json::json!({ "schemaId": schema_id });
        executor_process_request::<serde_json::Value>("teardown", params).await?;
    }

    Ok(qe_setup::teardown(datamodel, db_schemas).await?)
}

/// Helper method to allow a sync shell function to run the async test blocks.
fn run_with_tokio<O, F: std::future::Future<Output = O>>(fut: F) -> O {
    Builder::new_current_thread()
        .enable_all()
        .build()
        .unwrap()
        .block_on(fut)
}

static METRIC_RECORDER: Once = Once::new();

pub fn setup_metrics() -> MetricRegistry {
    let metrics = MetricRegistry::new();
    METRIC_RECORDER.call_once(|| {
        query_engine_metrics::setup();
    });
    metrics
}

/// Taken from Reddit. Enables taking an async function pointer which takes references as param
/// https://www.reddit.com/r/rust/comments/jvqorj/hrtb_with_async_functions/
pub trait AsyncFn<'a, A: 'a, B: 'a, T>: Copy + 'static {
    type Fut: Future<Output = T> + 'a;

    fn call(self, a: &'a A, b: &'a B) -> Self::Fut;
}

impl<'a, A: 'a, B: 'a, Fut: Future + 'a, F: Fn(&'a A, &'a B) -> Fut + Copy + 'static> AsyncFn<'a, A, B, Fut::Output>
    for F
{
    type Fut = Fut;

    fn call(self, a: &'a A, b: &'a B) -> Self::Fut {
        self(a, b)
    }
}

type BoxFuture<'a, O> = std::pin::Pin<Box<dyn std::future::Future<Output = O> + 'a>>;

#[allow(clippy::too_many_arguments)]
pub fn run_relation_link_test<F>(
    on_parent: &RelationField,
    on_child: &RelationField,
    id_only: bool,
    only: &[(&str, Option<&str>)],
    exclude: &[(&str, Option<&str>)],
    required_capabilities: ConnectorCapabilities,
    (suite_name, test_name): (&str, &str),
    test_fn: F,
) where
    F: (for<'a> AsyncFn<'a, Runner, DatamodelWithParams, TestResult<()>>) + 'static,
{
    // The implementation of the function is separated from this façade because of monomorphization
    // cost. Only `boxify` is instantiated for each instance of run_relation_link_test, not the
    // whole larger function body. This measurably improves compile times of query-engine-tests.
    /// Helper for test return type erasure.
    fn boxify<F>(f: F) -> impl for<'a> Fn(&'a Runner, &'a DatamodelWithParams) -> BoxFuture<'a, TestResult<()>>
    where
        F: (for<'a> AsyncFn<'a, Runner, DatamodelWithParams, TestResult<()>>) + 'static,
    {
        move |runner, datamodel| Box::pin(async move { f.call(runner, datamodel).await })
    }

    run_relation_link_test_impl(
        on_parent,
        on_child,
        id_only,
        only,
        exclude,
        required_capabilities,
        (suite_name, test_name),
        &boxify(test_fn),
    )
}

#[allow(clippy::too_many_arguments)]
#[inline(never)] // currently not inlined, but let's make sure it doesn't change
fn run_relation_link_test_impl(
    on_parent: &RelationField,
    on_child: &RelationField,
    id_only: bool,
    only: &[(&str, Option<&str>)],
    exclude: &[(&str, Option<&str>)],
    required_capabilities: ConnectorCapabilities,
    (suite_name, test_name): (&str, &str),
    test_fn: &dyn for<'a> Fn(&'a Runner, &'a DatamodelWithParams) -> BoxFuture<'a, TestResult<()>>,
) {
    static RELATION_TEST_IDX: Lazy<Option<usize>> =
        Lazy::new(|| std::env::var("RELATION_TEST_IDX").ok().and_then(|s| s.parse().ok()));

    let (dms, capabilities) = schema_with_relation(on_parent, on_child, id_only);

    insta::allow_duplicates! {
        for (i, (dm, caps)) in dms.into_iter().zip(capabilities.into_iter()).enumerate() {
            if RELATION_TEST_IDX.map(|idx| idx != i).unwrap_or(false) {
                continue;
            }

            let required_capabilities_for_test = required_capabilities | caps;
            let test_db_name = format!("{suite_name}_{test_name}_{i}");
            let template = dm.datamodel().to_owned();
            let (connector, version) = CONFIG.test_connector().unwrap();

            if !should_run(&connector, &version, only, exclude, required_capabilities_for_test) {
                continue;
            }

            let datamodel = render_test_datamodel(&test_db_name, template, &[], None, Default::default(), None);
            let (connector_tag, version) = CONFIG.test_connector().unwrap();
            let metrics = setup_metrics();
            let metrics_for_subscriber = metrics.clone();
            let (log_capture, log_tx) = TestLogCapture::new();

            run_with_tokio(
                async move {
                    println!("Used datamodel:\n {}", datamodel.yellow());
                    let runner = Runner::load(datamodel.clone(), &[], version, connector_tag, metrics, log_capture)
                        .await
                        .unwrap();

                    test_fn(&runner, &dm).await.unwrap();

                    teardown_project(&datamodel, Default::default(), runner.schema_id())
                        .await
                        .unwrap();
                }
                .with_subscriber(test_tracing_subscriber(
                    ENV_LOG_LEVEL.to_string(),
                    metrics_for_subscriber,
                    log_tx,
                )),
            );
        }
    }
}

pub trait ConnectorTestFn: Copy + 'static {
    type Fut: Future<Output = TestResult<()>>;

    fn call(self, runner: Runner) -> Self::Fut;
}

impl<T, F> ConnectorTestFn for T
where
    T: Fn(Runner) -> F + Copy + 'static,
    F: Future<Output = TestResult<()>>,
{
    type Fut = F;

    fn call(self, runner: Runner) -> Self::Fut {
        self(runner)
    }
}

#[allow(clippy::too_many_arguments)]
pub fn run_connector_test<T>(
    test_database_name: &str,
    only: &[(&str, Option<&str>)],
    exclude: &[(&str, Option<&str>)],
    capabilities: ConnectorCapabilities,
    excluded_features: &[&str],
    handler: fn() -> String,
    db_schemas: &[&str],
    referential_override: Option<String>,
    test_fn: T,
) where
    T: ConnectorTestFn,
{
    // The implementation of the function is separated from this façade because of monomorphization
    // cost. Only `boxify` is instantiated for each instance of run_connector_test, not the whole
    // larger function body. This measurably improves compile times of query-engine-tests.
    fn boxify(test_fn: impl ConnectorTestFn) -> impl Fn(Runner) -> BoxFuture<'static, TestResult<()>> {
        move |runner| Box::pin(test_fn.call(runner))
    }

    run_connector_test_impl(
        test_database_name,
        only,
        exclude,
        capabilities,
        excluded_features,
        handler,
        db_schemas,
        referential_override,
        &boxify(test_fn),
    )
}

#[allow(clippy::too_many_arguments)]
#[inline(never)]
fn run_connector_test_impl(
    test_database_name: &str,
    only: &[(&str, Option<&str>)],
    exclude: &[(&str, Option<&str>)],
    capabilities: ConnectorCapabilities,
    excluded_features: &[&str],
    handler: fn() -> String,
    db_schemas: &[&str],
    referential_override: Option<String>,
    test_fn: &dyn Fn(Runner) -> BoxFuture<'static, TestResult<()>>,
) {
    let (connector, version) = CONFIG.test_connector().unwrap();

    if !should_run(&connector, &version, only, exclude, capabilities) {
        return;
    }

    let template = handler();
    let datamodel = crate::render_test_datamodel(
        test_database_name,
        template,
        excluded_features,
        referential_override,
        db_schemas,
        None,
    );
    let (connector_tag, version) = CONFIG.test_connector().unwrap();
    let metrics = crate::setup_metrics();
    let metrics_for_subscriber = metrics.clone();

    let (log_capture, log_tx) = TestLogCapture::new();

    crate::run_with_tokio(
        async {
            println!("Used datamodel:\n {}", datamodel.yellow());
            let runner = Runner::load(
                datamodel.clone(),
                db_schemas,
                version,
                connector_tag,
                metrics,
                log_capture,
            )
            .await
            .unwrap();
            let schema_id = runner.schema_id();

            if let Err(err) = test_fn(runner).await {
                panic!("💥 Test failed due to an error: {err:?}");
            }

            crate::teardown_project(&datamodel, db_schemas, schema_id)
                .await
                .unwrap();
        }
        .with_subscriber(test_tracing_subscriber(
            ENV_LOG_LEVEL.to_string(),
            metrics_for_subscriber,
            log_tx,
        )),
    );
}

pub type LogEmit = UnboundedSender<String>;
pub struct TestLogCapture {
    rx: UnboundedReceiver<String>,
}

impl TestLogCapture {
    pub fn new() -> (Self, LogEmit) {
        let (tx, rx) = unbounded_channel();
        (Self { rx }, tx)
    }

    pub async fn get_logs(&mut self) -> Vec<String> {
        let mut logs = Vec::new();
        while let Ok(log_line) = self.rx.try_recv() {
            logs.push(log_line)
        }

        logs
    }
}