const std = @import("std"); pub fn main() anyerror!void { var gpa = std.heap.GeneralPurposeAllocator(.{}){}; defer if (gpa.deinit() == .leak) @panic("found memory leaks"); const allocator = gpa.allocator(); var it = try std.process.argsWithAllocator(allocator); defer it.deinit(); _ = it.next() orelse unreachable; // skip binary name const child_exe_path = it.next() orelse unreachable; var tmp = std.testing.tmpDir(.{}); defer tmp.cleanup(); try tmp.dir.setAsCwd(); defer tmp.parent_dir.setAsCwd() catch {}; var buf = try std.ArrayList(u8).initCapacity(allocator, 128); defer buf.deinit(); try buf.appendSlice("@echo off\n"); try buf.append('"'); try buf.appendSlice(child_exe_path); try buf.append('"'); const preamble_len = buf.items.len; try buf.appendSlice(" %*"); try tmp.dir.writeFile(.{ .sub_path = "args1.bat", .data = buf.items }); buf.shrinkRetainingCapacity(preamble_len); try buf.appendSlice(" %1 %2 %3 %4 %5 %6 %7 %8 %9"); try tmp.dir.writeFile(.{ .sub_path = "args2.bat", .data = buf.items }); buf.shrinkRetainingCapacity(preamble_len); try buf.appendSlice(" \"%~1\" \"%~2\" \"%~3\" \"%~4\" \"%~5\" \"%~6\" \"%~7\" \"%~8\" \"%~9\""); try tmp.dir.writeFile(.{ .sub_path = "args3.bat", .data = buf.items }); buf.shrinkRetainingCapacity(preamble_len); // Test cases are from https://github.com/rust-lang/rust/blob/master/tests/ui/std/windows-bat-args.rs try testExecError(error.InvalidBatchScriptArg, allocator, &.{"\x00"}); try testExecError(error.InvalidBatchScriptArg, allocator, &.{"\n"}); try testExecError(error.InvalidBatchScriptArg, allocator, &.{"\r"}); try testExec(allocator, &.{ "a", "b" }, null); try testExec(allocator, &.{ "c is for cat", "d is for dog" }, null); try testExec(allocator, &.{ "\"", " \"" }, null); try testExec(allocator, &.{ "\\", "\\" }, null); try testExec(allocator, &.{">file.txt"}, null); try testExec(allocator, &.{"whoami.exe"}, null); try testExec(allocator, &.{"&a.exe"}, null); try testExec(allocator, &.{"&echo hello "}, null); try testExec(allocator, &.{ "&echo hello", "&whoami", ">file.txt" }, null); try testExec(allocator, &.{"!TMP!"}, null); try testExec(allocator, &.{"key=value"}, null); try testExec(allocator, &.{"\"key=value\""}, null); try testExec(allocator, &.{"key = value"}, null); try testExec(allocator, &.{"key=[\"value\"]"}, null); try testExec(allocator, &.{ "", "a=b" }, null); try testExec(allocator, &.{"key=\"foo bar\""}, null); try testExec(allocator, &.{"key=[\"my_value]"}, null); try testExec(allocator, &.{"key=[\"my_value\",\"other-value\"]"}, null); try testExec(allocator, &.{"key\\=value"}, null); try testExec(allocator, &.{"key=\"&whoami\""}, null); try testExec(allocator, &.{"key=\"value\"=5"}, null); try testExec(allocator, &.{"key=[\">file.txt\"]"}, null); try testExec(allocator, &.{"%hello"}, null); try testExec(allocator, &.{"%PATH%"}, null); try testExec(allocator, &.{"%%cd:~,%"}, null); try testExec(allocator, &.{"%PATH%PATH%"}, null); try testExec(allocator, &.{"\">file.txt"}, null); try testExec(allocator, &.{"abc\"&echo hello"}, null); try testExec(allocator, &.{"123\">file.txt"}, null); try testExec(allocator, &.{"\"&echo hello&whoami.exe"}, null); try testExec(allocator, &.{ "\"hello^\"world\"", "hello &echo oh no >file.txt" }, null); try testExec(allocator, &.{"&whoami.exe"}, null); var env = env: { var env = try std.process.getEnvMap(allocator); errdefer env.deinit(); // No escaping try env.put("FOO", "123"); // Some possible escaping of %FOO% that could be expanded // when escaping cmd.exe meta characters with ^ try env.put("FOO^", "123"); // only escaping % try env.put("^F^O^O^", "123"); // escaping every char break :env env; }; defer env.deinit(); try testExec(allocator, &.{"%FOO%"}, &env); // Ensure that none of the `>file.txt`s have caused file.txt to be created try std.testing.expectError(error.FileNotFound, tmp.dir.access("file.txt", .{})); } fn testExecError(err: anyerror, allocator: std.mem.Allocator, args: []const []const u8) !void { return std.testing.expectError(err, testExec(allocator, args, null)); } fn testExec(allocator: std.mem.Allocator, args: []const []const u8, env: ?*std.process.EnvMap) !void { try testExecBat(allocator, "args1.bat", args, env); try testExecBat(allocator, "args2.bat", args, env); try testExecBat(allocator, "args3.bat", args, env); } fn testExecBat(allocator: std.mem.Allocator, bat: []const u8, args: []const []const u8, env: ?*std.process.EnvMap) !void { var argv = try std.ArrayList([]const u8).initCapacity(allocator, 1 + args.len); defer argv.deinit(); argv.appendAssumeCapacity(bat); argv.appendSliceAssumeCapacity(args); const can_have_trailing_empty_args = std.mem.eql(u8, bat, "args3.bat"); const result = try std.process.Child.run(.{ .allocator = allocator, .env_map = env, .argv = argv.items, }); defer allocator.free(result.stdout); defer allocator.free(result.stderr); try std.testing.expectEqualStrings("", result.stderr); var it = std.mem.splitScalar(u8, result.stdout, '\x00'); var i: usize = 0; while (it.next()) |actual_arg| { if (i >= args.len and can_have_trailing_empty_args) { try std.testing.expectEqualStrings("", actual_arg); continue; } const expected_arg = args[i]; try std.testing.expectEqualStrings(expected_arg, actual_arg); i += 1; } }