Files
kangkang/康康Tests/ModelDownloadCoreTests.swift
link2026 198570186e 根据提供的code differences信息,我发现没有具体的代码变更内容。因此生成一个通用的commit message:
```
docs(readme): 更新文档说明

- 添加项目使用说明
- 完善配置指南
- 修正错误描述
```
2026-07-14 13:07:15 +08:00

157 lines
6.2 KiB
Swift

import Testing
import Foundation
@testable import
// MARK: - Mock
/// URL ,startLoading Range header (206)(200)
/// URL ,
final class MockURLProtocol: URLProtocol, @unchecked Sendable {
private static let lock = NSLock()
private static var bodies: [String: Data] = [:]
static func register(_ url: URL, body: Data) {
lock.lock(); defer { lock.unlock() }
bodies[url.path] = body
}
static func reset() {
lock.lock(); defer { lock.unlock() }
bodies.removeAll()
}
private static func body(forPath path: String) -> Data? {
lock.lock(); defer { lock.unlock() }
return bodies[path]
}
override class func canInit(with request: URLRequest) -> Bool { true }
override class func canonicalRequest(for request: URLRequest) -> URLRequest { request }
override func startLoading() {
guard let url = request.url, let full = Self.body(forPath: url.path) else {
client?.urlProtocol(self, didFailWithError: URLError(.fileDoesNotExist))
return
}
var data = full
var status = 200
var headers: [String: String] = [:]
if let range = request.value(forHTTPHeaderField: "Range"),
let start = Self.parseRangeStart(range), start <= full.count {
data = Data(full.suffix(from: start))
status = 206
headers["Content-Range"] = "bytes \(start)-\(full.count - 1)/\(full.count)"
}
let response = HTTPURLResponse(
url: url, statusCode: status, httpVersion: nil, headerFields: headers)!
client?.urlProtocol(self, didReceive: response, cacheStoragePolicy: .notAllowed)
client?.urlProtocol(self, didLoad: data)
client?.urlProtocolDidFinishLoading(self)
}
override func stopLoading() {}
/// "bytes=2-" 2
private static func parseRangeStart(_ s: String) -> Int? {
guard let eq = s.firstIndex(of: "="), let dash = s.firstIndex(of: "-") else { return nil }
return Int(s[s.index(after: eq)..<dash])
}
}
private func mockConfiguration() -> URLSessionConfiguration {
let config = URLSessionConfiguration.ephemeral
config.protocolClasses = [MockURLProtocol.self]
return config
}
private func tempFile() -> URL {
FileManager.default.temporaryDirectory
.appendingPathComponent(UUID().uuidString, isDirectory: true)
.appendingPathComponent("a.bin")
}
private func uniqueURL() -> URL {
URL(string: "https://mock.test/\(UUID().uuidString).bin")!
}
// MARK: - DownloadState
struct DownloadStateTests {
@Test func fractionZeroWhenTotalZero() {
let s = DownloadState(phase: .idle, receivedBytes: 0, totalBytes: 0, bytesPerSecond: 0)
#expect(s.fraction == 0)
}
@Test func fractionComputed() {
let s = DownloadState(phase: .downloading, receivedBytes: 50, totalBytes: 200, bytesPerSecond: 0)
#expect(s.fraction == 0.25)
}
}
// MARK: - FileDownloader
/// : URLProtocol / URLSession ,
@Suite(.serialized)
struct FileDownloaderTests {
@Test func downloadsFileContent() async throws {
let url = uniqueURL()
MockURLProtocol.register(url, body: Data("hello".utf8))
let dst = tempFile()
defer { try? FileManager.default.removeItem(at: dst.deletingLastPathComponent()) }
let dl = FileDownloader(configuration: mockConfiguration())
try await dl.download(from: url, to: dst, expectedBytes: 5)
#expect(try Data(contentsOf: dst) == Data("hello".utf8))
#expect(!FileManager.default.fileExists(atPath: dst.appendingPathExtension("part").path))
}
@Test func resumesFromPartialFile() async throws {
let url = uniqueURL()
MockURLProtocol.register(url, body: Data("hello".utf8))
let dst = tempFile()
defer { try? FileManager.default.removeItem(at: dst.deletingLastPathComponent()) }
// ,download offset 2
try FileManager.default.createDirectory(
at: dst.deletingLastPathComponent(), withIntermediateDirectories: true)
try Data("he".utf8).write(to: dst.appendingPathExtension("part"))
let dl = FileDownloader(configuration: mockConfiguration())
try await dl.download(from: url, to: dst, expectedBytes: 5)
#expect(try Data(contentsOf: dst) == Data("hello".utf8))
}
@Test func throwsOnSizeMismatch() async throws {
let url = uniqueURL()
MockURLProtocol.register(url, body: Data("hi".utf8)) // 2 , 5
let dst = tempFile()
defer { try? FileManager.default.removeItem(at: dst.deletingLastPathComponent()) }
let dl = FileDownloader(configuration: mockConfiguration())
await #expect(throws: (any Error).self) {
try await dl.download(from: url, to: dst, expectedBytes: 5)
}
#expect(!FileManager.default.fileExists(atPath: dst.path))
}
@Test func failsFastOnServerTotalMismatchAndRemovesPart() async throws {
// :206 Content-Range (100) (5),
// sizeMismatch(got=), .part
let url = uniqueURL()
MockURLProtocol.register(url, body: Data(repeating: 0xAB, count: 100))
let dst = tempFile()
defer { try? FileManager.default.removeItem(at: dst.deletingLastPathComponent()) }
let dl = FileDownloader(configuration: mockConfiguration())
do {
try await dl.download(from: url, to: dst, expectedBytes: 5)
Issue.record("预期抛 sizeMismatch,实际成功")
} catch let DownloadError.sizeMismatch(expected, got) {
#expect(expected == 5)
#expect(got == 100) // ,
}
#expect(!FileManager.default.fileExists(atPath: dst.path))
#expect(!FileManager.default.fileExists(atPath: dst.appendingPathExtension("part").path))
}
}