2018-09-17 14:08:56 -07:00
|
|
|
const std = @import("std");
|
2019-02-08 15:18:47 -08:00
|
|
|
const testing = std.testing;
|
2019-05-26 10:17:34 -07:00
|
|
|
const process = std.process;
|
|
|
|
const fs = std.fs;
|
|
|
|
const ChildProcess = std.ChildProcess;
|
2018-09-17 14:08:56 -07:00
|
|
|
|
|
|
|
var a: *std.mem.Allocator = undefined;
|
|
|
|
|
|
|
|
pub fn main() !void {
|
2020-01-29 22:26:54 -08:00
|
|
|
var arena = std.heap.ArenaAllocator.init(std.testing.allocator);
|
2018-09-17 14:08:56 -07:00
|
|
|
defer arena.deinit();
|
|
|
|
|
2019-05-26 10:17:34 -07:00
|
|
|
var arg_it = process.args();
|
2018-09-17 14:08:56 -07:00
|
|
|
|
|
|
|
// skip my own exe name
|
|
|
|
_ = arg_it.skip();
|
|
|
|
|
|
|
|
a = &arena.allocator;
|
|
|
|
|
|
|
|
const zig_exe_rel = try (arg_it.next(a) orelse {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("Expected first argument to be path to zig compiler\n", .{});
|
2018-09-17 14:08:56 -07:00
|
|
|
return error.InvalidArgs;
|
|
|
|
});
|
|
|
|
const cache_root = try (arg_it.next(a) orelse {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("Expected second argument to be cache root directory path\n", .{});
|
2018-09-17 14:08:56 -07:00
|
|
|
return error.InvalidArgs;
|
|
|
|
});
|
2019-11-29 20:04:19 -08:00
|
|
|
const zig_exe = try fs.path.resolve(a, &[_][]const u8{zig_exe_rel});
|
2018-09-17 14:08:56 -07:00
|
|
|
|
2019-11-29 20:04:19 -08:00
|
|
|
const dir_path = try fs.path.join(a, &[_][]const u8{ cache_root, "clitest" });
|
2018-11-13 05:08:37 -08:00
|
|
|
const TestFn = fn ([]const u8, []const u8) anyerror!void;
|
2019-06-09 16:24:24 -07:00
|
|
|
const test_fns = [_]TestFn{
|
2018-09-24 08:12:21 -07:00
|
|
|
testZigInitLib,
|
|
|
|
testZigInitExe,
|
|
|
|
testGodboltApi,
|
2019-09-10 21:25:10 -07:00
|
|
|
testMissingOutputPath,
|
2020-06-20 20:49:45 -07:00
|
|
|
testZigFmt,
|
2018-09-24 08:12:21 -07:00
|
|
|
};
|
|
|
|
for (test_fns) |testFn| {
|
2020-03-18 13:09:06 -07:00
|
|
|
try fs.cwd().deleteTree(dir_path);
|
2020-03-03 12:58:14 -08:00
|
|
|
try fs.cwd().makeDir(dir_path);
|
2018-09-24 08:12:21 -07:00
|
|
|
try testFn(zig_exe, dir_path);
|
|
|
|
}
|
2018-09-17 14:08:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn unwrapArg(arg: UnwrapArgError![]u8) UnwrapArgError![]u8 {
|
|
|
|
return arg catch |err| {
|
2019-12-08 19:53:51 -08:00
|
|
|
warn("Unable to parse command line: {}\n", .{err});
|
2018-09-17 14:08:56 -07:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn printCmd(cwd: []const u8, argv: []const []const u8) void {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("cd {} && ", .{cwd});
|
2018-09-17 14:08:56 -07:00
|
|
|
for (argv) |arg| {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("{} ", .{arg});
|
2018-09-17 14:08:56 -07:00
|
|
|
}
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("\n", .{});
|
2018-09-17 14:08:56 -07:00
|
|
|
}
|
|
|
|
|
2020-09-26 12:42:07 -07:00
|
|
|
fn exec(cwd: []const u8, expect_0: bool, argv: []const []const u8) !ChildProcess.ExecResult {
|
2018-09-17 14:08:56 -07:00
|
|
|
const max_output_size = 100 * 1024;
|
2020-03-30 11:23:22 -07:00
|
|
|
const result = ChildProcess.exec(.{
|
|
|
|
.allocator = a,
|
|
|
|
.argv = argv,
|
|
|
|
.cwd = cwd,
|
|
|
|
.max_output_bytes = max_output_size,
|
|
|
|
}) catch |err| {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("The following command failed:\n", .{});
|
2018-09-17 14:08:56 -07:00
|
|
|
printCmd(cwd, argv);
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
switch (result.term) {
|
2019-05-26 10:17:34 -07:00
|
|
|
.Exited => |code| {
|
2020-09-26 12:42:07 -07:00
|
|
|
if ((code != 0) == expect_0) {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("The following command exited with error code {}:\n", .{code});
|
2018-09-17 14:08:56 -07:00
|
|
|
printCmd(cwd, argv);
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("stderr:\n{}\n", .{result.stderr});
|
2018-09-17 14:08:56 -07:00
|
|
|
return error.CommandFailed;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
else => {
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("The following command terminated unexpectedly:\n", .{});
|
2018-09-17 14:08:56 -07:00
|
|
|
printCmd(cwd, argv);
|
2019-12-08 19:53:51 -08:00
|
|
|
std.debug.warn("stderr:\n{}\n", .{result.stderr});
|
2018-09-17 14:08:56 -07:00
|
|
|
return error.CommandFailed;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-09-24 08:12:21 -07:00
|
|
|
fn testZigInitLib(zig_exe: []const u8, dir_path: []const u8) !void {
|
2020-09-26 12:42:07 -07:00
|
|
|
_ = try exec(dir_path, true, &[_][]const u8{ zig_exe, "init-lib" });
|
|
|
|
const test_result = try exec(dir_path, true, &[_][]const u8{ zig_exe, "build", "test" });
|
2019-11-24 16:24:52 -08:00
|
|
|
testing.expect(std.mem.endsWith(u8, test_result.stderr, "All 1 tests passed.\n"));
|
2018-09-17 14:08:56 -07:00
|
|
|
}
|
|
|
|
|
2018-09-24 08:12:21 -07:00
|
|
|
fn testZigInitExe(zig_exe: []const u8, dir_path: []const u8) !void {
|
2020-09-26 12:42:07 -07:00
|
|
|
_ = try exec(dir_path, true, &[_][]const u8{ zig_exe, "init-exe" });
|
|
|
|
const run_result = try exec(dir_path, true, &[_][]const u8{ zig_exe, "build", "run" });
|
2020-09-25 18:21:21 -07:00
|
|
|
testing.expect(std.mem.eql(u8, run_result.stderr, "info: All your codebase are belong to us.\n"));
|
2018-09-17 14:08:56 -07:00
|
|
|
}
|
2018-09-24 08:12:21 -07:00
|
|
|
|
2018-11-13 05:08:37 -08:00
|
|
|
fn testGodboltApi(zig_exe: []const u8, dir_path: []const u8) anyerror!void {
|
2020-02-27 10:32:35 -08:00
|
|
|
if (std.Target.current.os.tag != .linux or std.Target.current.cpu.arch != .x86_64) return;
|
2018-09-24 08:12:21 -07:00
|
|
|
|
2019-11-29 20:04:19 -08:00
|
|
|
const example_zig_path = try fs.path.join(a, &[_][]const u8{ dir_path, "example.zig" });
|
|
|
|
const example_s_path = try fs.path.join(a, &[_][]const u8{ dir_path, "example.s" });
|
2018-09-24 08:12:21 -07:00
|
|
|
|
2020-03-30 11:23:22 -07:00
|
|
|
try fs.cwd().writeFile(example_zig_path,
|
2018-09-24 08:12:21 -07:00
|
|
|
\\// Type your code here, or load an example.
|
|
|
|
\\export fn square(num: i32) i32 {
|
|
|
|
\\ return num * num;
|
|
|
|
\\}
|
2018-09-24 08:14:39 -07:00
|
|
|
\\extern fn zig_panic() noreturn;
|
|
|
|
\\pub inline fn panic(msg: []const u8, error_return_trace: ?*@import("builtin").StackTrace) noreturn {
|
|
|
|
\\ zig_panic();
|
|
|
|
\\}
|
2018-09-24 08:12:21 -07:00
|
|
|
);
|
|
|
|
|
2020-09-26 01:42:54 -07:00
|
|
|
var args = std.ArrayList([]const u8).init(a);
|
|
|
|
try args.appendSlice(&[_][]const u8{
|
2019-05-26 10:17:34 -07:00
|
|
|
zig_exe, "build-obj",
|
|
|
|
"--cache-dir", dir_path,
|
|
|
|
"--name", "example",
|
2020-09-26 01:42:54 -07:00
|
|
|
"-fno-emit-bin", "-fno-emit-h",
|
|
|
|
"--strip", "-OReleaseFast",
|
|
|
|
example_zig_path,
|
|
|
|
});
|
|
|
|
|
|
|
|
const emit_asm_arg = try std.fmt.allocPrint(a, "-femit-asm={s}", .{example_s_path});
|
|
|
|
try args.append(emit_asm_arg);
|
|
|
|
|
2020-09-26 12:42:07 -07:00
|
|
|
_ = try exec(dir_path, true, args.items);
|
2018-09-24 08:12:21 -07:00
|
|
|
|
2020-03-30 11:23:22 -07:00
|
|
|
const out_asm = try std.fs.cwd().readFileAlloc(a, example_s_path, std.math.maxInt(usize));
|
2019-02-08 15:18:47 -08:00
|
|
|
testing.expect(std.mem.indexOf(u8, out_asm, "square:") != null);
|
2019-02-09 15:57:39 -08:00
|
|
|
testing.expect(std.mem.indexOf(u8, out_asm, "mov\teax, edi") != null);
|
|
|
|
testing.expect(std.mem.indexOf(u8, out_asm, "imul\teax, edi") != null);
|
2018-09-24 08:12:21 -07:00
|
|
|
}
|
2019-09-10 21:25:10 -07:00
|
|
|
|
|
|
|
fn testMissingOutputPath(zig_exe: []const u8, dir_path: []const u8) !void {
|
2020-09-26 12:42:07 -07:00
|
|
|
_ = try exec(dir_path, true, &[_][]const u8{ zig_exe, "init-exe" });
|
|
|
|
const output_path = try fs.path.join(a, &[_][]const u8{ "does", "not", "exist", "foo.exe" });
|
|
|
|
const output_arg = try std.fmt.allocPrint(a, "-femit-bin={s}", .{output_path});
|
2019-11-29 20:04:19 -08:00
|
|
|
const source_path = try fs.path.join(a, &[_][]const u8{ "src", "main.zig" });
|
2020-09-26 12:42:07 -07:00
|
|
|
const result = try exec(dir_path, false, &[_][]const u8{ zig_exe, "build-exe", source_path, output_arg });
|
2020-09-29 22:31:08 -07:00
|
|
|
const s = std.fs.path.sep_str;
|
|
|
|
const expected: []const u8 = "error: unable to open output directory 'does" ++ s ++ "not" ++ s ++ "exist': FileNotFound\n";
|
|
|
|
testing.expectEqualStrings(expected, result.stderr);
|
2019-09-10 21:25:10 -07:00
|
|
|
}
|
2020-06-20 20:49:45 -07:00
|
|
|
|
|
|
|
fn testZigFmt(zig_exe: []const u8, dir_path: []const u8) !void {
|
2020-09-26 12:42:07 -07:00
|
|
|
_ = try exec(dir_path, true, &[_][]const u8{ zig_exe, "init-exe" });
|
2020-06-20 20:49:45 -07:00
|
|
|
|
2020-06-20 22:20:23 -07:00
|
|
|
const unformatted_code = " // no reason for indent";
|
2020-06-20 20:49:45 -07:00
|
|
|
|
|
|
|
const fmt1_zig_path = try fs.path.join(a, &[_][]const u8{ dir_path, "fmt1.zig" });
|
|
|
|
try fs.cwd().writeFile(fmt1_zig_path, unformatted_code);
|
|
|
|
|
2020-09-26 12:42:07 -07:00
|
|
|
const run_result1 = try exec(dir_path, true, &[_][]const u8{ zig_exe, "fmt", fmt1_zig_path });
|
2020-06-20 20:49:45 -07:00
|
|
|
// stderr should be file path + \n
|
2020-10-14 07:20:20 -07:00
|
|
|
testing.expect(std.mem.startsWith(u8, run_result1.stdout, fmt1_zig_path));
|
|
|
|
testing.expect(run_result1.stdout.len == fmt1_zig_path.len + 1 and run_result1.stdout[run_result1.stdout.len - 1] == '\n');
|
2020-06-20 20:49:45 -07:00
|
|
|
|
|
|
|
const fmt2_zig_path = try fs.path.join(a, &[_][]const u8{ dir_path, "fmt2.zig" });
|
|
|
|
try fs.cwd().writeFile(fmt2_zig_path, unformatted_code);
|
|
|
|
|
2020-09-26 12:42:07 -07:00
|
|
|
const run_result2 = try exec(dir_path, true, &[_][]const u8{ zig_exe, "fmt", dir_path });
|
2020-06-20 20:49:45 -07:00
|
|
|
// running it on the dir, only the new file should be changed
|
2020-10-14 07:20:20 -07:00
|
|
|
testing.expect(std.mem.startsWith(u8, run_result2.stdout, fmt2_zig_path));
|
|
|
|
testing.expect(run_result2.stdout.len == fmt2_zig_path.len + 1 and run_result2.stdout[run_result2.stdout.len - 1] == '\n');
|
2020-06-20 22:21:23 -07:00
|
|
|
|
2020-09-26 12:42:07 -07:00
|
|
|
const run_result3 = try exec(dir_path, true, &[_][]const u8{ zig_exe, "fmt", dir_path });
|
2020-06-20 22:21:23 -07:00
|
|
|
// both files have been formatted, nothing should change now
|
2020-10-14 07:20:20 -07:00
|
|
|
testing.expect(run_result3.stdout.len == 0);
|
2020-06-20 20:49:45 -07:00
|
|
|
}
|