Skip to main content

ironflow_store/
error.rs

1//! Storage error types.
2//!
3//! [`StoreError`] covers all failure modes for [`RunStore`](crate::store::RunStore)
4//! implementations, from missing records to invalid FSM transitions.
5
6use thiserror::Error;
7use uuid::Uuid;
8
9use crate::entities::RunStatus;
10
11/// Errors produced by [`RunStore`](crate::store::RunStore) operations.
12///
13/// # Examples
14///
15/// ```
16/// use ironflow_store::error::StoreError;
17/// use uuid::Uuid;
18///
19/// let err = StoreError::RunNotFound(Uuid::nil());
20/// assert!(err.to_string().contains("run not found"));
21/// ```
22#[derive(Debug, Error)]
23pub enum StoreError {
24    /// The requested run does not exist.
25    #[error("run not found: {0}")]
26    RunNotFound(Uuid),
27
28    /// The requested step does not exist.
29    #[error("step not found: {0}")]
30    StepNotFound(Uuid),
31
32    /// Attempted an illegal FSM transition.
33    #[error("invalid status transition: {from} -> {to}")]
34    InvalidTransition {
35        /// Current status.
36        from: RunStatus,
37        /// Attempted target status.
38        to: RunStatus,
39    },
40
41    /// Email is already taken by another user.
42    #[error("email already exists: {0}")]
43    DuplicateEmail(String),
44
45    /// Username is already taken by another user.
46    #[error("username already exists: {0}")]
47    DuplicateUsername(String),
48
49    /// The requested user does not exist.
50    #[error("user not found: {0}")]
51    UserNotFound(Uuid),
52
53    /// The worker no longer holds the lease on this run.
54    ///
55    /// Either another worker took it over after the lease expired, or the run
56    /// left the `Running` state (cancelled, failed, awaiting approval).
57    #[error("lease lost on run {run_id}")]
58    LeaseLost {
59        /// Run whose lease was lost.
60        run_id: Uuid,
61        /// Worker currently holding the lease, if any.
62        held_by: Option<String>,
63    },
64
65    /// The step already holds an artifact with this name.
66    #[error("artifact {name:?} already exists on step {step_id}")]
67    DuplicateArtifact {
68        /// Step that already owns the name.
69        step_id: Uuid,
70        /// The conflicting artifact name.
71        name: String,
72    },
73
74    /// A database or I/O error from the backing store.
75    #[error("database error: {0}")]
76    Database(String),
77
78    /// JSON serialization or deserialization failed.
79    #[error("serialization error: {0}")]
80    Serialization(#[from] serde_json::Error),
81
82    /// A cryptographic operation failed (encryption or decryption).
83    #[error("crypto error: {0}")]
84    Crypto(String),
85}
86
87#[cfg(test)]
88mod tests {
89    use super::*;
90
91    #[test]
92    fn run_not_found_display() {
93        let id = Uuid::nil();
94        let err = StoreError::RunNotFound(id);
95        assert_eq!(err.to_string(), format!("run not found: {id}"));
96    }
97
98    #[test]
99    fn step_not_found_display() {
100        let id = Uuid::nil();
101        let err = StoreError::StepNotFound(id);
102        assert_eq!(err.to_string(), format!("step not found: {id}"));
103    }
104
105    #[test]
106    fn invalid_transition_display() {
107        let err = StoreError::InvalidTransition {
108            from: RunStatus::Pending,
109            to: RunStatus::Completed,
110        };
111        assert!(err.to_string().contains("Pending"));
112        assert!(err.to_string().contains("Completed"));
113    }
114
115    #[test]
116    fn database_error_display() {
117        let err = StoreError::Database("connection refused".to_string());
118        assert!(err.to_string().contains("connection refused"));
119    }
120
121    #[test]
122    fn serialization_error_from_serde() {
123        let serde_err = serde_json::from_str::<String>("not json").unwrap_err();
124        let err = StoreError::from(serde_err);
125        assert!(err.to_string().contains("serialization error"));
126    }
127}