amalgam-parser 0.6.4

Schema parsers for CRD, OpenAPI, and Go types for amalgam
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
//! Integration tests for amalgam-parser

use amalgam_codegen::Codegen;
use amalgam_parser::{
    crd::{CRDParser, CRD},
    package::PackageGenerator,
    Parser,
};
use tempfile::TempDir;

fn load_test_crd(yaml_content: &str) -> CRD {
    serde_yaml::from_str(yaml_content).expect("Failed to parse test CRD")
}

#[test]
fn test_end_to_end_crd_to_nickel() {
    let crd_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: compositions.apiextensions.crossplane.io
spec:
  group: apiextensions.crossplane.io
  names:
    kind: Composition
    plural: compositions
    singular: composition
  versions:
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
        required:
        - spec
        properties:
          spec:
            type: object
            required:
            - resources
            properties:
              resources:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                    base:
                      type: object
              compositeTypeRef:
                type: object
                properties:
                  apiVersion:
                    type: string
                  kind:
                    type: string
"#;

    let crd = load_test_crd(crd_yaml);
    let parser = CRDParser::new();
    let ir = parser.parse(crd.clone()).expect("Failed to parse CRD");

    // Verify IR was generated with one module for the single version
    assert_eq!(
        ir.modules.len(),
        1,
        "Should have 1 module for single version"
    );
    assert!(ir.modules[0].name.contains("Composition"));
    assert!(ir.modules[0].name.contains("v1"));

    // Generate Nickel code
    let mut codegen = amalgam_codegen::nickel::NickelCodegen::new();
    let nickel_code = codegen
        .generate(&ir)
        .expect("Failed to generate Nickel code");

    // Verify generated code contains expected elements
    assert!(nickel_code.contains("Composition"));
    assert!(nickel_code.contains("spec"));
    assert!(nickel_code.contains("resources"));
    assert!(nickel_code.contains("compositeTypeRef"));
}

#[test]
fn test_package_structure_generation() {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let output_path = temp_dir.path().to_path_buf();

    let mut generator = PackageGenerator::new("test-package".to_string(), output_path.clone());

    // Add multiple CRDs
    let crd1_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: widgets.example.io
spec:
  group: example.io
  names:
    kind: Widget
    plural: widgets
    singular: widget
  versions:
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
"#;

    let crd2_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: gadgets.example.io
spec:
  group: example.io
  names:
    kind: Gadget
    plural: gadgets
    singular: gadget
  versions:
  - name: v1
    served: true
    storage: false
    schema:
      openAPIV3Schema:
        type: object
  - name: v2
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
"#;

    generator.add_crd(load_test_crd(crd1_yaml));
    generator.add_crd(load_test_crd(crd2_yaml));

    let package = generator
        .generate_package()
        .expect("Failed to generate package");

    // Verify package structure
    assert_eq!(package.groups().len(), 1);
    assert!(package.groups().contains(&"example.io".to_string()));

    let versions = package.versions("example.io");
    assert!(versions.contains(&"v1".to_string()));
    assert!(versions.contains(&"v2".to_string()));

    let v1_kinds = package.kinds("example.io", "v1");
    assert!(v1_kinds.contains(&"widget".to_string()));
    assert!(v1_kinds.contains(&"gadget".to_string()));

    let v2_kinds = package.kinds("example.io", "v2");
    assert!(v2_kinds.contains(&"gadget".to_string()));
    assert!(!v2_kinds.contains(&"widget".to_string()));
}

#[test]
fn test_complex_schema_parsing() {
    let crd_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: complex.test.io
spec:
  group: test.io
  names:
    kind: Complex
    plural: complexes
    singular: complex
  versions:
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              stringField:
                type: string
                default: "default-value"
              intField:
                type: integer
                minimum: 0
                maximum: 100
              arrayField:
                type: array
                items:
                  type: string
              mapField:
                type: object
                additionalProperties:
                  type: number
              nestedObject:
                type: object
                properties:
                  innerString:
                    type: string
                  innerBool:
                    type: boolean
              enumField:
                type: string
                enum:
                - value1
                - value2
                - value3
              unionField:
                oneOf:
                - type: string
                - type: number
              optionalField:
                type: string
                nullable: true
"#;

    let crd = load_test_crd(crd_yaml);
    let parser = CRDParser::new();
    let ir = parser.parse(crd).expect("Failed to parse complex CRD");

    // Find the Complex type in the IR
    let complex_module = ir
        .modules
        .iter()
        .find(|m| m.name.contains("Complex"))
        .expect("Complex module not found");

    let complex_type = complex_module
        .types
        .iter()
        .find(|t| t.name == "Complex")
        .expect("Complex type not found");

    // Verify the type structure
    match &complex_type.ty {
        amalgam_core::types::Type::Record { fields, .. } => {
            assert!(fields.contains_key("spec"));
            // Further nested validation could be done here
        }
        _ => panic!("Expected Complex to be a Record type"),
    }
}

#[test]
fn test_multi_version_crd() {
    let crd_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: multiversion.test.io
spec:
  group: test.io
  names:
    kind: MultiVersion
    plural: multiversions
    singular: multiversion
  versions:
  - name: v1alpha1
    served: true
    storage: false
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              alphaField:
                type: string
  - name: v1beta1
    served: true
    storage: false
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              alphaField:
                type: string
              betaField:
                type: integer
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              alphaField:
                type: string
              betaField:
                type: integer
              stableField:
                type: boolean
"#;

    let crd = load_test_crd(crd_yaml);
    let parser = CRDParser::new();
    let ir = parser
        .parse(crd.clone())
        .expect("Failed to parse multi-version CRD");

    // Parser should create separate modules for each version
    assert_eq!(ir.modules.len(), 3, "Should have 3 modules for 3 versions");

    // Check that each version has its own module
    let module_names: Vec<String> = ir.modules.iter().map(|m| m.name.clone()).collect();

    assert!(
        module_names.iter().any(|n| n.contains("v1alpha1")),
        "Should have v1alpha1 module"
    );
    assert!(
        module_names.iter().any(|n| n.contains("v1beta1")),
        "Should have v1beta1 module"
    );
    assert!(
        module_names.iter().any(|n| n.contains(".v1.")),
        "Should have v1 module"
    );

    // Each module should have the MultiVersion type
    for module in &ir.modules {
        assert_eq!(module.types.len(), 1, "Each module should have one type");
        assert_eq!(module.types[0].name, "MultiVersion");
    }
}

#[test]
fn test_multi_version_package_generation() {
    let crd_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: evolving.test.io
spec:
  group: test.io
  names:
    kind: Evolving
    plural: evolvings
    singular: evolving
  versions:
  - name: v1alpha1
    served: true
    storage: false
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              alphaField:
                type: string
  - name: v1beta1
    served: true
    storage: false
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              alphaField:
                type: string
              betaField:
                type: integer
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            properties:
              alphaField:
                type: string
              betaField:
                type: integer
              stableField:
                type: boolean
"#;

    let temp_dir = tempfile::TempDir::new().unwrap();
    let mut generator =
        PackageGenerator::new("evolution-test".to_string(), temp_dir.path().to_path_buf());

    generator.add_crd(load_test_crd(crd_yaml));

    let package = generator
        .generate_package()
        .expect("Failed to generate package");

    // Verify all versions are present
    let versions = package.versions("test.io");
    assert_eq!(versions.len(), 3, "Should have 3 versions");
    assert!(versions.contains(&"v1alpha1".to_string()));
    assert!(versions.contains(&"v1beta1".to_string()));
    assert!(versions.contains(&"v1".to_string()));

    // Each version should have the evolving kind
    for version in &["v1alpha1", "v1beta1", "v1"] {
        let kinds = package.kinds("test.io", version);
        assert_eq!(kinds.len(), 1, "Each version should have 1 kind");
        assert!(kinds.contains(&"evolving".to_string()));
    }

    // Verify we can generate files for each version
    assert!(package
        .generate_kind_file("test.io", "v1alpha1", "evolving")
        .is_some());
    assert!(package
        .generate_kind_file("test.io", "v1beta1", "evolving")
        .is_some());
    assert!(package
        .generate_kind_file("test.io", "v1", "evolving")
        .is_some());
}

#[test]
fn test_crd_with_validation_rules() {
    let crd_yaml = r#"
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: validated.test.io
spec:
  group: test.io
  names:
    kind: Validated
    plural: validateds
    singular: validated
  versions:
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
        required:
        - spec
        properties:
          spec:
            type: object
            required:
            - requiredField
            properties:
              requiredField:
                type: string
                minLength: 3
                maxLength: 10
                pattern: "^[a-z]+$"
              numberWithBounds:
                type: number
                minimum: 0.0
                maximum: 100.0
                exclusiveMinimum: true
              arrayWithLimits:
                type: array
                minItems: 1
                maxItems: 5
                uniqueItems: true
                items:
                  type: string
"#;

    let crd = load_test_crd(crd_yaml);
    let parser = CRDParser::new();
    let ir = parser.parse(crd).expect("Failed to parse validated CRD");

    // Generate code and verify validation constraints are preserved
    let mut codegen = amalgam_codegen::nickel::NickelCodegen::new();
    let nickel_code = codegen
        .generate(&ir)
        .expect("Failed to generate Nickel code");

    // Check that required fields are marked
    assert!(nickel_code.contains("requiredField"));
    // Note: Actual validation constraints would need to be implemented
    // in the code generator to be properly tested here
}