sqry-lang-css 21.0.1

CSS language plugin for sqry
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
//! Graph builder tests for the CSS language plugin.
//!
//! Covers:
//! - Module node creation
//! - CSS variable (custom property) node extraction
//! - @import edge detection
//! - `url()` reference edges
//! - @layer support
//! - Error handling for malformed input

use sqry_core::graph::unified::StagingGraph;
use sqry_core::graph::unified::build::staging::StagingOp;
use sqry_core::graph::unified::edge::EdgeKind;
use sqry_core::graph::{GraphBuilder, Language};
use sqry_lang_css::CssGraphBuilder;
use std::path::Path;

fn parse_css(source: &str) -> tree_sitter::Tree {
    let mut parser = tree_sitter::Parser::new();
    parser
        .set_language(&tree_sitter_css::LANGUAGE.into())
        .expect("failed to set CSS language");
    parser
        .parse(source.as_bytes(), None)
        .expect("failed to parse CSS code")
}

fn count_import_edges(staging: &StagingGraph) -> usize {
    staging
        .operations()
        .iter()
        .filter(|op| {
            matches!(
                op,
                StagingOp::AddEdge {
                    kind: EdgeKind::Imports { .. },
                    ..
                }
            )
        })
        .count()
}

fn count_nodes(staging: &StagingGraph) -> usize {
    staging.node_count()
}

fn count_variable_nodes(staging: &StagingGraph) -> usize {
    use sqry_core::graph::unified::node::NodeKind;
    staging
        .operations()
        .iter()
        .filter(|op| {
            matches!(
                op,
                StagingOp::AddNode { entry, .. } if entry.kind == NodeKind::Variable
            )
        })
        .count()
}

// ==================== Basic Tests ====================

#[test]
fn test_empty_file() {
    let source = "";
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    let result = builder.build_graph(
        &tree,
        source.as_bytes(),
        Path::new("test.css"),
        &mut staging,
    );
    assert!(result.is_ok(), "Empty CSS file should succeed");
}

#[test]
fn test_simple_css_rules() {
    let source = r"
body {
    color: red;
    font-size: 16px;
}

.container {
    width: 100%;
    margin: 0 auto;
}
";
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    let result = builder.build_graph(
        &tree,
        source.as_bytes(),
        Path::new("style.css"),
        &mut staging,
    );
    assert!(result.is_ok(), "Simple CSS rules should succeed");
    // Two rule blocks (body + .container) must each produce at least one node
    assert!(
        count_nodes(&staging) >= 2,
        "Expected at least 2 nodes for two CSS rule blocks, got {}",
        count_nodes(&staging)
    );
}

// ==================== @import Edge Detection ====================

#[test]
fn test_import_statement_basic() {
    let source = r#"@import "reset.css";
body { color: black; }
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("main.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert!(
        import_count >= 1,
        "Expected at least 1 import edge for @import, got {import_count}"
    );
}

#[test]
fn test_import_statement_multiple() {
    let source = r#"@import "reset.css";
@import "variables.css";
@import "components.css";

body { margin: 0; }
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("main.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert!(
        import_count >= 3,
        "Expected at least 3 import edges, got {import_count}"
    );
}

#[test]
fn test_import_url_syntax() {
    let source = r#"@import url("theme.css");
body { color: blue; }
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("main.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert!(
        import_count >= 1,
        "Expected at least 1 import edge for url() syntax, got {import_count}"
    );
}

#[test]
fn test_repeated_imports_each_produce_edge() {
    // This test verifies each @import statement is processed individually.
    // The builder does not deduplicate; all three identical @imports produce edges.
    let source = r#"@import "reset.css";
@import "reset.css";
@import "reset.css";
body { color: black; }
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("main.css"),
            &mut staging,
        )
        .unwrap();

    // All 3 @import statements must each produce an import edge
    let import_count = count_import_edges(&staging);
    assert_eq!(
        import_count, 3,
        "Expected exactly 3 import edges for 3 repeated @imports, got {import_count}"
    );
}

#[test]
fn test_no_imports_in_code_only() {
    let source = r"
body { color: black; }
.nav { display: flex; }
";
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("style.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert_eq!(import_count, 0, "No @import should produce no import edges");
}

// ==================== CSS Custom Properties (Variables) ====================

#[test]
fn test_css_custom_properties() {
    let source = r"
:root {
    --primary-color: #007bff;
    --font-size-base: 16px;
    --spacing-unit: 8px;
}

body {
    color: var(--primary-color);
    font-size: var(--font-size-base);
}
";
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    let result = builder.build_graph(
        &tree,
        source.as_bytes(),
        Path::new("vars.css"),
        &mut staging,
    );
    assert!(result.is_ok(), "CSS custom properties should succeed");
    // Three custom properties in :root must each produce a StyleVariable node
    assert!(
        count_variable_nodes(&staging) >= 3,
        "Expected at least 3 CSS variable nodes for --primary-color, \
         --font-size-base, --spacing-unit, got {}",
        count_variable_nodes(&staging)
    );
}

// ==================== @layer Support ====================

#[test]
fn test_layer_import() {
    let source = r#"@import "base.css" layer(base);
@import "utils.css" layer(utilities);
body { color: black; }
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("layers.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert!(
        import_count >= 2,
        "Expected at least 2 import edges for layer imports, got {import_count}"
    );
}

#[test]
fn test_layer_declaration() {
    let source = r"
@layer base, utilities, components;

@layer base {
    body { margin: 0; }
}

@layer utilities {
    .flex { display: flex; }
}
";
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    let result = builder.build_graph(
        &tree,
        source.as_bytes(),
        Path::new("layers.css"),
        &mut staging,
    );
    assert!(result.is_ok(), "@layer declarations should succeed");
}

// ==================== url() References ====================

#[test]
fn test_url_background_image() {
    let source = r#"
.hero {
    background-image: url("hero.jpg");
}

.icon {
    background: url('icons/search.svg');
}
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    let result = builder.build_graph(
        &tree,
        source.as_bytes(),
        Path::new("style.css"),
        &mut staging,
    );
    assert!(result.is_ok(), "url() references should succeed");
}

#[test]
fn test_data_uri_skipped() {
    // data: URIs should not create import edges
    let source = r#"
.icon {
    background: url("data:image/svg+xml;base64,abc123");
}
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("style.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert_eq!(import_count, 0, "data: URIs should not create import edges");
}

// ==================== Builder Properties ====================

#[test]
fn test_builder_language() {
    let builder = CssGraphBuilder;
    assert_eq!(builder.language(), Language::Css);
}

#[test]
fn test_builder_is_send_sync() {
    fn assert_send_sync<T: Send + Sync>() {}
    assert_send_sync::<CssGraphBuilder>();
}

// ==================== Error Handling ====================

#[test]
fn test_malformed_css() {
    // Incomplete CSS - tree-sitter is error-tolerant
    let source = r"
body {
    color:
"; // incomplete
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    // Should not panic
    let result = builder.build_graph(&tree, source.as_bytes(), Path::new("bad.css"), &mut staging);
    let _ = result;
}

#[test]
fn test_comments_only() {
    let source = r"
/* This is just a comment */
/* Another comment */
";
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    let result = builder.build_graph(
        &tree,
        source.as_bytes(),
        Path::new("comments.css"),
        &mut staging,
    );
    assert!(result.is_ok(), "Comments-only CSS should succeed");
}

#[test]
fn test_imports_and_rules_combined() {
    let source = r#"@import "normalize.css";
@import "variables.css";

:root {
    --primary: #007bff;
}

body {
    margin: 0;
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}
"#;
    let tree = parse_css(source);
    let mut staging = StagingGraph::new();
    let builder = CssGraphBuilder;

    builder
        .build_graph(
            &tree,
            source.as_bytes(),
            Path::new("main.css"),
            &mut staging,
        )
        .unwrap();

    let import_count = count_import_edges(&staging);
    assert!(
        import_count >= 2,
        "Expected at least 2 import edges, got {import_count}"
    );
}