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
|
//===----------------------------------------------------------------------===//
//
// 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 Foundation
import SPMTestSupport
import XCTest
@testable import PackageCollectionsModel
class PackageCollectionModelTests: XCTestCase {
typealias Model = PackageCollectionModel.V1
func testCollectionCodable() throws {
let packages = [
Model.Collection.Package(
url: "https://package-collection-tests.com/repos/foobar.git",
identity: "foo.bar",
summary: "Package Foobar",
keywords: ["test package"],
versions: [
Model.Collection.Package.Version(
version: "1.3.2",
summary: "Fix a few bugs",
manifests: [
"5.2": Model.Collection.Package.Version.Manifest(
toolsVersion: "5.2",
packageName: "Foobar",
targets: [.init(name: "Foo", moduleName: "Foo")],
products: [.init(name: "Bar", type: .library(.automatic), targets: ["Foo"])],
minimumPlatformVersions: [.init(name: "macOS", version: "10.15")]
),
],
defaultToolsVersion: "5.2",
verifiedCompatibility: [Model.Compatibility(platform: Model.Platform(name: "macOS"), swiftVersion: "5.2")],
license: .init(name: "Apache-2.0", url: "https://package-collection-tests.com/repos/foobar/LICENSE"),
author: .init(name: "J. Appleseed"),
signer: .init(
type: "ADP",
commonName: "J. Appleseed",
organizationalUnitName: "A1",
organizationName: "Appleseed Inc."
),
createdAt: Date()
),
],
readmeURL: "https://package-collection-tests.com/repos/foobar/README",
license: .init(name: "Apache-2.0", url: "https://package-collection-tests.com/repos/foobar/LICENSE")
),
]
let collection = Model.Collection(
name: "Test Package Collection",
overview: "A test package collection",
keywords: ["swift packages"],
packages: packages,
formatVersion: .v1_0,
revision: 3,
generatedAt: Date(),
generatedBy: .init(name: "Jane Doe")
)
let data = try JSONEncoder().encode(collection)
let decoded = try JSONDecoder().decode(Model.Collection.self, from: data)
XCTAssertEqual(collection, decoded)
}
func testSignedCollectionCodable() throws {
let packages = [
Model.Collection.Package(
url: "https://package-collection-tests.com/repos/foobar.git",
identity: "foo.bar",
summary: "Package Foobar",
keywords: ["test package"],
versions: [
Model.Collection.Package.Version(
version: "1.3.2",
summary: "Fix a few bugs",
manifests: [
"5.2": Model.Collection.Package.Version.Manifest(
toolsVersion: "5.2",
packageName: "Foobar",
targets: [.init(name: "Foo", moduleName: "Foo")],
products: [.init(name: "Bar", type: .library(.automatic), targets: ["Foo"])],
minimumPlatformVersions: [.init(name: "macOS", version: "10.15")]
),
],
defaultToolsVersion: "5.2",
verifiedCompatibility: [Model.Compatibility(platform: Model.Platform(name: "macOS"), swiftVersion: "5.2")],
license: .init(name: "Apache-2.0", url: "https://package-collection-tests.com/repos/foobar/LICENSE"),
author: .init(name: "J. Appleseed"),
signer: .init(
type: "ADP",
commonName: "J. Appleseed",
organizationalUnitName: "A1",
organizationName: "Appleseed Inc."
),
createdAt: Date()
),
],
readmeURL: "https://package-collection-tests.com/repos/foobar/README",
license: .init(name: "Apache-2.0", url: "https://package-collection-tests.com/repos/foobar/LICENSE")
),
]
let collection = Model.Collection(
name: "Test Package Collection",
overview: "A test package collection",
keywords: ["swift packages"],
packages: packages,
formatVersion: .v1_0,
revision: 3,
generatedAt: Date(),
generatedBy: .init(name: "Jane Doe")
)
let signature = Model.Signature(
signature: "<SIGNATURE>",
certificate: Model.Signature.Certificate(
subject: .init(userID: "Test User ID", commonName: "Test Subject", organizationalUnit: "Test Org Unit", organization: "Test Org"),
issuer: .init(userID: nil, commonName: "Test Issuer", organizationalUnit: nil, organization: nil)
)
)
let signedCollection = Model.SignedCollection(collection: collection, signature: signature)
let data = try JSONEncoder().encode(signedCollection)
let decoder = JSONDecoder()
let decoded = try decoder.decode(Model.SignedCollection.self, from: data)
XCTAssertEqual(signedCollection, decoded)
}
}
|