mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:20:11 +01:00
I've migrated the toolchain autoupdate scripts here, I just need a little more time to do the explorer side (which I need to check performance, that may require multithreading as we do in the current script). However, this felt substantial enough to share and it means I can handle autoupdate in more of the toolchain, including preparatory work for autoupdate on multi-file tests. Once explorer is done I'll remove the old script.
101 lines
3.0 KiB
C++
101 lines
3.0 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 "testing/file_test/file_test_base.h"
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
namespace Carbon::Testing {
|
|
namespace {
|
|
|
|
using ::testing::AllOf;
|
|
using ::testing::ElementsAre;
|
|
using ::testing::Eq;
|
|
using ::testing::Field;
|
|
using ::testing::Matcher;
|
|
|
|
class FileTestBaseTest : public FileTestBase {
|
|
public:
|
|
using FileTestBase::FileTestBase;
|
|
|
|
static auto HasFilename(std::string filename) -> Matcher<TestFile> {
|
|
return Field("filename", &TestFile::filename, Eq(filename));
|
|
}
|
|
|
|
static auto HasContent(std::string content) -> Matcher<TestFile> {
|
|
return Field("content", &TestFile::content, Eq(content));
|
|
}
|
|
|
|
auto Run(const llvm::SmallVector<llvm::StringRef>& test_args,
|
|
const llvm::SmallVector<TestFile>& test_files,
|
|
llvm::raw_pwrite_stream& stdout, llvm::raw_pwrite_stream& stderr)
|
|
-> ErrorOr<bool> override {
|
|
if (!test_args.empty()) {
|
|
llvm::ListSeparator sep;
|
|
stdout << test_args.size() << " args: ";
|
|
for (const auto& arg : test_args) {
|
|
stdout << sep << "`" << arg << "`";
|
|
}
|
|
stdout << "\n";
|
|
}
|
|
|
|
auto filename = path().filename();
|
|
if (filename == "args.carbon") {
|
|
return true;
|
|
} else if (filename == "example.carbon") {
|
|
int delta_line = 10;
|
|
stdout << "something\n"
|
|
<< "\n"
|
|
<< "example.carbon:" << delta_line + 1 << ": Line delta\n"
|
|
<< "example.carbon:" << delta_line << ": Negative line delta\n"
|
|
<< "+*[]{}\n"
|
|
<< "Foo baz\n";
|
|
return true;
|
|
} else if (filename == "fail_example.carbon") {
|
|
stderr << "Oops\n";
|
|
return false;
|
|
} else if (filename == "two_files.carbon") {
|
|
int i = 0;
|
|
for (const auto& file : test_files) {
|
|
// Prints line numbers to validate per-file.
|
|
stdout << file.filename << ":2: " << ++i << "\n";
|
|
}
|
|
return true;
|
|
} else {
|
|
return ErrorBuilder() << "Unexpected file: " << filename;
|
|
}
|
|
}
|
|
|
|
auto ValidateRun(const llvm::SmallVector<TestFile>& test_files)
|
|
-> void override {
|
|
auto filename = path().filename();
|
|
if (filename == "two_files.carbon") {
|
|
EXPECT_THAT(
|
|
test_files,
|
|
ElementsAre(
|
|
AllOf(HasFilename("a.carbon"),
|
|
HasContent(
|
|
"// CHECK:STDOUT: a.carbon:[[@LINE+1]]: 1\naaa\n\n")),
|
|
AllOf(HasFilename("b.carbon"),
|
|
HasContent(
|
|
"// CHECK:STDOUT: b.carbon:[[@LINE+1]]: 2\nbbb\n"))));
|
|
} else {
|
|
EXPECT_THAT(test_files, ElementsAre(HasFilename(filename)));
|
|
}
|
|
}
|
|
|
|
auto GetDefaultArgs() -> llvm::SmallVector<std::string> override {
|
|
return {"default_args", "%s"};
|
|
}
|
|
};
|
|
|
|
} // namespace
|
|
|
|
CARBON_FILE_TEST_FACTORY(FileTestBaseTest);
|
|
|
|
} // namespace Carbon::Testing
|