Files
clice/tests/unit/command/toolchain_tests.cpp

125 lines
3.4 KiB
C++

#include "test/test.h"
#include "command/argument_parser.h"
#include "command/command.h"
#include "command/toolchain.h"
#include "compile/compilation.h"
#include "support/logging.h"
#include "llvm/Support/Allocator.h"
#include "llvm/Support/StringSaver.h"
namespace clice::testing {
namespace {
using namespace std::string_view_literals;
TEST_SUITE(Toolchain) {
void expect_family(llvm::StringRef name, toolchain::CompilerFamily family) {
ASSERT_EQ(toolchain::driver_family(name), family);
};
TEST_CASE(Family) {
using enum toolchain::CompilerFamily;
expect_family("gcc", GCC);
expect_family("g++", GCC);
expect_family("x86_64-linux-gnu-g++-14", GCC);
expect_family("arm-none-eabi-gcc", GCC);
expect_family("clang", Clang);
expect_family("clang++", Clang);
expect_family("clang.exe", Clang);
expect_family("clang++.exe", Clang);
expect_family("clang-20", Clang);
expect_family("clang-20.exe", Clang);
expect_family("clang-cl", ClangCL);
expect_family("clang-cl-20", ClangCL);
expect_family("clang-cl-20.exe", ClangCL);
expect_family("cl.exe", MSVC);
expect_family("zig", Zig);
expect_family("zig.exe", Zig);
};
TEST_CASE(GCC, {.skip = !(CIEnvironment && (Windows || Linux))}) {
auto file = fs::createTemporaryFile("clice", "cpp");
if(!file) {
LOG_ERROR_RET(void(), "{}", file.error());
}
llvm::BumpPtrAllocator a;
llvm::StringSaver s(a);
auto arguments = toolchain::query_toolchain({
.arguments =
{"g++", "-std=c++23", "-resource-dir", resource_dir().data(), "-xc++", file->c_str()},
.callback = [&](const char* str) { return s.save(str).data(); }
});
ASSERT_TRUE(arguments.size() > 2);
ASSERT_EQ(arguments[1], "-cc1"sv);
CompilationParams params;
params.arguments = arguments;
params.add_remapped_file(file->c_str(), R"(
#include <print>
int main() {
std::println("Hello world!");
return 0;
}
)");
auto unit = compile(params);
ASSERT_TRUE(unit.completed());
ASSERT_TRUE(unit.diagnostics().empty());
};
TEST_CASE(MSVC, {.skip = !CIEnvironment}) {
// TODO: add MSVC toolchain test when CI provides toolchain.
}
TEST_CASE(Clang, {.skip = !CIEnvironment}) {
auto file = fs::createTemporaryFile("clice", "cpp");
if(!file) {
LOG_ERROR_RET(void(), "{}", file.error());
}
llvm::BumpPtrAllocator a;
llvm::StringSaver s(a);
auto arguments = toolchain::query_toolchain({
.arguments = {"clang++",
"-std=c++23", "-resource-dir",
resource_dir().data(),
"-xc++", file->c_str()},
.callback = [&](const char* str) { return s.save(str).data(); }
});
ASSERT_TRUE(arguments.size() > 2);
ASSERT_EQ(arguments[1], "-cc1"sv);
CompilationParams params;
params.arguments = arguments;
params.add_remapped_file(file->c_str(), R"(
#include <print>
int main() {
std::println("Hello world!");
return 0;
}
)");
auto unit = compile(params);
ASSERT_TRUE(unit.completed());
ASSERT_TRUE(unit.diagnostics().empty());
};
TEST_CASE(Zig, {.skip = !CIEnvironment}) {
// TODO: add Zig toolchain test when available in CI.
}
}; // TEST_SUITE(Toolchain)
} // namespace
} // namespace clice::testing