1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
//===-- ReproducerTest.cpp ------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "llvm/ADT/ScopeExit.h"
#include "llvm/Support/Error.h"
#include "llvm/Testing/Support/Error.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/Reproducer.h"
using namespace llvm;
using namespace lldb_private;
using namespace lldb_private::repro;
class DummyProvider : public repro::Provider<DummyProvider> {
public:
struct Info {
static const char *name;
static const char *file;
};
DummyProvider(const FileSpec &directory) : Provider(directory) {}
static char ID;
};
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;
};
const char *DummyProvider::Info::name = "dummy";
const char *DummyProvider::Info::file = "dummy.yaml";
const char *YamlMultiProvider::Info::name = "mutli";
const char *YamlMultiProvider::Info::file = "mutli.yaml";
char DummyProvider::ID = 0;
char YamlMultiProvider::ID = 0;
class DummyReproducer : public Reproducer {
public:
DummyReproducer() : Reproducer(){};
using Reproducer::SetCapture;
using Reproducer::SetReplay;
};
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
TEST(ReproducerTest, SetCapture) {
DummyReproducer reproducer;
// 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.
EXPECT_THAT_ERROR(
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
Succeeded());
EXPECT_NE(nullptr, reproducer.GetGenerator());
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
reproducer.GetGenerator()->GetRoot());
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
reproducer.GetReproducerPath());
// Ensure that we cannot enable replay.
EXPECT_THAT_ERROR(
reproducer.SetReplay(FileSpec("//bogus/path", FileSpec::Style::posix)),
Failed());
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) {
DummyReproducer reproducer;
// 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.
EXPECT_THAT_ERROR(
reproducer.SetReplay(FileSpec("//bogus/path", FileSpec::Style::posix)),
Failed());
// However the loader should still be set, which we check here.
EXPECT_NE(nullptr, reproducer.GetLoader());
// Make sure the bogus path is correctly set.
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
reproducer.GetLoader()->GetRoot());
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
reproducer.GetReproducerPath());
// Ensure that we cannot enable replay.
EXPECT_THAT_ERROR(
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
Failed());
EXPECT_EQ(nullptr, reproducer.GetGenerator());
}
TEST(GeneratorTest, Create) {
DummyReproducer reproducer;
EXPECT_THAT_ERROR(
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
Succeeded());
auto &generator = *reproducer.GetGenerator();
auto *provider = generator.Create<DummyProvider>();
EXPECT_NE(nullptr, provider);
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
provider->GetRoot());
}
TEST(GeneratorTest, Get) {
DummyReproducer reproducer;
EXPECT_THAT_ERROR(
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
Succeeded());
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) {
DummyReproducer reproducer;
EXPECT_THAT_ERROR(
reproducer.SetCapture(FileSpec("//bogus/path", FileSpec::Style::posix)),
Succeeded());
auto &generator = *reproducer.GetGenerator();
auto &provider = generator.GetOrCreate<DummyProvider>();
EXPECT_EQ(FileSpec("//bogus/path", FileSpec::Style::posix),
provider.GetRoot());
auto &provider_alt = generator.GetOrCreate<DummyProvider>();
EXPECT_EQ(&provider, &provider_alt);
}
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));
}
}
|