forked from apple/containerization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOCIPlatformTests.swift
More file actions
118 lines (100 loc) · 5.35 KB
/
Copy pathOCIPlatformTests.swift
File metadata and controls
118 lines (100 loc) · 5.35 KB
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
//===----------------------------------------------------------------------===//
// 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: "windows")
#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")
}
@Test func arm64_differentOS_nilAndV8() {
let linux = Platform(arch: "arm64", os: "linux", variant: nil)
let windows = Platform(arch: "arm64", os: "windows", variant: "v8")
#expect(linux != windows, "The arm64 nil/v8 variant rule must not ignore a differing OS")
#expect(windows != linux, "The arm64 nil/v8 variant rule must not ignore a differing OS")
}
@Test func arm64_differentOS_bothV8() {
let linux = Platform(arch: "arm64", os: "linux", variant: "v8")
let windows = Platform(arch: "arm64", os: "windows", variant: "v8")
#expect(linux != windows, "Same arch and variant but different OS => not equal")
}
@Test func arm64_normalizedArchDifferentOS() {
// aarch64 normalizes to arm64, so both sides hit the arm64 variant rule.
let linux = Platform(arch: "aarch64", os: "linux", variant: nil)
let windows = Platform(arch: "arm64", os: "windows", variant: "v8")
#expect(linux != windows, "Normalized arm64 platforms with a differing OS => not equal")
}
@Test func arm64_differentOS_setLookup() {
let linux = Platform(arch: "arm64", os: "linux", variant: nil)
let windows = Platform(arch: "arm64", os: "windows", variant: "v8")
var set = Set<Platform>()
set.insert(linux)
#expect(!set.contains(windows), "windows/arm64/v8 must not be found in a Set holding linux/arm64")
}
@Test func arm64_platformMatcherDifferentOS() {
let matcher = createPlatformMatcher(for: Platform(arch: "arm64", os: "linux", variant: nil))
#expect(!matcher(Platform(arch: "arm64", os: "windows", variant: "v8")), "matcher must reject a differing OS")
#expect(matcher(Platform(arch: "arm64", os: "linux", variant: "v8")), "matcher must accept the same OS with an implied v8 variant")
}
}