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
|
//===- unittests/InstallAPI/FileList.cpp - File List Tests ---------------===//
//
// 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 "clang/InstallAPI/FileList.h"
#include "clang/InstallAPI/HeaderFile.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Testing/Support/Error.h"
#include "gtest/gtest.h"
using namespace llvm;
using namespace clang::installapi;
namespace FileListTests {
static inline void testValidFileList(std::string Input, HeaderSeq &Expected) {
auto InputBuf = MemoryBuffer::getMemBuffer(Input);
HeaderSeq Headers;
llvm::Error Err = FileListReader::loadHeaders(std::move(InputBuf), Headers);
ASSERT_THAT_ERROR(std::move(Err), Succeeded());
EXPECT_EQ(Expected.size(), Headers.size());
EXPECT_EQ(Headers, Expected);
}
TEST(FileList, Version3) {
static const char Input[] = R"({
"version" : "3",
"headers" : [
{
"type" : "public",
"path" : "/tmp/dst/usr/include/foo.h",
"language" : "objective-c"
},
{
"type" : "private",
"path" : "/tmp/dst/usr/local/include/bar.h",
"language" : "objective-c++"
},
{
"type" : "project",
"path" : "/tmp/src/baz.h"
}
]
})";
HeaderSeq Expected = {
{"/tmp/dst/usr/include/foo.h", HeaderType::Public, "foo.h",
clang::Language::ObjC},
{"/tmp/dst/usr/local/include/bar.h", HeaderType::Private, "bar.h",
clang::Language::ObjCXX},
{"/tmp/src/baz.h", HeaderType::Project, "", std::nullopt}};
testValidFileList(Input, Expected);
}
TEST(FileList, Version1) {
static const char Input[] = R"({
"version" : "1",
"headers" : [
{
"type" : "public",
"path" : "/usr/include/foo.h"
},
{
"type" : "private",
"path" : "/usr/local/include/bar.h"
}
]
})";
HeaderSeq Expected = {
{"/usr/include/foo.h", HeaderType::Public, "foo.h", std::nullopt},
{"/usr/local/include/bar.h", HeaderType::Private, "bar.h", std::nullopt},
};
testValidFileList(Input, Expected);
}
TEST(FileList, Version2) {
static const auto Input = R"({
"version" : "2",
"headers" : [
{
"type" : "public",
"path" : "/usr/include/foo.h"
},
{
"type" : "project",
"path" : "src/bar.h"
}
]
})";
HeaderSeq Expected = {
{"/usr/include/foo.h", HeaderType::Public, "foo.h", std::nullopt},
{"src/bar.h", HeaderType::Project, "", std::nullopt},
};
testValidFileList(Input, Expected);
}
TEST(FileList, MissingVersion) {
static const char Input[] = R"({
"headers" : [
{
"type" : "public",
"path" : "/usr/include/foo.h"
},
{
"type" : "private",
"path" : "/usr/local/include/bar.h"
}
]
})";
auto InputBuf = MemoryBuffer::getMemBuffer(Input);
HeaderSeq Headers;
llvm::Error Err = FileListReader::loadHeaders(std::move(InputBuf), Headers);
EXPECT_THAT_ERROR(
std::move(Err),
FailedWithMessage(
"invalid input format: required field 'version' not specified\n"));
}
TEST(FileList, InvalidTypes) {
static const char Input[] = R"({
"version" : "1",
"headers" : [
{
"type" : "project",
"path" : "/usr/include/foo.h"
}
]
})";
auto InputBuf = MemoryBuffer::getMemBuffer(Input);
HeaderSeq Headers;
llvm::Error Err = FileListReader::loadHeaders(std::move(InputBuf), Headers);
EXPECT_THAT_ERROR(
std::move(Err),
FailedWithMessage("invalid input format: unsupported header type\n"));
}
} // namespace FileListTests
|