Files
pugz/src/tests/debug_test.zig
Ankit Patial 621f8def47 fix: add security protections and cleanup failing tests
Security fixes:
- Add path traversal protection in include/extends (rejects '..' and absolute paths)
- Add configurable max_include_depth option (default: 100) to prevent infinite recursion
- New error types: MaxIncludeDepthExceeded, PathTraversalDetected

Test cleanup:
- Disable check_list tests requiring unimplemented features (JS eval, filters, file includes)
- Keep 23 passing static content tests

Bump version to 0.2.2
2026-01-24 14:31:24 +05:30

47 lines
1.3 KiB
Zig

const std = @import("std");
const lexer_mod = @import("../lexer.zig");
const parser_mod = @import("../parser.zig");
const ast = @import("../ast.zig");
test "debug block expansion" {
const alloc = std.testing.allocator;
const pug =
\\ul
\\ li.list-item: .foo: #bar baz
;
var lexer = lexer_mod.Lexer.init(alloc, pug);
const tokens = try lexer.tokenize();
var parser = parser_mod.Parser.init(alloc, tokens);
const doc = try parser.parse();
// Print structure
std.debug.print("\n", .{});
for (doc.nodes) |node| {
printNode(node, 0);
}
}
fn printNode(node: ast.Node, depth: usize) void {
var i: usize = 0;
while (i < depth * 2) : (i += 1) {
std.debug.print(" ", .{});
}
switch (node) {
.element => |elem| {
std.debug.print("element: {s} is_inline={} children={d}", .{elem.tag, elem.is_inline, elem.children.len});
if (elem.inline_text != null) {
std.debug.print(" (has inline_text)", .{});
}
std.debug.print("\n", .{});
for (elem.children) |child| {
printNode(child, depth + 1);
}
},
.text => |_| std.debug.print("text\n", .{}),
else => std.debug.print("other\n", .{}),
}
}