| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- // 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
- #ifndef CARBON_TESTING_FILE_TEST_TEST_FILE_H_
- #define CARBON_TESTING_FILE_TEST_TEST_FILE_H_
- #include <gmock/gmock.h>
- #include <chrono>
- #include <string>
- #include "llvm/ADT/SmallString.h"
- #include "llvm/ADT/SmallVector.h"
- #include "testing/file_test/file_test_base.h"
- #include "testing/file_test/line.h"
- namespace Carbon::Testing {
- // A small timer for getting elapsed durations.
- class Timer {
- public:
- explicit Timer() : start_(std::chrono::steady_clock::now()) {}
- auto elapsed_ms() -> std::chrono::milliseconds {
- return std::chrono::duration_cast<std::chrono::milliseconds>(
- std::chrono::steady_clock::now() - start_);
- }
- private:
- std::chrono::steady_clock::time_point start_;
- };
- // Encapsulates test context generated by processing and running.
- //
- // Note this should remain internal to `FileTestBase`, not exposed to individual
- // tests.
- struct TestFile {
- // Represents a split within the test file.
- struct Split {
- friend auto PrintTo(const Split& f, std::ostream* os) -> void {
- // Print content escaped.
- llvm::raw_os_ostream os_wrap(*os);
- os_wrap << "Split(" << f.filename << ", \"" << FormatEscaped(f.content)
- << "\")";
- }
- std::string filename;
- std::string content;
- };
- // The input test file content. Other parts may reference this.
- std::string input_content;
- // Lines which don't contain CHECKs, and thus need to be retained by
- // autoupdate. Their file and line numbers are attached.
- //
- // If there are splits, then the splitting line is in the respective file.
- // For N splits, the 0th file is the parts of the input file which are not
- // in any split, plus one file per split file.
- llvm::SmallVector<FileTestLine> non_check_lines;
- // Whether there are splits.
- bool has_splits = false;
- // Arguments for the test, generated from ARGS.
- llvm::SmallVector<std::string> test_args;
- // Extra arguments for the test, generated from EXTRA-ARGS. Unlike ARGS,
- // setting EXTRA-ARGS does not suppress the default arguments.
- llvm::SmallVector<std::string> extra_args;
- // Files in the test, generated by content and splits.
- llvm::SmallVector<Split> file_splits;
- // Files pulled in by `INCLUDE-FILE`. They're combined with `file_splits` for
- // execution.
- llvm::SmallVector<Split> include_file_splits;
- // The location of the autoupdate marker, for autoupdated files.
- std::optional<int> autoupdate_line_number;
- // Whether there should be an AUTOUPDATE-SPLIT.
- bool autoupdate_split = false;
- // Whether to capture stderr and stdout that would head to console,
- // generated from SET-CAPTURE-CONSOLE-OUTPUT.
- bool capture_console_output = false;
- // Whether checks are a subset, generated from SET-CHECK-SUBSET.
- bool check_subset = false;
- // stdout and stderr based on CHECK lines in the file.
- llvm::SmallVector<testing::Matcher<std::string>> expected_stdout;
- llvm::SmallVector<testing::Matcher<std::string>> expected_stderr;
- // stdout and stderr from Run. 16 is arbitrary but a required value.
- llvm::SmallString<16> actual_stdout;
- llvm::SmallString<16> actual_stderr;
- FileTestBase::RunResult run_result = {.success = false};
- // Time spent inside FileTestBase::Run.
- std::chrono::milliseconds run_elapsed_ms = std::chrono::milliseconds(0);
- };
- // Processes the test input, producing test files and expected output.
- auto ProcessTestFile(llvm::StringRef test_name, bool running_autoupdate)
- -> ErrorOr<TestFile>;
- } // namespace Carbon::Testing
- #endif // CARBON_TESTING_FILE_TEST_TEST_FILE_H_
|