mockforge-federation 0.3.148

Multi-workspace federation for MockForge - compose multiple mock workspaces into federated virtual systems
Documentation
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
//! Federation definition and management
//!
//! A federation is a collection of services that form a virtual system.

use crate::service::{ServiceBoundary, ServiceRealityLevel};
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use uuid::Uuid;

/// Federation configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FederationConfig {
    /// Federation name
    pub name: String,
    /// Federation description
    #[serde(default)]
    pub description: String,
    /// Services in this federation
    pub services: Vec<FederationService>,
}

/// Service definition in federation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FederationService {
    /// Service name
    pub name: String,
    /// Workspace ID
    pub workspace_id: String, // UUID as string for YAML
    /// Base path
    pub base_path: String,
    /// Reality level
    pub reality_level: String,
    /// Service-specific config
    #[serde(default)]
    pub config: HashMap<String, serde_json::Value>,
    /// Dependencies
    #[serde(default)]
    pub dependencies: Vec<String>,
}

/// Federation metadata (stored in database)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Federation {
    /// Federation ID
    pub id: Uuid,
    /// Federation name
    pub name: String,
    /// Federation description
    pub description: String,
    /// Organization ID
    pub org_id: Uuid,
    /// Service boundaries
    pub services: Vec<ServiceBoundary>,
    /// Created timestamp
    pub created_at: DateTime<Utc>,
    /// Updated timestamp
    pub updated_at: DateTime<Utc>,
}

impl Federation {
    /// Create an empty federation with no services
    #[must_use]
    pub fn empty() -> Self {
        let now = Utc::now();
        Self {
            id: Uuid::new_v4(),
            name: String::from("default"),
            description: String::new(),
            org_id: Uuid::nil(),
            services: Vec::new(),
            created_at: now,
            updated_at: now,
        }
    }

    /// Create a new federation from config
    ///
    /// # Errors
    ///
    /// Returns an error if any service has an invalid workspace ID or reality level.
    pub fn from_config(org_id: Uuid, config: FederationConfig) -> Result<Self, String> {
        let mut services = Vec::new();

        for service_config in config.services {
            let workspace_id = Uuid::parse_str(&service_config.workspace_id)
                .map_err(|_| format!("Invalid workspace_id: {}", service_config.workspace_id))?;

            let reality_level = ServiceRealityLevel::from_str(&service_config.reality_level)
                .ok_or_else(|| {
                    format!("Invalid reality_level: {}", service_config.reality_level)
                })?;

            let mut service = ServiceBoundary::new(
                service_config.name.clone(),
                workspace_id,
                service_config.base_path.clone(),
                reality_level,
            );

            service.config = service_config.config;
            service.dependencies = service_config.dependencies;

            services.push(service);
        }

        let now = Utc::now();

        Ok(Self {
            id: Uuid::new_v4(),
            name: config.name,
            description: config.description,
            org_id,
            services,
            created_at: now,
            updated_at: now,
        })
    }

    /// Find service by path
    #[must_use]
    pub fn find_service_by_path(&self, path: &str) -> Option<&ServiceBoundary> {
        // Find the longest matching base_path (most specific match)
        self.services
            .iter()
            .filter(|s| s.matches_path(path))
            .max_by_key(|s| s.base_path.len())
    }

    /// Get service by name
    #[must_use]
    pub fn get_service(&self, name: &str) -> Option<&ServiceBoundary> {
        self.services.iter().find(|s| s.name == name)
    }

    /// Add a service to the federation
    pub fn add_service(&mut self, service: ServiceBoundary) {
        self.services.push(service);
        self.updated_at = Utc::now();
    }

    /// Remove a service from the federation
    pub fn remove_service(&mut self, name: &str) -> bool {
        let len_before = self.services.len();
        self.services.retain(|s| s.name != name);
        let removed = self.services.len() < len_before;
        if removed {
            self.updated_at = Utc::now();
        }
        removed
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    fn create_test_federation() -> Federation {
        Federation {
            id: Uuid::new_v4(),
            name: "test".to_string(),
            description: "Test federation".to_string(),
            org_id: Uuid::new_v4(),
            services: vec![
                ServiceBoundary::new(
                    "auth".to_string(),
                    Uuid::new_v4(),
                    "/auth".to_string(),
                    ServiceRealityLevel::Real,
                ),
                ServiceBoundary::new(
                    "payments".to_string(),
                    Uuid::new_v4(),
                    "/payments".to_string(),
                    ServiceRealityLevel::MockV3,
                ),
            ],
            created_at: Utc::now(),
            updated_at: Utc::now(),
        }
    }

    #[test]
    fn test_federation_from_config() {
        let config = FederationConfig {
            name: "test-federation".to_string(),
            description: "Test".to_string(),
            services: vec![FederationService {
                name: "auth".to_string(),
                workspace_id: Uuid::new_v4().to_string(),
                base_path: "/auth".to_string(),
                reality_level: "real".to_string(),
                config: HashMap::new(),
                dependencies: Vec::new(),
            }],
        };

        let federation = Federation::from_config(Uuid::new_v4(), config).unwrap();
        assert_eq!(federation.services.len(), 1);
        assert_eq!(federation.services[0].name, "auth");
    }

    #[test]
    fn test_federation_from_config_multiple_services() {
        let config = FederationConfig {
            name: "multi-service".to_string(),
            description: "Multiple services".to_string(),
            services: vec![
                FederationService {
                    name: "auth".to_string(),
                    workspace_id: Uuid::new_v4().to_string(),
                    base_path: "/auth".to_string(),
                    reality_level: "real".to_string(),
                    config: HashMap::new(),
                    dependencies: Vec::new(),
                },
                FederationService {
                    name: "payments".to_string(),
                    workspace_id: Uuid::new_v4().to_string(),
                    base_path: "/payments".to_string(),
                    reality_level: "mock_v3".to_string(),
                    config: HashMap::new(),
                    dependencies: vec!["auth".to_string()],
                },
            ],
        };

        let federation = Federation::from_config(Uuid::new_v4(), config).unwrap();
        assert_eq!(federation.services.len(), 2);
        assert_eq!(federation.services[1].dependencies, vec!["auth".to_string()]);
    }

    #[test]
    fn test_federation_from_config_invalid_workspace_id() {
        let config = FederationConfig {
            name: "test".to_string(),
            description: String::new(),
            services: vec![FederationService {
                name: "auth".to_string(),
                workspace_id: "invalid-uuid".to_string(),
                base_path: "/auth".to_string(),
                reality_level: "real".to_string(),
                config: HashMap::new(),
                dependencies: Vec::new(),
            }],
        };

        let result = Federation::from_config(Uuid::new_v4(), config);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Invalid workspace_id"));
    }

    #[test]
    fn test_federation_from_config_invalid_reality_level() {
        let config = FederationConfig {
            name: "test".to_string(),
            description: String::new(),
            services: vec![FederationService {
                name: "auth".to_string(),
                workspace_id: Uuid::new_v4().to_string(),
                base_path: "/auth".to_string(),
                reality_level: "invalid_level".to_string(),
                config: HashMap::new(),
                dependencies: Vec::new(),
            }],
        };

        let result = Federation::from_config(Uuid::new_v4(), config);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Invalid reality_level"));
    }

    #[test]
    fn test_find_service_by_path() {
        let federation = create_test_federation();

        assert!(federation.find_service_by_path("/auth").is_some());
        assert!(federation.find_service_by_path("/payments").is_some());
        assert!(federation.find_service_by_path("/unknown").is_none());
    }

    #[test]
    fn test_find_service_by_path_nested() {
        let federation = create_test_federation();

        let service = federation.find_service_by_path("/auth/login").unwrap();
        assert_eq!(service.name, "auth");

        let service = federation.find_service_by_path("/payments/process").unwrap();
        assert_eq!(service.name, "payments");
    }

    #[test]
    fn test_find_service_by_path_longest_match() {
        let mut federation = create_test_federation();
        federation.services.push(ServiceBoundary::new(
            "auth-admin".to_string(),
            Uuid::new_v4(),
            "/auth/admin".to_string(),
            ServiceRealityLevel::MockV3,
        ));

        // Should match the longer /auth/admin path
        let service = federation.find_service_by_path("/auth/admin/users").unwrap();
        assert_eq!(service.name, "auth-admin");

        // Should match /auth (shorter path)
        let service = federation.find_service_by_path("/auth/login").unwrap();
        assert_eq!(service.name, "auth");
    }

    #[test]
    fn test_get_service() {
        let federation = create_test_federation();

        let service = federation.get_service("auth").unwrap();
        assert_eq!(service.name, "auth");

        let service = federation.get_service("payments").unwrap();
        assert_eq!(service.name, "payments");

        assert!(federation.get_service("nonexistent").is_none());
    }

    #[test]
    fn test_add_service() {
        let mut federation = create_test_federation();
        let initial_count = federation.services.len();

        federation.add_service(ServiceBoundary::new(
            "inventory".to_string(),
            Uuid::new_v4(),
            "/inventory".to_string(),
            ServiceRealityLevel::Blended,
        ));

        assert_eq!(federation.services.len(), initial_count + 1);
        assert!(federation.get_service("inventory").is_some());
    }

    #[test]
    fn test_add_service_updates_timestamp() {
        let mut federation = create_test_federation();
        let original_updated = federation.updated_at;

        // Small delay to ensure timestamp changes
        std::thread::sleep(std::time::Duration::from_millis(10));

        federation.add_service(ServiceBoundary::new(
            "new".to_string(),
            Uuid::new_v4(),
            "/new".to_string(),
            ServiceRealityLevel::Real,
        ));

        assert!(federation.updated_at > original_updated);
    }

    #[test]
    fn test_remove_service() {
        let mut federation = create_test_federation();
        let initial_count = federation.services.len();

        assert!(federation.remove_service("auth"));
        assert_eq!(federation.services.len(), initial_count - 1);
        assert!(federation.get_service("auth").is_none());
    }

    #[test]
    fn test_remove_service_not_found() {
        let mut federation = create_test_federation();
        let initial_count = federation.services.len();

        assert!(!federation.remove_service("nonexistent"));
        assert_eq!(federation.services.len(), initial_count);
    }

    #[test]
    fn test_remove_service_updates_timestamp() {
        let mut federation = create_test_federation();
        let original_updated = federation.updated_at;

        std::thread::sleep(std::time::Duration::from_millis(10));

        federation.remove_service("auth");
        assert!(federation.updated_at > original_updated);
    }

    // FederationConfig tests
    #[test]
    fn test_federation_config_serialize() {
        let config = FederationConfig {
            name: "test".to_string(),
            description: "Test federation".to_string(),
            services: vec![],
        };

        let json = serde_json::to_string(&config).unwrap();
        assert!(json.contains("\"name\":\"test\""));
        assert!(json.contains("\"description\":\"Test federation\""));
    }

    #[test]
    fn test_federation_config_deserialize() {
        let json = r#"{"name":"test","description":"","services":[]}"#;
        let config: FederationConfig = serde_json::from_str(json).unwrap();
        assert_eq!(config.name, "test");
        assert!(config.services.is_empty());
    }

    // FederationService tests
    #[test]
    fn test_federation_service_debug() {
        let service = FederationService {
            name: "auth".to_string(),
            workspace_id: Uuid::new_v4().to_string(),
            base_path: "/auth".to_string(),
            reality_level: "real".to_string(),
            config: HashMap::new(),
            dependencies: Vec::new(),
        };

        let debug = format!("{service:?}");
        assert!(debug.contains("auth"));
    }

    // Federation serialization tests
    #[test]
    fn test_federation_serialize() {
        let federation = create_test_federation();
        let json = serde_json::to_string(&federation).unwrap();
        assert!(json.contains("test"));
        assert!(json.contains("auth"));
        assert!(json.contains("payments"));
    }

    #[test]
    fn test_federation_clone() {
        let federation = create_test_federation();
        let cloned = federation.clone();

        assert_eq!(federation.id, cloned.id);
        assert_eq!(federation.name, cloned.name);
        assert_eq!(federation.services.len(), cloned.services.len());
    }
}