Files
wehub-resource-sync 680845cb1c
Build containerization / Verify commit signatures (push) Has been skipped
Build containerization / containerization (push) Successful in 0s
Linux build / Linux compile check (push) Has been cancelled
Linux build / Determine Swift version (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:25:30 +08:00

85 lines
3.5 KiB
Swift

//===----------------------------------------------------------------------===//
// Copyright © 2025-2026 Apple Inc. and the Containerization project authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//===----------------------------------------------------------------------===//
//
import Testing
@testable import ContainerizationOCI
struct OCIPlatformTests {
@Test func identicalPlatforms() {
let amd64lhs = Platform(arch: "amd64", os: "linux")
let amd64rhs = Platform(arch: "amd64", os: "linux")
#expect(amd64lhs == amd64rhs, "amd64 platforms should be equal")
let arm64lhs = Platform(arch: "arm64", os: "linux")
let arm64rhs = Platform(arch: "arm64", os: "linux")
#expect(arm64lhs == arm64rhs, "arm64 platforms should be equal")
}
@Test func differentOS() {
let lhs = Platform(arch: "arm64", os: "linux")
let rhs = Platform(arch: "arm64", os: "darwin")
#expect(lhs != rhs, "Different OS should not be equal")
}
@Test func differentArch() {
let lhs = Platform(arch: "amd64", os: "linux")
let rhs = Platform(arch: "arm64", os: "linux")
#expect(lhs != rhs, "Different arch should not be equal")
}
@Test func arm64_sameVariant() {
let lhs = Platform(arch: "arm64", os: "linux", variant: "v8")
let rhs = Platform(arch: "arm64", os: "linux", variant: "v8")
#expect(lhs == rhs, "Both OS arm64, same arch, same variant => equal")
}
@Test func arm64_nilAndV8() {
let lhs = Platform(arch: "arm64", os: "linux", variant: nil)
let rhs = Platform(arch: "arm64", os: "linux", variant: "v8")
#expect(lhs == rhs, "One variant nil and other v8 => equal under special arm64 rule")
}
@Test func arm64_nilAndV7() {
let lhs = Platform(arch: "arm64", os: "linux", variant: nil)
let rhs = Platform(arch: "arm64", os: "linux", variant: "v7")
#expect(lhs != rhs, "nil vs v7 is not covered by the special rule => not equal")
}
@Test func arm64_bothNil() {
let lhs = Platform(arch: "arm64", os: "linux", variant: nil)
let rhs = Platform(arch: "arm64", os: "linux", variant: nil)
#expect(lhs == rhs, "Both nil variants => variantEqual is true => overall equal")
}
@Test func arm64_nilAndV8_sameHashValue() {
let withoutVariant = Platform(arch: "arm64", os: "linux", variant: nil)
let withV8 = Platform(arch: "arm64", os: "linux", variant: "v8")
// Equal platforms must produce the same hash — violating this breaks Set/Dictionary lookups
#expect(withoutVariant.hashValue == withV8.hashValue, "arm64 nil variant and v8 must hash identically")
}
@Test func arm64_nilAndV8_setLookup() {
let withoutVariant = Platform(arch: "arm64", os: "linux", variant: nil)
let withV8 = Platform(arch: "arm64", os: "linux", variant: "v8")
var set = Set<Platform>()
set.insert(withoutVariant)
#expect(set.contains(withV8), "arm64/v8 must be found in a Set that contains arm64 with nil variant")
}
}