2020-06-23 17:21:56 +02:00
|
|
|
//===-- ConfigYAMLTests.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 "Annotations.h"
|
|
|
|
#include "ConfigFragment.h"
|
2020-06-26 01:49:53 +02:00
|
|
|
#include "ConfigTesting.h"
|
2020-06-23 17:21:56 +02:00
|
|
|
#include "Protocol.h"
|
|
|
|
#include "llvm/Support/SMLoc.h"
|
|
|
|
#include "llvm/Support/ScopedPrinter.h"
|
|
|
|
#include "llvm/Support/SourceMgr.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
namespace config {
|
|
|
|
template <typename T> void PrintTo(const Located<T> &V, std::ostream *OS) {
|
|
|
|
*OS << ::testing::PrintToString(*V);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
using ::testing::AllOf;
|
|
|
|
using ::testing::ElementsAre;
|
|
|
|
using ::testing::IsEmpty;
|
|
|
|
|
|
|
|
MATCHER_P(Val, Value, "") {
|
|
|
|
if (*arg == Value)
|
|
|
|
return true;
|
|
|
|
*result_listener << "value is " << *arg;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ParseYAML, SyntacticForms) {
|
|
|
|
CapturedDiags Diags;
|
|
|
|
const char *YAML = R"yaml(
|
|
|
|
If:
|
|
|
|
PathMatch:
|
|
|
|
- 'abc'
|
|
|
|
CompileFlags: { Add: [foo, bar] }
|
|
|
|
---
|
|
|
|
CompileFlags:
|
|
|
|
Add: |
|
|
|
|
b
|
|
|
|
az
|
|
|
|
)yaml";
|
|
|
|
auto Results = Fragment::parseYAML(YAML, "config.yaml", Diags.callback());
|
|
|
|
EXPECT_THAT(Diags.Diagnostics, IsEmpty());
|
|
|
|
ASSERT_EQ(Results.size(), 2u);
|
2020-06-26 01:49:53 +02:00
|
|
|
EXPECT_FALSE(Results.front().If.HasUnrecognizedCondition);
|
|
|
|
EXPECT_THAT(Results.front().If.PathMatch, ElementsAre(Val("abc")));
|
2020-06-23 17:21:56 +02:00
|
|
|
EXPECT_THAT(Results.front().CompileFlags.Add,
|
|
|
|
ElementsAre(Val("foo"), Val("bar")));
|
|
|
|
|
|
|
|
EXPECT_THAT(Results.back().CompileFlags.Add, ElementsAre(Val("b\naz\n")));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ParseYAML, Locations) {
|
|
|
|
CapturedDiags Diags;
|
|
|
|
Annotations YAML(R"yaml(
|
|
|
|
If:
|
|
|
|
PathMatch: [['???bad***regex(((']]
|
|
|
|
)yaml");
|
|
|
|
auto Results =
|
|
|
|
Fragment::parseYAML(YAML.code(), "config.yaml", Diags.callback());
|
|
|
|
EXPECT_THAT(Diags.Diagnostics, IsEmpty());
|
|
|
|
ASSERT_EQ(Results.size(), 1u);
|
|
|
|
ASSERT_NE(Results.front().Source.Manager, nullptr);
|
2020-06-26 01:49:53 +02:00
|
|
|
EXPECT_EQ(toRange(Results.front().If.PathMatch.front().Range,
|
2020-06-23 17:21:56 +02:00
|
|
|
*Results.front().Source.Manager),
|
|
|
|
YAML.range());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ParseYAML, Diagnostics) {
|
|
|
|
CapturedDiags Diags;
|
|
|
|
Annotations YAML(R"yaml(
|
|
|
|
If:
|
|
|
|
[[UnknownCondition]]: "foo"
|
|
|
|
CompileFlags:
|
|
|
|
Add: 'first'
|
|
|
|
---
|
|
|
|
CompileFlags: {^
|
|
|
|
)yaml");
|
|
|
|
auto Results =
|
|
|
|
Fragment::parseYAML(YAML.code(), "config.yaml", Diags.callback());
|
|
|
|
|
|
|
|
ASSERT_THAT(
|
|
|
|
Diags.Diagnostics,
|
2020-06-26 01:49:53 +02:00
|
|
|
ElementsAre(AllOf(DiagMessage("Unknown If key UnknownCondition"),
|
2020-06-23 17:21:56 +02:00
|
|
|
DiagKind(llvm::SourceMgr::DK_Warning),
|
|
|
|
DiagPos(YAML.range().start), DiagRange(YAML.range())),
|
|
|
|
AllOf(DiagMessage("Unexpected token. Expected Key, Flow "
|
|
|
|
"Entry, or Flow Mapping End."),
|
|
|
|
DiagKind(llvm::SourceMgr::DK_Error),
|
|
|
|
DiagPos(YAML.point()), DiagRange(llvm::None))));
|
|
|
|
|
|
|
|
ASSERT_EQ(Results.size(), 2u);
|
|
|
|
EXPECT_THAT(Results.front().CompileFlags.Add, ElementsAre(Val("first")));
|
2020-06-26 01:49:53 +02:00
|
|
|
EXPECT_TRUE(Results.front().If.HasUnrecognizedCondition);
|
2020-06-23 17:21:56 +02:00
|
|
|
EXPECT_THAT(Results.back().CompileFlags.Add, IsEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
} // namespace config
|
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|