2019-03-22 23:46:52 +01:00
|
|
|
//===-- TextStubV1Tests.cpp - TBD V1 File Test ----------------------------===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===-----------------------------------------------------------------------===/
|
|
|
|
|
2020-02-13 21:51:19 +01:00
|
|
|
#include "TextStubHelpers.h"
|
2019-03-22 23:46:52 +01:00
|
|
|
#include "llvm/TextAPI/MachO/InterfaceFile.h"
|
|
|
|
#include "llvm/TextAPI/MachO/TextAPIReader.h"
|
|
|
|
#include "llvm/TextAPI/MachO/TextAPIWriter.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::MachO;
|
|
|
|
|
|
|
|
static ExportedSymbol TBDv1Symbols[] = {
|
|
|
|
{SymbolKind::GlobalSymbol, "$ld$hide$os9.0$_sym1", false, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_sym1", false, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_sym2", false, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_sym3", false, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_sym4", false, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_sym5", false, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_tlv1", false, true},
|
|
|
|
{SymbolKind::GlobalSymbol, "_tlv2", false, true},
|
|
|
|
{SymbolKind::GlobalSymbol, "_tlv3", false, true},
|
|
|
|
{SymbolKind::GlobalSymbol, "_weak1", true, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_weak2", true, false},
|
|
|
|
{SymbolKind::GlobalSymbol, "_weak3", true, false},
|
|
|
|
{SymbolKind::ObjectiveCClass, "class1", false, false},
|
|
|
|
{SymbolKind::ObjectiveCClass, "class2", false, false},
|
|
|
|
{SymbolKind::ObjectiveCClass, "class3", false, false},
|
|
|
|
{SymbolKind::ObjectiveCInstanceVariable, "class1._ivar1", false, false},
|
|
|
|
{SymbolKind::ObjectiveCInstanceVariable, "class1._ivar2", false, false},
|
|
|
|
{SymbolKind::ObjectiveCInstanceVariable, "class1._ivar3", false, false},
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace TBDv1 {
|
|
|
|
|
|
|
|
TEST(TBDv1, ReadFile) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1File1[] =
|
2019-03-22 23:46:52 +01:00
|
|
|
"---\n"
|
|
|
|
"archs: [ armv7, armv7s, armv7k, arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"current-version: 2.3.4\n"
|
|
|
|
"compatibility-version: 1.0\n"
|
|
|
|
"swift-version: 1.1\n"
|
|
|
|
"exports:\n"
|
|
|
|
" - archs: [ armv7, armv7s, armv7k, arm64 ]\n"
|
|
|
|
" allowed-clients: [ clientA ]\n"
|
|
|
|
" re-exports: [ /usr/lib/libfoo.dylib ]\n"
|
|
|
|
" symbols: [ _sym1, _sym2, _sym3, _sym4, $ld$hide$os9.0$_sym1 ]\n"
|
|
|
|
" objc-classes: [ _class1, _class2 ]\n"
|
|
|
|
" objc-ivars: [ _class1._ivar1, _class1._ivar2 ]\n"
|
|
|
|
" weak-def-symbols: [ _weak1, _weak2 ]\n"
|
|
|
|
" thread-local-symbols: [ _tlv1, _tlv2 ]\n"
|
|
|
|
" - archs: [ armv7, armv7s, armv7k ]\n"
|
|
|
|
" symbols: [ _sym5 ]\n"
|
|
|
|
" objc-classes: [ _class3 ]\n"
|
|
|
|
" objc-ivars: [ _class1._ivar3 ]\n"
|
|
|
|
" weak-def-symbols: [ _weak3 ]\n"
|
|
|
|
" thread-local-symbols: [ _tlv3 ]\n"
|
|
|
|
"...\n";
|
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1File1, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-04-05 00:56:50 +02:00
|
|
|
auto Archs = AK_armv7 | AK_armv7s | AK_armv7k | AK_arm64;
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::iOS;
|
|
|
|
TargetList Targets;
|
|
|
|
for (auto &&arch : Archs)
|
|
|
|
Targets.emplace_back(Target(arch, Platform));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(Archs, File->getArchitectures());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(std::string("Test.dylib"), File->getInstallName());
|
|
|
|
EXPECT_EQ(PackedVersion(2, 3, 4), File->getCurrentVersion());
|
|
|
|
EXPECT_EQ(PackedVersion(1, 0, 0), File->getCompatibilityVersion());
|
|
|
|
EXPECT_EQ(2U, File->getSwiftABIVersion());
|
|
|
|
EXPECT_EQ(ObjCConstraintType::None, File->getObjCConstraint());
|
|
|
|
EXPECT_TRUE(File->isTwoLevelNamespace());
|
|
|
|
EXPECT_TRUE(File->isApplicationExtensionSafe());
|
|
|
|
EXPECT_FALSE(File->isInstallAPI());
|
2019-09-20 16:32:34 +02:00
|
|
|
InterfaceFileRef client("clientA", Targets);
|
|
|
|
InterfaceFileRef reexport("/usr/lib/libfoo.dylib", Targets);
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(1U, File->allowableClients().size());
|
|
|
|
EXPECT_EQ(client, File->allowableClients().front());
|
|
|
|
EXPECT_EQ(1U, File->reexportedLibraries().size());
|
|
|
|
EXPECT_EQ(reexport, File->reexportedLibraries().front());
|
|
|
|
|
|
|
|
ExportedSymbolSeq Exports;
|
|
|
|
for (const auto *Sym : File->symbols()) {
|
|
|
|
EXPECT_FALSE(Sym->isWeakReferenced());
|
|
|
|
EXPECT_FALSE(Sym->isUndefined());
|
2020-01-28 20:23:46 +01:00
|
|
|
Exports.emplace_back(
|
|
|
|
ExportedSymbol{Sym->getKind(), std::string(Sym->getName()),
|
|
|
|
Sym->isWeakDefined(), Sym->isThreadLocalValue()});
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
llvm::sort(Exports.begin(), Exports.end());
|
|
|
|
|
|
|
|
EXPECT_EQ(sizeof(TBDv1Symbols) / sizeof(ExportedSymbol), Exports.size());
|
|
|
|
EXPECT_TRUE(
|
|
|
|
std::equal(Exports.begin(), Exports.end(), std::begin(TBDv1Symbols)));
|
2019-09-20 16:32:34 +02:00
|
|
|
|
|
|
|
File->addSymbol(SymbolKind::ObjectiveCClassEHType, "Class1", {Targets[1]});
|
|
|
|
File->addSymbol(SymbolKind::ObjectiveCInstanceVariable, "Class1._ivar1",
|
|
|
|
{Targets[1]});
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, ReadFile2) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1File2[] = "--- !tapi-tbd-v1\n"
|
|
|
|
"archs: [ armv7, armv7s, armv7k, arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1File2, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-04-05 00:56:50 +02:00
|
|
|
auto Archs = AK_armv7 | AK_armv7s | AK_armv7k | AK_arm64;
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::iOS;
|
|
|
|
TargetList Targets;
|
|
|
|
for (auto &&arch : Archs)
|
|
|
|
Targets.emplace_back(Target(arch, Platform));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(Archs, File->getArchitectures());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(std::string("Test.dylib"), File->getInstallName());
|
|
|
|
EXPECT_EQ(PackedVersion(1, 0, 0), File->getCurrentVersion());
|
|
|
|
EXPECT_EQ(PackedVersion(1, 0, 0), File->getCompatibilityVersion());
|
|
|
|
EXPECT_EQ(0U, File->getSwiftABIVersion());
|
|
|
|
EXPECT_EQ(ObjCConstraintType::None, File->getObjCConstraint());
|
|
|
|
EXPECT_TRUE(File->isTwoLevelNamespace());
|
|
|
|
EXPECT_TRUE(File->isApplicationExtensionSafe());
|
|
|
|
EXPECT_FALSE(File->isInstallAPI());
|
|
|
|
EXPECT_EQ(0U, File->allowableClients().size());
|
|
|
|
EXPECT_EQ(0U, File->reexportedLibraries().size());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, WriteFile) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1File3[] =
|
2019-03-22 23:46:52 +01:00
|
|
|
"---\n"
|
|
|
|
"archs: [ i386, x86_64 ]\n"
|
|
|
|
"platform: macosx\n"
|
|
|
|
"install-name: '/usr/lib/libfoo.dylib'\n"
|
|
|
|
"current-version: 1.2.3\n"
|
|
|
|
"compatibility-version: 0\n"
|
|
|
|
"swift-version: 5\n"
|
|
|
|
"objc-constraint: retain_release\n"
|
2019-07-12 06:51:31 +02:00
|
|
|
"exports:\n"
|
2019-03-22 23:46:52 +01:00
|
|
|
" - archs: [ i386 ]\n"
|
|
|
|
" symbols: [ _sym1 ]\n"
|
|
|
|
" weak-def-symbols: [ _sym2 ]\n"
|
|
|
|
" thread-local-symbols: [ _sym3 ]\n"
|
|
|
|
" - archs: [ x86_64 ]\n"
|
|
|
|
" allowed-clients: [ clientA ]\n"
|
|
|
|
" re-exports: [ '/usr/lib/libfoo.dylib' ]\n"
|
|
|
|
" symbols: [ '_OBJC_EHTYPE_$_Class1' ]\n"
|
|
|
|
" objc-classes: [ _Class1 ]\n"
|
|
|
|
" objc-ivars: [ _Class1._ivar1 ]\n"
|
|
|
|
"...\n";
|
|
|
|
|
|
|
|
InterfaceFile File;
|
2019-09-20 16:32:34 +02:00
|
|
|
TargetList Targets;
|
|
|
|
for (auto &&arch : AK_i386 | AK_x86_64)
|
|
|
|
Targets.emplace_back(Target(arch, PlatformKind::macOS));
|
2019-03-22 23:46:52 +01:00
|
|
|
File.setPath("libfoo.dylib");
|
|
|
|
File.setInstallName("/usr/lib/libfoo.dylib");
|
|
|
|
File.setFileType(FileType::TBD_V1);
|
2019-09-20 16:32:34 +02:00
|
|
|
File.addTargets(Targets);
|
2019-03-22 23:46:52 +01:00
|
|
|
File.setCurrentVersion(PackedVersion(1, 2, 3));
|
|
|
|
File.setSwiftABIVersion(5);
|
|
|
|
File.setObjCConstraint(ObjCConstraintType::Retain_Release);
|
2019-09-20 16:32:34 +02:00
|
|
|
File.addAllowableClient("clientA", Targets[1]);
|
|
|
|
File.addReexportedLibrary("/usr/lib/libfoo.dylib", Targets[1]);
|
|
|
|
File.addSymbol(SymbolKind::GlobalSymbol, "_sym1", {Targets[0]});
|
|
|
|
File.addSymbol(SymbolKind::GlobalSymbol, "_sym2", {Targets[0]},
|
2019-03-22 23:46:52 +01:00
|
|
|
SymbolFlags::WeakDefined);
|
2019-09-20 16:32:34 +02:00
|
|
|
File.addSymbol(SymbolKind::GlobalSymbol, "_sym3", {Targets[0]},
|
2019-03-22 23:46:52 +01:00
|
|
|
SymbolFlags::ThreadLocalValue);
|
2019-09-20 16:32:34 +02:00
|
|
|
File.addSymbol(SymbolKind::ObjectiveCClass, "Class1", {Targets[1]});
|
|
|
|
File.addSymbol(SymbolKind::ObjectiveCClassEHType, "Class1", {Targets[1]});
|
2019-03-22 23:46:52 +01:00
|
|
|
File.addSymbol(SymbolKind::ObjectiveCInstanceVariable, "Class1._ivar1",
|
2019-09-20 16:32:34 +02:00
|
|
|
{Targets[1]});
|
2019-03-22 23:46:52 +01:00
|
|
|
|
|
|
|
SmallString<4096> Buffer;
|
|
|
|
raw_svector_ostream OS(Buffer);
|
2020-06-16 04:59:42 +02:00
|
|
|
Error Result = TextAPIWriter::writeToStream(OS, File);
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_FALSE(Result);
|
2020-02-14 23:05:59 +01:00
|
|
|
EXPECT_STREQ(TBDv1File3, Buffer.c_str());
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Platform_macOS) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1PlatformMacOS[] = "---\n"
|
|
|
|
"archs: [ x86_64 ]\n"
|
|
|
|
"platform: macosx\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1PlatformMacOS, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::macOS;
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Platform_iOS) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1PlatformiOS[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1PlatformiOS, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::iOS;
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Platform_watchOS) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1PlatformWatchOS[] = "---\n"
|
|
|
|
"archs: [ armv7k ]\n"
|
|
|
|
"platform: watchos\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1PlatformWatchOS, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::watchOS;
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Platform_tvOS) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1PlatformtvOS[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: tvos\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1PlatformtvOS, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::tvOS;
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Platform_bridgeOS) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1BridgeOS[] = "---\n"
|
|
|
|
"archs: [ armv7k ]\n"
|
|
|
|
"platform: bridgeos\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1BridgeOS, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2019-09-20 16:32:34 +02:00
|
|
|
auto Platform = PlatformKind::bridgeOS;
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
2019-09-20 16:32:34 +02:00
|
|
|
EXPECT_EQ(File->getPlatforms().size(), 1U);
|
|
|
|
EXPECT_EQ(Platform, *File->getPlatforms().begin());
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_1_0) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift1[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 1.0\n"
|
|
|
|
"...\n";
|
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift1, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
|
|
|
EXPECT_EQ(1U, File->getSwiftABIVersion());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_1_1) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift1dot[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 1.1\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift1dot, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
|
|
|
EXPECT_EQ(2U, File->getSwiftABIVersion());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_2_0) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift2[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 2.0\n"
|
|
|
|
"...\n";
|
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift2, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
|
|
|
EXPECT_EQ(3U, File->getSwiftABIVersion());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_3_0) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift3[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 3.0\n"
|
|
|
|
"...\n";
|
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift3, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
|
|
|
EXPECT_EQ(4U, File->getSwiftABIVersion());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_4_0) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift4[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 4.0\n"
|
|
|
|
"...\n";
|
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift4, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_FALSE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
std::string ErrorMessage = toString(Result.takeError());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ("malformed file\nTest.tbd:5:16: error: invalid Swift ABI "
|
|
|
|
"version.\nswift-version: 4.0\n ^~~\n",
|
2020-06-16 04:59:42 +02:00
|
|
|
ErrorMessage);
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_5) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift5[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 5\n"
|
|
|
|
"...\n";
|
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift5, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
|
|
|
EXPECT_EQ(5U, File->getSwiftABIVersion());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, Swift_99) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1Swift99[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"swift-version: 99\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1Swift99, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
TBDFile File = std::move(Result.get());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ(FileType::TBD_V1, File->getFileType());
|
|
|
|
EXPECT_EQ(99U, File->getSwiftABIVersion());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, UnknownArchitecture) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1FileUnknownArch[] = "---\n"
|
|
|
|
"archs: [ foo ]\n"
|
|
|
|
"platform: macosx\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1FileUnknownArch, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_TRUE(!!Result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, UnknownPlatform) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1FileUnknownPlatform[] = "---\n"
|
|
|
|
"archs: [ i386 ]\n"
|
|
|
|
"platform: newOS\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1FileUnknownPlatform, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_FALSE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
std::string ErrorMessage = toString(Result.takeError());
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_EQ("malformed file\nTest.tbd:3:11: error: unknown platform\nplatform: "
|
|
|
|
"newOS\n ^~~~~\n",
|
2020-06-16 04:59:42 +02:00
|
|
|
ErrorMessage);
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, MalformedFile1) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1FileMalformed1[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"foobar: \"Unsupported key\"\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1FileMalformed1, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_FALSE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
std::string ErrorMessage = toString(Result.takeError());
|
2019-03-22 23:46:52 +01:00
|
|
|
ASSERT_EQ("malformed file\nTest.tbd:2:1: error: missing required key "
|
|
|
|
"'platform'\narchs: [ arm64 ]\n^\n",
|
2020-06-16 04:59:42 +02:00
|
|
|
ErrorMessage);
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TBDv1, MalformedFile2) {
|
2020-02-14 23:05:59 +01:00
|
|
|
static const char TBDv1FileMalformed2[] = "---\n"
|
|
|
|
"archs: [ arm64 ]\n"
|
|
|
|
"platform: ios\n"
|
|
|
|
"install-name: Test.dylib\n"
|
|
|
|
"foobar: \"Unsupported key\"\n"
|
|
|
|
"...\n";
|
2019-03-22 23:46:52 +01:00
|
|
|
|
2020-06-16 04:59:42 +02:00
|
|
|
Expected<TBDFile> Result =
|
2020-02-14 23:05:59 +01:00
|
|
|
TextAPIReader::get(MemoryBufferRef(TBDv1FileMalformed2, "Test.tbd"));
|
2019-03-22 23:46:52 +01:00
|
|
|
EXPECT_FALSE(!!Result);
|
2020-06-16 04:59:42 +02:00
|
|
|
std::string ErrorMessage = toString(Result.takeError());
|
2019-03-22 23:46:52 +01:00
|
|
|
ASSERT_EQ(
|
|
|
|
"malformed file\nTest.tbd:5:9: error: unknown key 'foobar'\nfoobar: "
|
|
|
|
"\"Unsupported key\"\n ^~~~~~~~~~~~~~~~~\n",
|
2020-06-16 04:59:42 +02:00
|
|
|
ErrorMessage);
|
2019-03-22 23:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace TBDv1.
|