123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- const std = @import("std");
- const root = @import("../build.zig");
- const debug = std.debug;
- const fmt = std.fmt;
- const fs = std.fs;
- const mem = std.mem;
- const Allocator = std.mem.Allocator;
- const Build = std.build;
- const FileSource = std.Build.FileSource;
- const Reader = fs.File.Reader;
- const RunStep = std.Build.RunStep;
- const Step = Build.Step;
- const Exercise = root.Exercise;
- pub fn addCliTests(b: *std.Build, exercises: []const Exercise) *Step {
- const step = b.step("test-cli", "Test the command line interface");
- // We should use a temporary path, but it will make the implementation of
- // `build.zig` more complex.
- const work_path = "patches/healed";
- fs.cwd().makePath(work_path) catch |err| {
- return fail(step, "unable to make '{s}': {s}\n", .{ work_path, @errorName(err) });
- };
- const heal_step = HealStep.create(b, exercises, work_path);
- {
- // Test that `zig build -Dhealed -Dn=n test` selects the nth exercise.
- const case_step = createCase(b, "case-1");
- for (exercises[0 .. exercises.len - 1]) |ex| {
- const n = ex.number();
- if (ex.skip) continue;
- const cmd = b.addSystemCommand(
- &.{ b.zig_exe, "build", "-Dhealed", b.fmt("-Dn={}", .{n}), "test" },
- );
- cmd.setName(b.fmt("zig build -Dhealed -Dn={} test", .{n}));
- cmd.expectExitCode(0);
- if (ex.check_stdout) {
- expectStdOutMatch(cmd, ex.output);
- cmd.expectStdErrEqual("");
- } else {
- expectStdErrMatch(cmd, ex.output);
- cmd.expectStdOutEqual("");
- }
- cmd.step.dependOn(&heal_step.step);
- case_step.dependOn(&cmd.step);
- }
- step.dependOn(case_step);
- }
- {
- // Test that `zig build -Dhealed -Dn=n test` skips disabled esercises.
- const case_step = createCase(b, "case-2");
- for (exercises[0 .. exercises.len - 1]) |ex| {
- const n = ex.number();
- if (!ex.skip) continue;
- const cmd = b.addSystemCommand(
- &.{ b.zig_exe, "build", "-Dhealed", b.fmt("-Dn={}", .{n}), "test" },
- );
- cmd.setName(b.fmt("zig build -Dhealed -Dn={} test", .{n}));
- cmd.expectExitCode(0);
- cmd.expectStdOutEqual("");
- expectStdErrMatch(cmd, b.fmt("{s} skipped", .{ex.main_file}));
- cmd.step.dependOn(&heal_step.step);
- case_step.dependOn(&cmd.step);
- }
- step.dependOn(case_step);
- }
- {
- // Test that `zig build -Dhealed` process all the exercises in order.
- const case_step = createCase(b, "case-3");
- // TODO: when an exercise is modified, the cache is not invalidated.
- const cmd = b.addSystemCommand(&.{ b.zig_exe, "build", "-Dhealed" });
- cmd.setName("zig build -Dhealed");
- cmd.expectExitCode(0);
- cmd.step.dependOn(&heal_step.step);
- const stderr = cmd.captureStdErr();
- const verify = CheckStep.create(b, exercises, stderr, true);
- verify.step.dependOn(&cmd.step);
- case_step.dependOn(&verify.step);
- step.dependOn(case_step);
- }
- {
- // Test that `zig build -Dhealed -Dn=1 start` process all the exercises
- // in order.
- const case_step = createCase(b, "case-4");
- // TODO: when an exercise is modified, the cache is not invalidated.
- const cmd = b.addSystemCommand(
- &.{ b.zig_exe, "build", "-Dhealed", "-Dn=1", "start" },
- );
- cmd.setName("zig build -Dhealed -Dn=1 start");
- cmd.expectExitCode(0);
- cmd.step.dependOn(&heal_step.step);
- const stderr = cmd.captureStdErr();
- const verify = CheckStep.create(b, exercises, stderr, false);
- verify.step.dependOn(&cmd.step);
- case_step.dependOn(&verify.step);
- step.dependOn(case_step);
- }
- {
- // Test that `zig build -Dn=1` prints the hint.
- const case_step = createCase(b, "case-5");
- const cmd = b.addSystemCommand(&.{ b.zig_exe, "build", "-Dn=1" });
- cmd.setName("zig build -Dn=1");
- cmd.expectExitCode(1);
- expectStdErrMatch(cmd, exercises[0].hint);
- cmd.step.dependOn(&heal_step.step);
- case_step.dependOn(&cmd.step);
- step.dependOn(case_step);
- }
- // Don't add the cleanup step, since it may delete work_path while a test
- // case is running.
- //const cleanup = b.addRemoveDirTree(work_path);
- //step.dependOn(&cleanup.step);
- return step;
- }
- fn createCase(b: *Build, name: []const u8) *Step {
- const case_step = b.allocator.create(Step) catch @panic("OOM");
- case_step.* = Step.init(.{
- .id = .custom,
- .name = name,
- .owner = b,
- });
- return case_step;
- }
- /// Checks the output of `zig build` or `zig build -Dn=1 start`.
- const CheckStep = struct {
- step: Step,
- exercises: []const Exercise,
- stderr: FileSource,
- has_logo: bool,
- pub fn create(
- owner: *Build,
- exercises: []const Exercise,
- stderr: FileSource,
- has_logo: bool,
- ) *CheckStep {
- const self = owner.allocator.create(CheckStep) catch @panic("OOM");
- self.* = .{
- .step = Step.init(.{
- .id = .custom,
- .name = "check",
- .owner = owner,
- .makeFn = make,
- }),
- .exercises = exercises,
- .stderr = stderr,
- .has_logo = has_logo,
- };
- return self;
- }
- fn make(step: *Step, _: *std.Progress.Node) !void {
- const b = step.owner;
- const self = @fieldParentPtr(CheckStep, "step", step);
- const exercises = self.exercises;
- const stderr_file = try fs.cwd().openFile(
- self.stderr.getPath(b),
- .{ .mode = .read_only },
- );
- defer stderr_file.close();
- const stderr = stderr_file.reader();
- for (exercises) |ex| {
- if (ex.number() == 1 and self.has_logo) {
- // Skip the logo.
- var buf: [80]u8 = undefined;
- var lineno: usize = 0;
- while (lineno < 8) : (lineno += 1) {
- _ = try readLine(stderr, &buf);
- }
- }
- try check_output(step, ex, stderr);
- }
- }
- fn check_output(step: *Step, exercise: Exercise, reader: Reader) !void {
- const b = step.owner;
- var buf: [1024]u8 = undefined;
- if (exercise.skip) {
- {
- const actual = try readLine(reader, &buf) orelse "EOF";
- const expect = b.fmt("Skipping {s}", .{exercise.main_file});
- try check(step, exercise, expect, actual);
- }
- {
- const actual = try readLine(reader, &buf) orelse "EOF";
- try check(step, exercise, "", actual);
- }
- return;
- }
- {
- const actual = try readLine(reader, &buf) orelse "EOF";
- const expect = b.fmt("Compiling {s}...", .{exercise.main_file});
- try check(step, exercise, expect, actual);
- }
- {
- const actual = try readLine(reader, &buf) orelse "EOF";
- const expect = b.fmt("Checking {s}...", .{exercise.main_file});
- try check(step, exercise, expect, actual);
- }
- {
- const actual = try readLine(reader, &buf) orelse "EOF";
- const expect = "PASSED:";
- try check(step, exercise, expect, actual);
- }
- // Skip the exercise output.
- const nlines = 1 + mem.count(u8, exercise.output, "\n") + 1;
- var lineno: usize = 0;
- while (lineno < nlines) : (lineno += 1) {
- _ = try readLine(reader, &buf) orelse @panic("EOF");
- }
- }
- fn check(
- step: *Step,
- exercise: Exercise,
- expect: []const u8,
- actual: []const u8,
- ) !void {
- if (!mem.eql(u8, expect, actual)) {
- return step.fail("{s}: expected to see \"{s}\", found \"{s}\"", .{
- exercise.main_file,
- expect,
- actual,
- });
- }
- }
- fn readLine(reader: fs.File.Reader, buf: []u8) !?[]const u8 {
- if (try reader.readUntilDelimiterOrEof(buf, '\n')) |line| {
- return mem.trimRight(u8, line, " \r\n");
- }
- return null;
- }
- };
- /// Fails with a custom error message.
- const FailStep = struct {
- step: Step,
- error_msg: []const u8,
- pub fn create(owner: *Build, error_msg: []const u8) *FailStep {
- const self = owner.allocator.create(FailStep) catch @panic("OOM");
- self.* = .{
- .step = Step.init(.{
- .id = .custom,
- .name = "fail",
- .owner = owner,
- .makeFn = make,
- }),
- .error_msg = error_msg,
- };
- return self;
- }
- fn make(step: *Step, _: *std.Progress.Node) !void {
- const b = step.owner;
- const self = @fieldParentPtr(FailStep, "step", step);
- try step.result_error_msgs.append(b.allocator, self.error_msg);
- return error.MakeFailed;
- }
- };
- /// A variant of `std.Build.Step.fail` that does not return an error so that it
- /// can be used in the configuration phase. It returns a FailStep, so that the
- /// error will be cleanly handled by the build runner.
- fn fail(step: *Step, comptime format: []const u8, args: anytype) *Step {
- const b = step.owner;
- const fail_step = FailStep.create(b, b.fmt(format, args));
- step.dependOn(&fail_step.step);
- return step;
- }
- /// Heals the exercises.
- const HealStep = struct {
- step: Step,
- exercises: []const Exercise,
- work_path: []const u8,
- pub fn create(owner: *Build, exercises: []const Exercise, work_path: []const u8) *HealStep {
- const self = owner.allocator.create(HealStep) catch @panic("OOM");
- self.* = .{
- .step = Step.init(.{
- .id = .custom,
- .name = "heal",
- .owner = owner,
- .makeFn = make,
- }),
- .exercises = exercises,
- .work_path = work_path,
- };
- return self;
- }
- fn make(step: *Step, _: *std.Progress.Node) !void {
- const b = step.owner;
- const self = @fieldParentPtr(HealStep, "step", step);
- return heal(b.allocator, self.exercises, self.work_path);
- }
- };
- /// Heals all the exercises.
- fn heal(allocator: Allocator, exercises: []const Exercise, work_path: []const u8) !void {
- const join = fs.path.join;
- const exercises_path = "exercises";
- const patches_path = "patches/patches";
- for (exercises) |ex| {
- const name = ex.name();
- // Use the POSIX patch variant.
- const file = try join(allocator, &.{ exercises_path, ex.main_file });
- const patch = b: {
- const patch_name = try fmt.allocPrint(allocator, "{s}.patch", .{name});
- break :b try join(allocator, &.{ patches_path, patch_name });
- };
- const output = try join(allocator, &.{ work_path, ex.main_file });
- const argv = &.{ "patch", "-i", patch, "-o", output, "-s", file };
- var child = std.process.Child.init(argv, allocator);
- _ = try child.spawnAndWait();
- }
- }
- //
- // Missing functions from std.Build.RunStep
- //
- /// Adds a check for stderr match. Does not add any other checks.
- pub fn expectStdErrMatch(self: *RunStep, bytes: []const u8) void {
- const new_check: RunStep.StdIo.Check = .{
- .expect_stderr_match = self.step.owner.dupe(bytes),
- };
- self.addCheck(new_check);
- }
- /// Adds a check for stdout match as well as a check for exit code 0, if
- /// there is not already an expected termination check.
- pub fn expectStdOutMatch(self: *RunStep, bytes: []const u8) void {
- const new_check: RunStep.StdIo.Check = .{
- .expect_stdout_match = self.step.owner.dupe(bytes),
- };
- self.addCheck(new_check);
- if (!self.hasTermCheck()) {
- self.expectExitCode(0);
- }
- }
|