mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This removes a bunch of manual filesystem helpers and complexity that are directly provided by the new library. It also moves all of the install paths detection to use `std::filesystem::path` instead of the LLVM path library. The goal is to consolidate all our logic onto a single stack, and the standard one seems the best for that purpose. This does give up some of the optimizations of this code to avoid memory allocation, but in practice that likely isn't a critical issue. And with the new filesystem library we can likely do more to avoid that by using directory-object-relative filesystem access. However, that will have to wait for moving more parts of the toolchain over to use this set of filesystem abstractions. There is a related TODO left in the manifest handling code.
293 lines
11 KiB
C++
293 lines
11 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "toolchain/install/busybox_info.h"
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <cstdlib>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <optional>
|
|
#include <system_error>
|
|
|
|
#include "common/check.h"
|
|
#include "common/filesystem.h"
|
|
#include "llvm/ADT/ScopeExit.h"
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
namespace Carbon {
|
|
namespace {
|
|
|
|
using ::testing::Eq;
|
|
|
|
class BusyboxInfoTest : public ::testing::Test {
|
|
public:
|
|
explicit BusyboxInfoTest()
|
|
: dir_(std::move(*Filesystem::MakeTmpDir())), path_(dir_.abs_path()) {
|
|
// Most tests need the running binary for `MakeBusyboxFile`.
|
|
static int static_for_main_addr;
|
|
running_binary_ = llvm::sys::fs::getMainExecutable("busybox_info_test",
|
|
&static_for_main_addr);
|
|
}
|
|
|
|
// Creates a synthetic install tree to test a batch of interactions.
|
|
// Optionally accepts a symlink target for the busybox in the install tree.
|
|
// Returns the input prefix for easy use.
|
|
auto MakeInstallTree(std::filesystem::path prefix,
|
|
std::optional<std::filesystem::path> busybox_target = {})
|
|
-> std::filesystem::path {
|
|
Filesystem::Dir prefix_dir = *dir_.CreateDirectories(prefix);
|
|
Filesystem::Dir lib_carbon = *prefix_dir.CreateDirectories("lib/carbon");
|
|
if (busybox_target) {
|
|
lib_carbon.Symlink("carbon-busybox", busybox_target->native()).Check();
|
|
} else {
|
|
lib_carbon.Symlink("carbon-busybox", running_binary_).Check();
|
|
}
|
|
Filesystem::Dir llvm_bin = *lib_carbon.CreateDirectories("llvm/bin");
|
|
llvm_bin.Symlink("clang++", "clang").Check();
|
|
llvm_bin.Symlink("clang", "../../carbon-busybox").Check();
|
|
Filesystem::Dir bin = *prefix_dir.OpenDir("bin", Filesystem::CreateNew);
|
|
bin.Symlink("carbon", "../lib/carbon/carbon-busybox").Check();
|
|
return path_ / prefix;
|
|
}
|
|
|
|
// The path to the running binary, `busybox_info_test`. This is provided
|
|
// because `GetExecutablePath` can fall back to it.
|
|
std::string running_binary_;
|
|
|
|
Filesystem::RemovingDir dir_;
|
|
std::filesystem::path path_;
|
|
};
|
|
|
|
TEST_F(BusyboxInfoTest, Direct) {
|
|
dir_.Symlink("carbon-busybox", running_binary_).Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon-busybox").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, SymlinkInCurrentDirectory) {
|
|
dir_.Symlink("carbon-busybox", running_binary_).Check();
|
|
dir_.Symlink("carbon", "carbon-busybox").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, SymlinkInCurrentDirectoryWithDot) {
|
|
dir_.Symlink("carbon-busybox", running_binary_).Check();
|
|
dir_.Symlink("carbon", "./carbon-busybox").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "./carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, ExtraSymlink) {
|
|
dir_.Symlink("carbon-busybox", running_binary_).Check();
|
|
dir_.Symlink("c", "carbon-busybox").Check();
|
|
dir_.Symlink("carbon", "c").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, OriginalSymlinkNameFormsMode) {
|
|
dir_.Symlink("carbon-busybox", running_binary_).Check();
|
|
dir_.Symlink("carbon", "carbon-busybox").Check();
|
|
dir_.Symlink("clang", "carbon").Check();
|
|
dir_.Symlink("clang++", "clang").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "clang").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq("clang"));
|
|
|
|
info = GetBusyboxInfo((path_ / "clang++").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq("clang++"));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, BusyboxIsSymlinkToNowhere) {
|
|
dir_.Symlink("carbon-busybox", "nonexistent").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon-busybox").c_str());
|
|
ASSERT_FALSE(info.ok());
|
|
EXPECT_THAT(info.error().message(),
|
|
Eq(llvm::formatv("expected carbon-busybox symlink at `{0}`",
|
|
running_binary_)
|
|
.str()));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, BusyboxIsWrongFile) {
|
|
// This has the correct name, but it doesn't map back to the running binary
|
|
// and so is ignored.
|
|
dir_.WriteFileFromString("carbon-busybox", "stub").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon-busybox").c_str());
|
|
ASSERT_FALSE(info.ok());
|
|
EXPECT_THAT(info.error().message(),
|
|
Eq(llvm::formatv("expected carbon-busybox symlink at `{0}`",
|
|
running_binary_)
|
|
.str()));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, RelativeSymlink) {
|
|
Filesystem::Dir d1 = *dir_.OpenDir("dir1", Filesystem::CreateNew);
|
|
d1.Symlink("carbon-busybox", running_binary_).Check();
|
|
Filesystem::Dir d2 = *dir_.OpenDir("dir2", Filesystem::CreateNew);
|
|
d2.Symlink("carbon", "../dir1/carbon-busybox").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "dir2/carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "dir2/../dir1/carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, AbsoluteSymlink) {
|
|
Filesystem::Dir d1 = *dir_.OpenDir("dir1", Filesystem::CreateNew);
|
|
d1.Symlink("carbon-busybox", running_binary_).Check();
|
|
Filesystem::Dir d2 = *dir_.OpenDir("dir2", Filesystem::CreateNew);
|
|
ASSERT_TRUE(path_.is_absolute());
|
|
d2.Symlink("carbon", (path_ / "dir1/carbon-busybox")).Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "dir2/carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "dir1/carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, NotBusyboxFile) {
|
|
dir_.WriteFileFromString("file", "stub").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "file").c_str());
|
|
EXPECT_FALSE(info.ok());
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, NotBusyboxSymlink) {
|
|
dir_.WriteFileFromString("file", "stub").Check();
|
|
dir_.Symlink("carbon", "file").Check();
|
|
|
|
auto info = GetBusyboxInfo((path_ / "carbon").c_str());
|
|
EXPECT_FALSE(info.ok());
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, LayerSymlinksInstallTree) {
|
|
dir_.Symlink("actual-busybox", running_binary_).Check();
|
|
|
|
// Create a facsimile of the install prefix with even the busybox as a
|
|
// symlink. Also include potential relative sibling symlinks like `clang++` to
|
|
// `clang`.
|
|
auto prefix = MakeInstallTree("test_prefix", (path_ / "actual-busybox"));
|
|
|
|
auto info = GetBusyboxInfo((prefix / "bin/carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(prefix / "bin/../lib/carbon/carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
|
|
info = GetBusyboxInfo((prefix / "lib/carbon/llvm/bin/clang").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path,
|
|
Eq(prefix / "lib/carbon/llvm/bin/../../carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq("clang"));
|
|
|
|
info = GetBusyboxInfo((prefix / "lib/carbon/llvm/bin/clang++").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path,
|
|
Eq(prefix / "lib/carbon/llvm/bin/../../carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq("clang++"));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, StopSearchAtFirstSymlinkWithRelativeBusybox) {
|
|
// Some install of Carbon under `opt`.
|
|
std::filesystem::path opt_prefix = MakeInstallTree("opt");
|
|
|
|
// A second install, but with its symlinks pointing into the `opt` tree rather
|
|
// than at its busybox.
|
|
{
|
|
Filesystem::Dir lib_carbon = *dir_.CreateDirectories("lib/carbon");
|
|
lib_carbon.Symlink("carbon-busybox", running_binary_).Check();
|
|
Filesystem::Dir bin = *dir_.OpenDir("bin", Filesystem::CreateNew);
|
|
bin.Symlink("carbon", "../opt/bin/carbon").Check();
|
|
Filesystem::Dir llvm_bin = *lib_carbon.CreateDirectories("llvm/bin");
|
|
llvm_bin.Symlink("clang", (opt_prefix / "lib/carbon/llvm/bin/clang"))
|
|
.Check();
|
|
}
|
|
|
|
// Starting from the second install uses the relative busybox rather than
|
|
// traversing the symlink further.
|
|
auto info = GetBusyboxInfo((path_ / "bin/carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "bin/../lib/carbon/carbon-busybox"));
|
|
info = GetBusyboxInfo((path_ / "lib/carbon/llvm/bin/clang").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path,
|
|
Eq(path_ / "lib/carbon/llvm/bin/../../carbon-busybox"));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, RejectSymlinkInUnrelatedInstall) {
|
|
// Add two installs of Carbon nested inside each other in a realistic
|
|
// scenario: `/usr` and `/usr/local`.
|
|
MakeInstallTree("usr");
|
|
std::filesystem::path usr_local = MakeInstallTree("usr/local");
|
|
|
|
// Now add a stray symlink directly in `.../usr/local` to the local install.
|
|
//
|
|
// This has the interesting property that both of these "work" and find the
|
|
// same busybox but probably wanted to find different ones:
|
|
// - `.../usr/local/../lib/carbon/carbon-busybox`
|
|
// - `.../usr/bin/../lib/carbon/carbon-busybox`
|
|
Filesystem::Dir usr_local_dir = *dir_.OpenDir("usr/local");
|
|
usr_local_dir.Symlink("carbon", "bin/carbon").Check();
|
|
|
|
// Check that the busybox doesn't use the relative busybox in this case, and
|
|
// walks the symlink to find the correct installation.
|
|
auto info = GetBusyboxInfo((usr_local / "carbon").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path,
|
|
Eq(usr_local / "bin/../lib/carbon/carbon-busybox"));
|
|
|
|
// Ensure this works even with intervening `.` directory components.
|
|
usr_local_dir.Symlink("carbon2", "bin/././carbon").Check();
|
|
|
|
// Check that the busybox doesn't use the relative busybox in this case, and
|
|
// walks the symlink to find the correct installation.
|
|
info = GetBusyboxInfo((usr_local / "carbon2").c_str());
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path,
|
|
Eq(usr_local / "bin/../lib/carbon/carbon-busybox"));
|
|
}
|
|
|
|
TEST_F(BusyboxInfoTest, EnvBinaryPathOverride) {
|
|
// The test should not have this environment variable set.
|
|
ASSERT_THAT(getenv(Argv0OverrideEnv), Eq(nullptr));
|
|
|
|
// Set the environment to our actual busybox.
|
|
dir_.Symlink("carbon-busybox", running_binary_).Check();
|
|
|
|
setenv(Argv0OverrideEnv, (path_ / "carbon-busybox").c_str(), /*overwrite=*/1);
|
|
auto info = GetBusyboxInfo("/some/nonexistent/path");
|
|
if (getenv(Argv0OverrideEnv)) {
|
|
unsetenv(Argv0OverrideEnv);
|
|
ADD_FAILURE() << "GetBusyboxInfo should unset Argv0OverrideEnv";
|
|
}
|
|
|
|
ASSERT_TRUE(info.ok()) << info.error();
|
|
EXPECT_THAT(info->bin_path, Eq(path_ / "carbon-busybox"));
|
|
EXPECT_THAT(info->mode, Eq(std::nullopt));
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon
|