pixelsrc 0.2.0

Pixelsrc - GenAI-native pixel art format and compiler
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
//! Comprehensive tests for Phase 19 Advanced Texture Features (ATF)
//!
//! This test suite covers all ATF features:
//! - ATF-3: Palette Cycling
//! - ATF-4: Frame Tags
//! - ATF-5: Atlas Export
//! - ATF-7: Hit/Hurt Boxes
//! - ATF-10: Blend Modes
//! - ATF-11: Onion Skinning
//! - ATF-14: Secondary Motion

use std::fs;
use std::path::{Path, PathBuf};
use std::process::Command;

/// Get the path to the pxl binary
fn pxl_binary() -> PathBuf {
    let release = Path::new("target/release/pxl");
    if release.exists() {
        return release.to_path_buf();
    }

    let debug = Path::new("target/debug/pxl");
    if debug.exists() {
        return debug.to_path_buf();
    }

    panic!("pxl binary not found. Run 'cargo build' first.");
}

/// Run pxl render on a fixture file
fn run_pxl_render(fixture: &Path) -> std::process::Output {
    let output_dir = std::env::temp_dir().join("pxl_phase19_tests");
    fs::create_dir_all(&output_dir).ok();

    let output_path = output_dir.join("test_output.png");

    Command::new(pxl_binary())
        .arg("render")
        .arg(fixture)
        .arg("-o")
        .arg(&output_path)
        .output()
        .expect("Failed to execute pxl")
}

/// Run pxl with atlas export
fn run_pxl_atlas(fixture: &Path, format: &str) -> std::process::Output {
    let output_dir = std::env::temp_dir().join("pxl_phase19_atlas");
    fs::create_dir_all(&output_dir).ok();

    let output_path = output_dir.join("atlas.png");

    Command::new(pxl_binary())
        .arg("render")
        .arg(fixture)
        .arg("-o")
        .arg(&output_path)
        .arg("--format")
        .arg(format)
        .output()
        .expect("Failed to execute pxl")
}

// ============================================================================
// ATF-3: Palette Cycling Tests
// ============================================================================

#[test]
fn test_atf3_palette_cycle_basic() {
    let fixture = Path::new("tests/fixtures/valid/atf_palette_cycle.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Palette cycle fixture should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(!stderr.contains("Warning:"), "No warnings expected for valid palette cycle: {stderr}");
}

#[test]
fn test_atf3_multiple_palette_cycles() {
    let fixture = Path::new("tests/fixtures/valid/atf_multiple_cycles.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Multiple palette cycles should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// ATF-4: Frame Tags Tests
// ============================================================================

#[test]
fn test_atf4_frame_tags_basic() {
    let fixture = Path::new("tests/fixtures/valid/atf_frame_tags.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Frame tags fixture should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(!stderr.contains("Warning:"), "No warnings expected for valid frame tags: {stderr}");
}

// ============================================================================
// ATF-5: Atlas Export Tests
// ============================================================================

#[test]
fn test_atf5_atlas_export_basic() {
    let fixture = Path::new("tests/fixtures/valid/multiple_sprites.jsonl");
    let output = run_pxl_atlas(fixture, "atlas");

    assert!(
        output.status.success(),
        "Atlas export should succeed.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_atf5_atlas_export_aseprite() {
    let fixture = Path::new("tests/fixtures/valid/atf_frame_tags.jsonl");
    let output = run_pxl_atlas(fixture, "atlas-aseprite");

    assert!(
        output.status.success(),
        "Atlas Aseprite export should succeed.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_atf5_atlas_export_godot() {
    let fixture = Path::new("tests/fixtures/valid/multiple_sprites.jsonl");
    let output = run_pxl_atlas(fixture, "atlas-godot");

    assert!(
        output.status.success(),
        "Atlas Godot export should succeed.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// ATF-7: Hit/Hurt Boxes Tests
// ============================================================================

#[test]
fn test_atf7_hit_boxes_basic() {
    let fixture = Path::new("tests/fixtures/valid/atf_hit_boxes.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Hit boxes fixture should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(!stderr.contains("Warning:"), "No warnings expected for valid hit boxes: {stderr}");
}

#[test]
fn test_atf7_frame_metadata_validation() {
    // The atf_hit_boxes.jsonl has frame_metadata that matches frame count
    let fixture = Path::new("tests/fixtures/valid/atf_hit_boxes.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Frame metadata with matching count should pass.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// ATF-10: Blend Modes Tests
// ============================================================================

#[test]
fn test_atf10_blend_modes_composition() {
    let fixture = Path::new("tests/fixtures/valid/atf_blend_modes.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Blend modes composition should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// ATF-11: Onion Skinning Tests
// ============================================================================

#[test]
fn test_atf11_onion_skinning_show_command() {
    let output_dir = std::env::temp_dir().join("pxl_onion_test");
    fs::create_dir_all(&output_dir).ok();

    let output_path = output_dir.join("onion_output.png");
    let fixture = Path::new("tests/fixtures/valid/animation.jsonl");

    let output = Command::new(pxl_binary())
        .arg("show")
        .arg(fixture)
        .arg("--animation")
        .arg("blink_anim")
        .arg("--onion")
        .arg("1")
        .arg("-o")
        .arg(&output_path)
        .output()
        .expect("Failed to execute pxl show");

    assert!(
        output.status.success(),
        "Onion skinning show command should succeed.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    assert!(output_path.exists(), "Onion skin output file should be created");
}

#[test]
fn test_atf11_onion_skinning_with_colors() {
    let output_dir = std::env::temp_dir().join("pxl_onion_color_test");
    fs::create_dir_all(&output_dir).ok();

    let output_path = output_dir.join("onion_color_output.png");
    let fixture = Path::new("tests/fixtures/valid/animation.jsonl");

    let output = Command::new(pxl_binary())
        .arg("show")
        .arg(fixture)
        .arg("--animation")
        .arg("blink_anim")
        .arg("--onion")
        .arg("2")
        .arg("--onion-prev-color")
        .arg("#FF0000")
        .arg("--onion-next-color")
        .arg("#00FF00")
        .arg("--onion-opacity")
        .arg("0.5")
        .arg("-o")
        .arg(&output_path)
        .output()
        .expect("Failed to execute pxl show");

    assert!(
        output.status.success(),
        "Onion skinning with custom colors should succeed.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_atf11_onion_skinning_with_fade() {
    let output_dir = std::env::temp_dir().join("pxl_onion_fade_test");
    fs::create_dir_all(&output_dir).ok();

    let output_path = output_dir.join("onion_fade_output.png");
    let fixture = Path::new("tests/fixtures/valid/animation.jsonl");

    let output = Command::new(pxl_binary())
        .arg("show")
        .arg(fixture)
        .arg("--animation")
        .arg("blink_anim")
        .arg("--onion")
        .arg("2")
        .arg("--onion-fade")
        .arg("-o")
        .arg(&output_path)
        .output()
        .expect("Failed to execute pxl show");

    assert!(
        output.status.success(),
        "Onion skinning with fade should succeed.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// ATF-14: Secondary Motion Tests
// ============================================================================

#[test]
fn test_atf14_secondary_motion_basic() {
    let fixture = Path::new("tests/fixtures/valid/atf_secondary_motion.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Secondary motion fixture should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        !stderr.contains("Warning:"),
        "No warnings expected for valid secondary motion: {stderr}"
    );
}

#[test]
fn test_atf14_keyframed_attachment() {
    let fixture = Path::new("tests/fixtures/valid/atf_keyframed_attachment.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Keyframed attachment fixture should render successfully.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// Combined Feature Tests
// ============================================================================

#[test]
fn test_combined_palette_cycle_with_tags() {
    // Test animation with both palette cycling and frame tags
    let fixture = Path::new("tests/fixtures/valid/atf_frame_tags.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Combined features should work together.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_all_atf_fixtures_valid() {
    // Verify all ATF fixtures are valid
    let atf_fixtures = [
        "tests/fixtures/valid/atf_palette_cycle.jsonl",
        "tests/fixtures/valid/atf_frame_tags.jsonl",
        "tests/fixtures/valid/atf_hit_boxes.jsonl",
        "tests/fixtures/valid/atf_secondary_motion.jsonl",
        "tests/fixtures/valid/atf_blend_modes.jsonl",
        "tests/fixtures/valid/atf_multiple_cycles.jsonl",
        "tests/fixtures/valid/atf_keyframed_attachment.jsonl",
    ];

    for fixture_path in &atf_fixtures {
        let fixture = Path::new(fixture_path);
        if fixture.exists() {
            let output = run_pxl_render(fixture);
            assert!(
                output.status.success(),
                "ATF fixture {:?} should render successfully.\nstderr: {}",
                fixture,
                String::from_utf8_lossy(&output.stderr)
            );
        }
    }
}

// ============================================================================
// Regression Tests
// ============================================================================

#[test]
fn test_existing_animations_still_work() {
    // Ensure existing animation fixtures continue to work
    let fixture = Path::new("tests/fixtures/valid/animation.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Existing animation fixture should still work.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_existing_compositions_still_work() {
    // Ensure existing composition fixtures continue to work
    let fixture = Path::new("tests/fixtures/valid/composition_basic.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Existing composition fixture should still work.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// Edge Case Tests
// ============================================================================

#[test]
fn test_empty_palette_cycle_array() {
    // Animation with empty palette_cycle should be valid
    let fixture = Path::new("tests/fixtures/valid/animation.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Animation without palette cycle should work.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

#[test]
fn test_sprite_without_metadata() {
    // Sprites without metadata field should still work
    let fixture = Path::new("tests/fixtures/valid/minimal_dot.jsonl");
    let output = run_pxl_render(fixture);

    assert!(
        output.status.success(),
        "Sprite without metadata should work.\nstderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );
}