mirror of
https://github.com/apple/container.git
synced 2026-08-24 10:05:43 -05:00
- Closes #461. - Extract core types into ContainerResources target. - Extract ContainerNetworkServiceClient from ContainerNetworkService. - Relocate sandbox client from ContainerClient to ContainerSandboxServiceClient. - Relocate ContainerClient to ContainerAPIServiceClient. - Common structure from services and clients under Source/Services. Updated project hierarchy: ``` Sources/CAuditToken - audit token access wrapper Sources/CLI - CLI executable Sources/ContainerBuild - builder Sources/ContainerCommands - CLI command implementations Sources/ContainerLog - logging helpers Sources/ContainerPersistence - persistent data and system property helpers Sources/ContainerPlugin - plugin system Sources/ContainerResource - resource (container, image, volume, network) types Sources/ContainerVersion - version helpers Sources/ContainerXPC - XPC helpers Sources/CVersion - injected project version Sources/DNSServer - container DNS resolver Sources/Helpers - service executables Sources/Services/*/Client - service clients Sources/Services/*/Server - service implementations Sources/SocketForwarder - port forwarding Sources/TerminalProgress - progress bar ``` ## Type of Change - [ ] Bug fix - [ ] New feature - [x] Breaking change - [ ] Documentation update ## Motivation and Context The ContainerClient library was a bit of a grab bag. This refactor applies a more sensible project and library structure for resource data types, services, and clients. ## Testing - [x] Tested locally - [x] Added/updated tests - [ ] Added/updated docs
106 lines
4.2 KiB
Swift
106 lines
4.2 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2026 Apple Inc. and the container 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 Foundation
|
|
import Testing
|
|
|
|
@testable import ContainerAPIClient
|
|
|
|
struct DiskUsageTests {
|
|
|
|
@Test("DiskUsageStats JSON encoding and decoding")
|
|
func testJSONSerialization() throws {
|
|
let stats = DiskUsageStats(
|
|
images: ResourceUsage(total: 10, active: 5, sizeInBytes: 1024, reclaimable: 512),
|
|
containers: ResourceUsage(total: 3, active: 2, sizeInBytes: 2048, reclaimable: 1024),
|
|
volumes: ResourceUsage(total: 7, active: 4, sizeInBytes: 4096, reclaimable: 2048)
|
|
)
|
|
|
|
let encoder = JSONEncoder()
|
|
let data = try encoder.encode(stats)
|
|
|
|
let decoder = JSONDecoder()
|
|
let decoded = try decoder.decode(DiskUsageStats.self, from: data)
|
|
|
|
#expect(decoded.images.total == stats.images.total)
|
|
#expect(decoded.images.active == stats.images.active)
|
|
#expect(decoded.images.sizeInBytes == stats.images.sizeInBytes)
|
|
#expect(decoded.images.reclaimable == stats.images.reclaimable)
|
|
|
|
#expect(decoded.containers.total == stats.containers.total)
|
|
#expect(decoded.containers.active == stats.containers.active)
|
|
#expect(decoded.containers.sizeInBytes == stats.containers.sizeInBytes)
|
|
#expect(decoded.containers.reclaimable == stats.containers.reclaimable)
|
|
|
|
#expect(decoded.volumes.total == stats.volumes.total)
|
|
#expect(decoded.volumes.active == stats.volumes.active)
|
|
#expect(decoded.volumes.sizeInBytes == stats.volumes.sizeInBytes)
|
|
#expect(decoded.volumes.reclaimable == stats.volumes.reclaimable)
|
|
}
|
|
|
|
@Test("ResourceUsage with zero values")
|
|
func testZeroValues() throws {
|
|
let emptyUsage = ResourceUsage(total: 0, active: 0, sizeInBytes: 0, reclaimable: 0)
|
|
|
|
let encoder = JSONEncoder()
|
|
let data = try encoder.encode(emptyUsage)
|
|
|
|
let decoder = JSONDecoder()
|
|
let decoded = try decoder.decode(ResourceUsage.self, from: data)
|
|
|
|
#expect(decoded.total == 0)
|
|
#expect(decoded.active == 0)
|
|
#expect(decoded.sizeInBytes == 0)
|
|
#expect(decoded.reclaimable == 0)
|
|
}
|
|
|
|
@Test("ResourceUsage with large values")
|
|
func testLargeValues() throws {
|
|
let largeUsage = ResourceUsage(
|
|
total: 1000,
|
|
active: 500,
|
|
sizeInBytes: UInt64.max,
|
|
reclaimable: UInt64.max / 2
|
|
)
|
|
|
|
let encoder = JSONEncoder()
|
|
let data = try encoder.encode(largeUsage)
|
|
|
|
let decoder = JSONDecoder()
|
|
let decoded = try decoder.decode(ResourceUsage.self, from: data)
|
|
|
|
#expect(decoded.total == 1000)
|
|
#expect(decoded.active == 500)
|
|
#expect(decoded.sizeInBytes == UInt64.max)
|
|
#expect(decoded.reclaimable == UInt64.max / 2)
|
|
}
|
|
|
|
@Test("ResourceUsage percentage calculations")
|
|
func testPercentageCalculations() throws {
|
|
// 0% reclaimable
|
|
let noneReclaimable = ResourceUsage(total: 10, active: 10, sizeInBytes: 1000, reclaimable: 0)
|
|
#expect(Double(noneReclaimable.reclaimable) / Double(noneReclaimable.sizeInBytes) == 0.0)
|
|
|
|
// 50% reclaimable
|
|
let halfReclaimable = ResourceUsage(total: 10, active: 5, sizeInBytes: 1000, reclaimable: 500)
|
|
#expect(Double(halfReclaimable.reclaimable) / Double(halfReclaimable.sizeInBytes) == 0.5)
|
|
|
|
// 100% reclaimable
|
|
let allReclaimable = ResourceUsage(total: 10, active: 0, sizeInBytes: 1000, reclaimable: 1000)
|
|
#expect(Double(allReclaimable.reclaimable) / Double(allReclaimable.sizeInBytes) == 1.0)
|
|
}
|
|
}
|