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
use schema_core::{commands::evaluate_data_loss, json_rpc::types::*, schema_connector::SchemaConnector, CoreResult};
use std::borrow::Cow;
use tempfile::TempDir;

#[must_use = "This struct does nothing on its own. See EvaluateDataLoss::send()"]
pub struct EvaluateDataLoss<'a> {
    api: &'a mut dyn SchemaConnector,
    migrations_directory: &'a TempDir,
    prisma_schema: String,
}

impl<'a> EvaluateDataLoss<'a> {
    pub fn new(api: &'a mut dyn SchemaConnector, migrations_directory: &'a TempDir, prisma_schema: String) -> Self {
        EvaluateDataLoss {
            api,
            migrations_directory,
            prisma_schema,
        }
    }

    fn send_impl(self) -> CoreResult<EvaluateDataLossAssertion<'a>> {
        let fut = evaluate_data_loss(
            EvaluateDataLossInput {
                migrations_directory_path: self.migrations_directory.path().to_str().unwrap().to_owned(),
                prisma_schema: self.prisma_schema,
            },
            self.api,
        );
        let output = test_setup::runtime::run_with_thread_local_runtime(fut)?;

        Ok(EvaluateDataLossAssertion {
            output,
            _migrations_directory: self.migrations_directory,
        })
    }

    #[track_caller]
    pub fn send(self) -> EvaluateDataLossAssertion<'a> {
        self.send_impl().unwrap()
    }
}

pub struct EvaluateDataLossAssertion<'a> {
    output: EvaluateDataLossOutput,
    _migrations_directory: &'a TempDir,
}

impl std::fmt::Debug for EvaluateDataLossAssertion<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("EvaluateDataLossAssertion").finish()
    }
}

impl<'a> EvaluateDataLossAssertion<'a> {
    #[track_caller]
    pub fn assert_steps_count(self, count: u32) -> Self {
        assert!(
            self.output.migration_steps == count,
            "Assertion failed. Expected evaluateDataLoss to return {} steps, found {}",
            count,
            self.output.migration_steps,
        );

        self
    }

    pub fn assert_warnings(self, warnings: &[Cow<'_, str>]) -> Self {
        assert_eq!(
            self.output.warnings.len(),
            warnings.len(),
            "Expected {} warnings, got {}.\n{:#?}",
            warnings.len(),
            self.output.warnings.len(),
            self.output.warnings
        );

        let descriptions: Vec<Cow<'_, str>> = self
            .output
            .warnings
            .iter()
            .map(|warning| warning.message.as_str().into())
            .collect();

        assert_eq!(descriptions, warnings);

        self
    }

    pub fn assert_warnings_with_indices(self, warnings: &[(Cow<'_, str>, u32)]) -> Self {
        assert!(
            self.output.warnings.len() == warnings.len(),
            "Expected {} warnings, got {}.\n{:#?}",
            warnings.len(),
            self.output.warnings.len(),
            self.output.warnings
        );

        let descriptions: Vec<(Cow<'_, str>, u32)> = self
            .output
            .warnings
            .iter()
            .map(|warning| (warning.message.as_str().into(), warning.step_index))
            .collect();

        assert_eq!(descriptions, warnings);

        self
    }

    pub fn assert_unexecutable(self, unexecutable_steps: &[Cow<'_, str>]) -> Self {
        assert!(
            self.output.unexecutable_steps.len() == unexecutable_steps.len(),
            "Expected {} unexecutable_steps, got {}.\n{:#?}",
            unexecutable_steps.len(),
            self.output.unexecutable_steps.len(),
            self.output.unexecutable_steps
        );

        let descriptions: Vec<Cow<'_, str>> = self
            .output
            .unexecutable_steps
            .iter()
            .map(|warning| warning.message.as_str().into())
            .collect();

        assert_eq!(descriptions, unexecutable_steps);

        self
    }

    pub fn assert_unexecutables_with_indices(self, unexecutables: &[(Cow<'_, str>, u32)]) -> Self {
        assert!(
            self.output.unexecutable_steps.len() == unexecutables.len(),
            "Expected {} unexecutables, got {}.\n{:#?}",
            unexecutables.len(),
            self.output.unexecutable_steps.len(),
            self.output.unexecutable_steps
        );

        let descriptions: Vec<(Cow<'_, str>, u32)> = self
            .output
            .unexecutable_steps
            .iter()
            .map(|warning| (warning.message.as_str().into(), warning.step_index))
            .collect();

        assert_eq!(descriptions, unexecutables);
        self
    }

    pub fn into_output(self) -> EvaluateDataLossOutput {
        self.output
    }
}