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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2020-2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Basics
@testable import PackageCollections
@testable import PackageModel
import SPMTestSupport
import XCTest
final class PackageCollectionsModelTests: XCTestCase {
func testLatestVersions() {
let targets = [PackageCollectionsModel.Target(name: "Foo", moduleName: "Foo")]
let products = [PackageCollectionsModel.Product(name: "Foo", type: .library(.automatic), targets: targets)]
let toolsVersion = ToolsVersion(string: "5.2")!
let manifests = [toolsVersion: PackageCollectionsModel.Package.Version.Manifest(
toolsVersion: toolsVersion, packageName: "FooBar", targets: targets, products: products, minimumPlatformVersions: nil
)]
let versions: [PackageCollectionsModel.Package.Version] = [
.init(version: .init(stringLiteral: "1.2.0"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "2.0.1"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "2.1.0-beta.3"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "2.1.0"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "3.0.0-beta.1"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
]
XCTAssertEqual("2.1.0", versions.latestRelease?.version.description)
XCTAssertEqual("3.0.0-beta.1", versions.latestPrerelease?.version.description)
}
func testNoLatestReleaseVersion() {
let targets = [PackageCollectionsModel.Target(name: "Foo", moduleName: "Foo")]
let products = [PackageCollectionsModel.Product(name: "Foo", type: .library(.automatic), targets: targets)]
let toolsVersion = ToolsVersion(string: "5.2")!
let manifests = [toolsVersion: PackageCollectionsModel.Package.Version.Manifest(
toolsVersion: toolsVersion, packageName: "FooBar", targets: targets, products: products, minimumPlatformVersions: nil
)]
let versions: [PackageCollectionsModel.Package.Version] = [
.init(version: .init(stringLiteral: "2.1.0-beta.3"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "3.0.0-beta.1"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
]
XCTAssertNil(versions.latestRelease)
XCTAssertEqual("3.0.0-beta.1", versions.latestPrerelease?.version.description)
}
func testNoLatestPrereleaseVersion() {
let targets = [PackageCollectionsModel.Target(name: "Foo", moduleName: "Foo")]
let products = [PackageCollectionsModel.Product(name: "Foo", type: .library(.automatic), targets: targets)]
let toolsVersion = ToolsVersion(string: "5.2")!
let manifests = [toolsVersion: PackageCollectionsModel.Package.Version.Manifest(
toolsVersion: toolsVersion, packageName: "FooBar", targets: targets, products: products, minimumPlatformVersions: nil
)]
let versions: [PackageCollectionsModel.Package.Version] = [
.init(version: .init(stringLiteral: "1.2.0"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "2.0.1"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
.init(version: .init(stringLiteral: "2.1.0"), title: nil, summary: nil, manifests: manifests, defaultToolsVersion: toolsVersion, verifiedCompatibility: nil, license: nil, author: nil, signer: nil, createdAt: nil),
]
XCTAssertEqual("2.1.0", versions.latestRelease?.version.description)
XCTAssertNil(versions.latestPrerelease)
}
func testSourceValidation() throws {
let httpsSource = PackageCollectionsModel.CollectionSource(type: .json, url: "https://feed.mock.io")
XCTAssertNil(httpsSource.validate(fileSystem: localFileSystem), "not expecting errors")
let httpsSource2 = PackageCollectionsModel.CollectionSource(type: .json, url: "HTTPS://feed.mock.io")
XCTAssertNil(httpsSource2.validate(fileSystem: localFileSystem), "not expecting errors")
let httpsSource3 = PackageCollectionsModel.CollectionSource(type: .json, url: "HttpS://feed.mock.io")
XCTAssertNil(httpsSource3.validate(fileSystem: localFileSystem), "not expecting errors")
let httpSource = PackageCollectionsModel.CollectionSource(type: .json, url: "http://feed.mock.io")
XCTAssertEqual(httpSource.validate(fileSystem: localFileSystem)?.count, 1, "expecting errors")
let otherProtocolSource = PackageCollectionsModel.CollectionSource(type: .json, url: "ftp://feed.mock.io")
XCTAssertEqual(otherProtocolSource.validate(fileSystem: localFileSystem)?.count, 1, "expecting errors")
let brokenUrlSource = PackageCollectionsModel.CollectionSource(type: .json, url: "blah")
XCTAssertEqual(brokenUrlSource.validate(fileSystem: localFileSystem)?.count, 1, "expecting errors")
}
func testSourceValidation_localFile() throws {
try fixture(name: "Collections", createGitRepo: false) { fixturePath in
// File must exist in local FS
let path = fixturePath.appending(components: "JSON", "good.json")
let source = PackageCollectionsModel.CollectionSource(type: .json, url: path.asURL)
XCTAssertNil(source.validate(fileSystem: localFileSystem))
}
}
func testSourceValidation_localFileDoesNotExist() throws {
let source = PackageCollectionsModel.CollectionSource(type: .json, url: URL(fileURLWithPath: "/foo/bar"))
let messages = source.validate(fileSystem: localFileSystem)!
XCTAssertEqual(1, messages.count)
guard case .error = messages[0].level else {
return XCTFail("Expected .error")
}
XCTAssertNotNil(messages[0].message.range(of: "either a non-local path or the file does not exist", options: .caseInsensitive))
}
}
|