aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.posix/test.spawn.cc
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-28 20:40:25 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-28 20:40:25 +0100
commitc54ff48ac3abb62a40eb1a438da8e3e7ef139797 (patch)
tree4a78c556c7cbc6d3d7e364ca0c52c57ac0f5094b /nihil.posix/test.spawn.cc
parenta2d7181700ac64b8e7a4472ec26dfa253b38f188 (diff)
downloadnihil-c54ff48ac3abb62a40eb1a438da8e3e7ef139797.tar.gz
nihil-c54ff48ac3abb62a40eb1a438da8e3e7ef139797.tar.bz2
posix: add tempfile()
Diffstat (limited to 'nihil.posix/test.spawn.cc')
-rw-r--r--nihil.posix/test.spawn.cc117
1 files changed, 117 insertions, 0 deletions
diff --git a/nihil.posix/test.spawn.cc b/nihil.posix/test.spawn.cc
new file mode 100644
index 0000000..da321ff
--- /dev/null
+++ b/nihil.posix/test.spawn.cc
@@ -0,0 +1,117 @@
+/*
+ * This source code is released into the public domain.
+ */
+
+#include <catch2/catch_test_macros.hpp>
+
+import nihil.posix;
+
+TEST_CASE("spawn: system", "[spawn]")
+{
+ using namespace nihil;
+
+ auto exec = shell("x=1; echo $x");
+ REQUIRE(exec);
+
+ auto output = std::string();
+ auto capture = make_capture(stdout_fileno, output);
+ REQUIRE(capture);
+
+ auto proc = spawn(*exec, *capture);
+ REQUIRE(proc);
+
+ auto status = std::move(*proc).wait();
+ REQUIRE(status);
+
+ REQUIRE(status->okay());
+ REQUIRE(output == "1\n");
+}
+
+TEST_CASE("spawn: execv", "[spawn]") {
+ using namespace nihil;
+
+ auto args = argv({"sh", "-c", "x=1; echo $x"});
+ auto exec = execv("/bin/sh", std::move(args));
+ REQUIRE(exec);
+
+ auto output = std::string();
+ auto capture = make_capture(stdout_fileno, output);
+ REQUIRE(capture);
+
+ auto proc = spawn(*exec, *capture);
+ REQUIRE(proc);
+
+ auto status = std::move(*proc).wait();
+ REQUIRE(status);
+
+ REQUIRE(status->okay());
+ REQUIRE(output == "1\n");
+}
+
+TEST_CASE("spawn: execvp", "[spawn]") {
+ using namespace nihil;
+
+ auto args = argv({"sh", "-c", "x=1; echo $x"});
+ auto exec = execvp("sh", std::move(args));
+ REQUIRE(exec);
+
+ auto output = std::string();
+ auto capture = make_capture(stdout_fileno, output);
+ REQUIRE(capture);
+
+ auto proc = spawn(*exec, *capture);
+ REQUIRE(proc);
+
+ auto status = std::move(*proc).wait();
+ REQUIRE(status);
+
+ REQUIRE(status->okay());
+ REQUIRE(output == "1\n");
+}
+
+TEST_CASE("spawn: execl", "[spawn]") {
+ using namespace nihil;
+
+ auto exec = execl("/bin/sh", "sh", "-c", "x=1; echo $x");
+ REQUIRE(exec);
+
+ auto output = std::string();
+ auto capture = make_capture(stdout_fileno, output);
+ REQUIRE(capture);
+
+ auto proc = spawn(*exec, *capture);
+ REQUIRE(proc);
+
+ auto status = std::move(*proc).wait();
+ REQUIRE(status);
+
+ REQUIRE(status->okay());
+ REQUIRE(output == "1\n");
+}
+
+TEST_CASE("spawn: execlp", "[spawn]") {
+ using namespace nihil;
+
+ auto exec = execlp("sh", "sh", "-c", "x=1; echo $x");
+ REQUIRE(exec);
+
+ auto output = std::string();
+ auto capture = make_capture(stdout_fileno, output);
+ REQUIRE(capture);
+
+ auto proc = spawn(*exec, *capture);
+ REQUIRE(proc);
+
+ auto status = std::move(*proc).wait();
+ REQUIRE(status);
+
+ REQUIRE(status->okay());
+ REQUIRE(output == "1\n");
+}
+
+TEST_CASE("spawn: execlp failure", "[spawn]") {
+ using namespace nihil;
+
+ auto exec = execlp("nihil_no_such_executable", "x");
+ REQUIRE(!exec);
+}