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
use schema_core::schema_connector::MigrationRecord;

pub trait MigrationsAssertions: Sized {
    fn assert_applied_steps_count(self, count: u32) -> Self;
    fn assert_checksum(self, expected: &str) -> Self;
    fn assert_failed(self) -> Self;
    fn assert_logs(self, expected: &str) -> Self;
    fn assert_migration_name(self, expected: &str) -> Self;
    fn assert_success(self) -> Self;
}

impl MigrationsAssertions for MigrationRecord {
    fn assert_checksum(self, expected: &str) -> Self {
        assert_eq!(self.checksum, expected);
        self
    }

    fn assert_migration_name(self, expected: &str) -> Self {
        assert_eq!(&self.migration_name[15..], expected);
        self
    }

    fn assert_logs(self, expected: &str) -> Self {
        assert_eq!(self.logs.as_deref(), Some(expected));
        self
    }

    fn assert_applied_steps_count(self, count: u32) -> Self {
        assert_eq!(self.applied_steps_count, count);
        self
    }

    fn assert_success(self) -> Self {
        assert!(self.finished_at.is_some());
        self
    }

    fn assert_failed(self) -> Self {
        assert!(self.finished_at.is_none() && self.rolled_back_at.is_none());
        self
    }
}