-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
build.zig
169 lines (143 loc) · 5.97 KB
/
build.zig
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
const std = @import("std");
const zig_version = @import("builtin").zig_version;
// Used for any unversioned content (for now just /blog)
const current_minor_version = 13;
const version_path = std.fmt.comptimePrint(
"website/versioned_docs/version-0.{}/",
.{zig_version.minor},
);
/// Returns paths to all files inside version_path with a .zig extension.
/// Also tests /blog when current_minor_version is detected.
fn getAllTestPaths(root_dir: std.fs.Dir, allocator: std.mem.Allocator) ![][]const u8 {
var test_file_paths = std.ArrayList([]const u8).init(allocator);
errdefer {
for (test_file_paths.items) |test_path| allocator.free(test_path);
test_file_paths.deinit();
}
{
var dirs = try switch (zig_version.minor) {
11 => root_dir.openIterableDir(version_path, .{}),
else => root_dir.openDir(version_path, .{ .iterate = true }),
};
defer dirs.close();
var walker = try dirs.walk(allocator);
while (try walker.next()) |entry| {
if (entry.kind != .file) continue;
if (!std.mem.endsWith(u8, entry.path, ".zig")) continue;
const qualified_path = try std.fs.path.join(
allocator,
&[_][]const u8{ version_path, entry.path },
);
try test_file_paths.append(qualified_path);
}
}
if (zig_version.minor != current_minor_version) {
std.log.warn("Zig 0.{}.x detected, skipping testing /blog content (requires Zig 0.{}.x)", .{
zig_version.minor,
current_minor_version,
});
} else {
std.log.info("Zig 0.{}.x detected, testing /blog content", .{
zig_version.minor,
});
const blog_path = "website/blog";
var dirs = try switch (zig_version.minor) {
11 => root_dir.openIterableDir(blog_path, .{}),
else => root_dir.openDir(blog_path, .{ .iterate = true }),
};
defer dirs.close();
var walker = try dirs.walk(allocator);
while (try walker.next()) |entry| {
if (entry.kind != .file) continue;
if (!std.mem.endsWith(u8, entry.path, ".zig")) continue;
const qualified_path = try std.fs.path.join(
allocator,
&[_][]const u8{ blog_path, entry.path },
);
try test_file_paths.append(qualified_path);
}
}
return test_file_paths.toOwnedSlice();
}
/// Returns a generated file as an entrypoint for testing
fn generateMainTestFile(allocator: std.mem.Allocator, test_file_paths: [][]const u8) ![]u8 {
var out_file = std.ArrayList(u8).init(allocator);
try out_file.appendSlice("const std = @import(\"std\");\n");
for (test_file_paths) |test_path| {
try out_file.writer().print(
"pub const A{X} = @import(\"{s}\");\n",
.{ std.hash.Wyhash.hash(0, test_path), test_path },
);
}
try out_file.appendSlice("comptime { std.testing.refAllDecls(@This()); }\n");
return out_file.toOwnedSlice();
}
pub fn build(b: *std.Build) !void {
std.log.warn("Zig 0.{}.x detected, importing " ++ version_path, .{zig_version.minor});
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const test_file_paths = try getAllTestPaths(b.build_root.handle, b.allocator);
defer {
for (test_file_paths) |test_path| b.allocator.free(test_path);
b.allocator.free(test_file_paths);
}
const out_file = try generateMainTestFile(b.allocator, test_file_paths);
defer b.allocator.free(out_file);
// write out our main testing file to zig-cache
const write_files = b.addWriteFiles();
const test_lazypath = write_files.add("test-main.zig", out_file);
// copy our zig test files from version_path into zig-cache
for (test_file_paths) |test_file_path| {
const path = b.fmt("{s}", .{test_file_path});
// TODO: don't use cwd_relative...
_ = write_files.addCopyFile(.{ .cwd_relative = path }, path);
}
const unit_tests = b.addTest(.{
.root_source_file = test_lazypath,
.target = target,
.optimize = optimize,
});
const run_unit_tests = b.addRunArtifact(unit_tests);
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_unit_tests.step);
const fmt_paths = try b.allocator.alloc([]const u8, 1);
fmt_paths[0] = b.build_root.path orelse ".";
const fmt = b.addFmt(.{ .paths = fmt_paths, .check = true });
const fmt_step = b.step("fmt", "Test all files for correct formatting");
fmt_step.dependOn(&fmt.step);
const dir_logger = DebugDirLogger.create(b);
dir_logger.step.dependOn(&write_files.step);
const test_with_fmt = b.step("test-with-fmt", "Run unit tests & test all files for correct formatting");
test_with_fmt.dependOn(test_step);
test_with_fmt.dependOn(fmt_step);
test_with_fmt.dependOn(&dir_logger.step);
b.default_step = test_with_fmt;
}
const WriteFileStep = switch (zig_version.minor) {
11 => std.build.WriteFileStep,
else => std.Build.Step.WriteFile,
};
/// Logs the output directory of its WriteFileStep dependency.
const DebugDirLogger = struct {
step: std.Build.Step,
pub fn create(owner: *std.Build) *DebugDirLogger {
const ds = owner.allocator.create(DebugDirLogger) catch @panic("OOM");
ds.* = .{
.step = std.Build.Step.init(.{
.id = .custom,
.name = "debug-dir-logger",
.owner = owner,
.makeFn = make,
}),
};
return ds;
}
fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
const dependency = step.dependencies.items[0];
if (dependency.id != .write_file) unreachable; // DebugDirLogger only supports a WriteFileStep dependency
std.log.debug(
"test-dir at {s}",
.{@as(*WriteFileStep, @fieldParentPtr("step", dependency)).generated_directory.path.?},
);
}
};