[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 15:23:27 +08:00
|
|
|
//===-- ReproducerTest.cpp ------------------------------------------------===//
|
2018-11-28 06:11:02 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-11-28 06:11:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
2020-08-22 15:36:32 +08:00
|
|
|
#include "lldb/Utility/FileSpec.h"
|
|
|
|
#include "lldb/Utility/Reproducer.h"
|
|
|
|
#include "lldb/Utility/ReproducerProvider.h"
|
2020-07-11 03:45:38 +08:00
|
|
|
#include "llvm/ADT/ScopeExit.h"
|
2018-11-28 06:11:02 +08:00
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Testing/Support/Error.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace lldb_private;
|
|
|
|
using namespace lldb_private::repro;
|
|
|
|
|
|
|
|
class DummyProvider : public repro::Provider<DummyProvider> {
|
|
|
|
public:
|
2019-06-13 06:17:38 +08:00
|
|
|
struct Info {
|
|
|
|
static const char *name;
|
|
|
|
static const char *file;
|
|
|
|
};
|
2018-11-28 06:11:02 +08:00
|
|
|
|
2019-01-18 15:17:05 +08:00
|
|
|
DummyProvider(const FileSpec &directory) : Provider(directory) {}
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
static char ID;
|
|
|
|
};
|
|
|
|
|
2020-07-11 03:45:38 +08:00
|
|
|
class YamlMultiProvider
|
|
|
|
: public MultiProvider<YamlRecorder, YamlMultiProvider> {
|
|
|
|
public:
|
|
|
|
struct Info {
|
|
|
|
static const char *name;
|
|
|
|
static const char *file;
|
|
|
|
};
|
|
|
|
|
|
|
|
YamlMultiProvider(const FileSpec &directory) : MultiProvider(directory) {}
|
|
|
|
|
|
|
|
static char ID;
|
|
|
|
};
|
|
|
|
|
2019-06-13 06:17:38 +08:00
|
|
|
const char *DummyProvider::Info::name = "dummy";
|
|
|
|
const char *DummyProvider::Info::file = "dummy.yaml";
|
2020-07-11 03:45:38 +08:00
|
|
|
const char *YamlMultiProvider::Info::name = "mutli";
|
|
|
|
const char *YamlMultiProvider::Info::file = "mutli.yaml";
|
|
|
|
char DummyProvider::ID = 0;
|
|
|
|
char YamlMultiProvider::ID = 0;
|
2019-06-13 06:17:38 +08:00
|
|
|
|
2018-12-04 01:28:29 +08:00
|
|
|
class DummyReproducer : public Reproducer {
|
|
|
|
public:
|
|
|
|
DummyReproducer() : Reproducer(){};
|
|
|
|
|
|
|
|
using Reproducer::SetCapture;
|
|
|
|
using Reproducer::SetReplay;
|
|
|
|
};
|
|
|
|
|
2020-07-11 03:45:38 +08:00
|
|
|
struct YamlData {
|
|
|
|
YamlData() : i(-1) {}
|
|
|
|
YamlData(int i) : i(i) {}
|
|
|
|
int i;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline bool operator==(const YamlData &LHS, const YamlData &RHS) {
|
|
|
|
return LHS.i == RHS.i;
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVM_YAML_IS_DOCUMENT_LIST_VECTOR(YamlData)
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace yaml {
|
|
|
|
template <> struct MappingTraits<YamlData> {
|
|
|
|
static void mapping(IO &io, YamlData &Y) { io.mapRequired("i", Y.i); };
|
|
|
|
};
|
|
|
|
} // namespace yaml
|
|
|
|
} // namespace llvm
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
TEST(ReproducerTest, SetCapture) {
|
2018-12-04 01:28:29 +08:00
|
|
|
DummyReproducer reproducer;
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
// Initially both generator and loader are unset.
|
|
|
|
EXPECT_EQ(nullptr, reproducer.GetGenerator());
|
|
|
|
EXPECT_EQ(nullptr, reproducer.GetLoader());
|
|
|
|
|
|
|
|
// Enable capture and check that means we have a generator.
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Succeeded());
|
2018-11-28 06:11:02 +08:00
|
|
|
EXPECT_NE(nullptr, reproducer.GetGenerator());
|
2019-09-28 04:35:55 +08:00
|
|
|
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
|
2019-09-28 03:12:18 +08:00
|
|
|
reproducer.GetGenerator()->GetRoot());
|
2019-09-28 04:35:55 +08:00
|
|
|
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
|
2019-09-28 03:12:18 +08:00
|
|
|
reproducer.GetReproducerPath());
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
// Ensure that we cannot enable replay.
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetReplay(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Failed());
|
2018-11-28 06:11:02 +08:00
|
|
|
EXPECT_EQ(nullptr, reproducer.GetLoader());
|
|
|
|
|
|
|
|
// Ensure we can disable the generator again.
|
|
|
|
EXPECT_THAT_ERROR(reproducer.SetCapture(llvm::None), Succeeded());
|
|
|
|
EXPECT_EQ(nullptr, reproducer.GetGenerator());
|
|
|
|
EXPECT_EQ(nullptr, reproducer.GetLoader());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ReproducerTest, SetReplay) {
|
2018-12-04 01:28:29 +08:00
|
|
|
DummyReproducer reproducer;
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
// Initially both generator and loader are unset.
|
|
|
|
EXPECT_EQ(nullptr, reproducer.GetGenerator());
|
|
|
|
EXPECT_EQ(nullptr, reproducer.GetLoader());
|
|
|
|
|
|
|
|
// Expected to fail because we can't load the index.
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetReplay(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Failed());
|
2018-11-28 06:11:02 +08:00
|
|
|
// However the loader should still be set, which we check here.
|
|
|
|
EXPECT_NE(nullptr, reproducer.GetLoader());
|
|
|
|
|
|
|
|
// Make sure the bogus path is correctly set.
|
2019-09-28 04:35:55 +08:00
|
|
|
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
|
2019-09-28 03:12:18 +08:00
|
|
|
reproducer.GetLoader()->GetRoot());
|
2019-09-28 04:35:55 +08:00
|
|
|
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
|
2019-09-28 03:12:18 +08:00
|
|
|
reproducer.GetReproducerPath());
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
// Ensure that we cannot enable replay.
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Failed());
|
2018-11-28 06:11:02 +08:00
|
|
|
EXPECT_EQ(nullptr, reproducer.GetGenerator());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(GeneratorTest, Create) {
|
2018-12-04 01:28:29 +08:00
|
|
|
DummyReproducer reproducer;
|
2018-11-28 06:11:02 +08:00
|
|
|
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Succeeded());
|
2018-11-28 06:11:02 +08:00
|
|
|
auto &generator = *reproducer.GetGenerator();
|
|
|
|
|
|
|
|
auto *provider = generator.Create<DummyProvider>();
|
|
|
|
EXPECT_NE(nullptr, provider);
|
2019-09-28 04:35:55 +08:00
|
|
|
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
|
2019-09-28 03:12:18 +08:00
|
|
|
provider->GetRoot());
|
2018-11-28 06:11:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(GeneratorTest, Get) {
|
2018-12-04 01:28:29 +08:00
|
|
|
DummyReproducer reproducer;
|
2018-11-28 06:11:02 +08:00
|
|
|
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Succeeded());
|
2018-11-28 06:11:02 +08:00
|
|
|
auto &generator = *reproducer.GetGenerator();
|
|
|
|
|
|
|
|
auto *provider = generator.Create<DummyProvider>();
|
|
|
|
EXPECT_NE(nullptr, provider);
|
|
|
|
|
|
|
|
auto *provider_alt = generator.Get<DummyProvider>();
|
|
|
|
EXPECT_EQ(provider, provider_alt);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(GeneratorTest, GetOrCreate) {
|
2018-12-04 01:28:29 +08:00
|
|
|
DummyReproducer reproducer;
|
2018-11-28 06:11:02 +08:00
|
|
|
|
2019-09-28 03:12:18 +08:00
|
|
|
EXPECT_THAT_ERROR(
|
2019-09-28 04:35:55 +08:00
|
|
|
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
|
2019-09-28 03:12:18 +08:00
|
|
|
Succeeded());
|
2018-11-28 06:11:02 +08:00
|
|
|
auto &generator = *reproducer.GetGenerator();
|
|
|
|
|
|
|
|
auto &provider = generator.GetOrCreate<DummyProvider>();
|
2019-09-28 04:35:55 +08:00
|
|
|
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
|
2019-09-28 03:12:18 +08:00
|
|
|
provider.GetRoot());
|
2018-11-28 06:11:02 +08:00
|
|
|
|
|
|
|
auto &provider_alt = generator.GetOrCreate<DummyProvider>();
|
|
|
|
EXPECT_EQ(&provider, &provider_alt);
|
|
|
|
}
|
2020-07-11 03:45:38 +08:00
|
|
|
|
|
|
|
TEST(GeneratorTest, YamlMultiProvider) {
|
|
|
|
SmallString<128> root;
|
|
|
|
std::error_code ec = llvm::sys::fs::createUniqueDirectory("reproducer", root);
|
|
|
|
ASSERT_FALSE(static_cast<bool>(ec));
|
|
|
|
|
|
|
|
auto cleanup = llvm::make_scope_exit(
|
|
|
|
[&] { EXPECT_FALSE(llvm::sys::fs::remove_directories(root.str())); });
|
|
|
|
|
|
|
|
YamlData data0(0);
|
|
|
|
YamlData data1(1);
|
|
|
|
YamlData data2(2);
|
|
|
|
YamlData data3(3);
|
|
|
|
|
|
|
|
{
|
|
|
|
DummyReproducer reproducer;
|
|
|
|
EXPECT_THAT_ERROR(reproducer.SetCapture(FileSpec(root.str())), Succeeded());
|
|
|
|
|
|
|
|
auto &generator = *reproducer.GetGenerator();
|
|
|
|
auto *provider = generator.Create<YamlMultiProvider>();
|
|
|
|
ASSERT_NE(nullptr, provider);
|
|
|
|
|
|
|
|
auto *recorder = provider->GetNewRecorder();
|
|
|
|
ASSERT_NE(nullptr, recorder);
|
|
|
|
recorder->Record(data0);
|
|
|
|
recorder->Record(data1);
|
|
|
|
|
|
|
|
recorder = provider->GetNewRecorder();
|
|
|
|
ASSERT_NE(nullptr, recorder);
|
|
|
|
recorder->Record(data2);
|
|
|
|
recorder->Record(data3);
|
|
|
|
|
|
|
|
generator.Keep();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
DummyReproducer reproducer;
|
|
|
|
EXPECT_THAT_ERROR(reproducer.SetReplay(FileSpec(root.str())), Succeeded());
|
|
|
|
|
|
|
|
auto &loader = *reproducer.GetLoader();
|
|
|
|
std::unique_ptr<repro::MultiLoader<YamlMultiProvider>> multi_loader =
|
|
|
|
repro::MultiLoader<YamlMultiProvider>::Create(&loader);
|
|
|
|
|
|
|
|
// Read the first file.
|
|
|
|
{
|
|
|
|
llvm::Optional<std::string> file = multi_loader->GetNextFile();
|
|
|
|
EXPECT_TRUE(static_cast<bool>(file));
|
|
|
|
|
|
|
|
auto buffer = llvm::MemoryBuffer::getFile(*file);
|
|
|
|
EXPECT_TRUE(static_cast<bool>(buffer));
|
|
|
|
|
|
|
|
yaml::Input yin((*buffer)->getBuffer());
|
|
|
|
std::vector<YamlData> data;
|
|
|
|
yin >> data;
|
|
|
|
|
|
|
|
ASSERT_EQ(data.size(), 2U);
|
|
|
|
EXPECT_THAT(data, testing::ElementsAre(data0, data1));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the second file.
|
|
|
|
{
|
|
|
|
llvm::Optional<std::string> file = multi_loader->GetNextFile();
|
|
|
|
EXPECT_TRUE(static_cast<bool>(file));
|
|
|
|
|
|
|
|
auto buffer = llvm::MemoryBuffer::getFile(*file);
|
|
|
|
EXPECT_TRUE(static_cast<bool>(buffer));
|
|
|
|
|
|
|
|
yaml::Input yin((*buffer)->getBuffer());
|
|
|
|
std::vector<YamlData> data;
|
|
|
|
yin >> data;
|
|
|
|
|
|
|
|
ASSERT_EQ(data.size(), 2U);
|
|
|
|
EXPECT_THAT(data, testing::ElementsAre(data2, data3));
|
|
|
|
}
|
|
|
|
|
|
|
|
// There is no third file.
|
|
|
|
llvm::Optional<std::string> file = multi_loader->GetNextFile();
|
|
|
|
EXPECT_FALSE(static_cast<bool>(file));
|
|
|
|
}
|
|
|
|
}
|