mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
265 lines
6.4 KiB
Swift
265 lines
6.4 KiB
Swift
//===--- OutputSpanTests.swift --------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2025 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// RUN: %target-run-stdlib-swift
|
|
|
|
// REQUIRES: executable_test
|
|
|
|
import StdlibUnittest
|
|
|
|
var suite = TestSuite("OutputSpan Tests")
|
|
defer { runAllTests() }
|
|
|
|
@available(SwiftStdlib 6.2, *)
|
|
struct Allocation<T>: ~Copyable {
|
|
let allocation: UnsafeMutableBufferPointer<T>
|
|
var count: Int? = nil
|
|
|
|
init(of count: Int = 1, _ t: T.Type) {
|
|
precondition(count >= 0)
|
|
allocation = .allocate(capacity: count)
|
|
}
|
|
|
|
var isEmpty: Bool { (count ?? 0) == 0 }
|
|
|
|
mutating func initialize<E>(
|
|
_ body: (inout OutputSpan<T>) throws(E) -> Void
|
|
) throws(E) {
|
|
if count != nil { fatalError() }
|
|
var allocation = allocation
|
|
if allocation.count == 0 { allocation = .init(start: nil, count: 0) }
|
|
var outputBuffer = OutputSpan(buffer: allocation, initializedCount: 0)
|
|
do {
|
|
try body(&outputBuffer)
|
|
let initialized = outputBuffer.finalize(for: allocation)
|
|
count = initialized
|
|
}
|
|
catch {
|
|
outputBuffer.removeAll()
|
|
let initialized = outputBuffer.finalize(for: allocation)
|
|
assert(initialized == 0)
|
|
throw error
|
|
}
|
|
}
|
|
|
|
borrowing func withSpan<E, R: ~Copyable>(
|
|
_ body: (borrowing Span<T>) throws(E) -> R
|
|
) throws(E) -> R {
|
|
try body(Span(_unsafeElements: allocation[0..<count!]))
|
|
}
|
|
|
|
deinit {
|
|
if let count {
|
|
allocation.prefix(count).deinitialize()
|
|
}
|
|
allocation.deallocate()
|
|
}
|
|
}
|
|
|
|
enum MyTestError: Error { case error }
|
|
|
|
suite.test("Create OutputSpan")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
let c = 48
|
|
let allocation = UnsafeMutableBufferPointer<UInt8>.allocate(capacity: c)
|
|
defer { allocation.deallocate() }
|
|
|
|
let ob = unsafe OutputSpan(buffer: allocation, initializedCount: 0)
|
|
let initialized = ob.finalize(for: allocation)
|
|
expectEqual(initialized, 0)
|
|
}
|
|
|
|
suite.test("deinit without relinquishing memory")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
let c = 48
|
|
let allocation = UnsafeMutableBufferPointer<UInt8>.allocate(capacity: c)
|
|
defer { allocation.deallocate() }
|
|
|
|
var ob = unsafe OutputSpan(buffer: allocation, initializedCount: 0)
|
|
// OutputSpan(buffer: Slice(base: allocation, bounds: 0..<c))
|
|
ob.append(repeating: 65, count: 12)
|
|
expectEqual(ob.count, 12)
|
|
_ = ob
|
|
}
|
|
|
|
suite.test("append single elements")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
var a = Allocation(of: 48, Int.self)
|
|
let c = 10
|
|
a.initialize {
|
|
for i in 0...c {
|
|
$0.append(i)
|
|
}
|
|
let oops = $0.removeLast()
|
|
expectEqual(oops, c)
|
|
}
|
|
expectNotNil(a.count)
|
|
expectEqual(a.count, c)
|
|
a.withSpan {
|
|
expectEqual($0.count, c)
|
|
for i in $0.indices {
|
|
expectEqual($0[i], i)
|
|
}
|
|
}
|
|
}
|
|
|
|
suite.test("initialize buffer with repeated elements")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
var a = Allocation(of: 48, Int.self)
|
|
let c = 10
|
|
a.initialize {
|
|
$0.append(repeating: c, count: c)
|
|
let oops = $0.removeLast()
|
|
expectEqual(oops, c)
|
|
expectEqual($0.count, c-1)
|
|
}
|
|
a.withSpan {
|
|
expectEqual($0.count, c-1)
|
|
for i in $0.indices {
|
|
expectEqual($0[i], c)
|
|
}
|
|
}
|
|
}
|
|
|
|
suite.test("indices property")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
let capacity = 4
|
|
let b = UnsafeMutableBufferPointer<Int>.allocate(capacity: capacity)
|
|
defer { b.deallocate() }
|
|
_ = b.initialize(fromContentsOf: 0..<capacity)
|
|
defer { b.deinitialize() }
|
|
|
|
let span = unsafe OutputSpan(buffer: b, initializedCount: capacity)
|
|
expectEqual(span.indices.count, capacity)
|
|
let equal = span.indices.elementsEqual(0..<capacity)
|
|
expectTrue(equal)
|
|
}
|
|
|
|
suite.test("IndexingSubscript")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
let capacity = 4
|
|
let b = UnsafeMutableBufferPointer<Int>.allocate(capacity: capacity)
|
|
defer { b.deallocate() }
|
|
_ = b.initialize(fromContentsOf: 0..<capacity)
|
|
defer { b.deinitialize() }
|
|
|
|
var span = unsafe OutputSpan(buffer: b, initializedCount: capacity)
|
|
expectEqual(span[0], b.first)
|
|
|
|
span[0] += 1
|
|
expectEqual(span[0], b.first)
|
|
}
|
|
|
|
suite.test("deinitialize buffer")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
var a = Allocation(of: 48, Int.self)
|
|
do {
|
|
try a.initialize {
|
|
$0.append(0)
|
|
$0.append(1)
|
|
expectTrue($0.count > 0)
|
|
throw MyTestError.error
|
|
}
|
|
}
|
|
catch MyTestError.error {
|
|
expectEqual(a.isEmpty, true)
|
|
}
|
|
catch {
|
|
expectTrue(false)
|
|
}
|
|
|
|
a = Allocation(of: 0, Int.self)
|
|
do {
|
|
try a.initialize {
|
|
expectEqual($0.freeCapacity, 0)
|
|
throw MyTestError.error
|
|
}
|
|
}
|
|
catch MyTestError.error {
|
|
expectEqual(a.isEmpty, true)
|
|
}
|
|
catch {
|
|
expectTrue(false)
|
|
}
|
|
}
|
|
|
|
suite.test("InlineArray initialization")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
let i = InlineArray<10, Int> {
|
|
(o: inout OutputSpan<Int>) in
|
|
expectEqual(o.count, 0)
|
|
for i in 0..<o.capacity {
|
|
o.append(i)
|
|
}
|
|
expectEqual(o.freeCapacity, 0)
|
|
}
|
|
for j in i.indices {
|
|
expectEqual(j, i[j])
|
|
}
|
|
}
|
|
|
|
suite.test("InlineArray initialization underflow")
|
|
.skip(.wasiAny(reason: "Trap tests aren't supported on WASI."))
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
expectCrashLater()
|
|
_ = InlineArray<4, Int> {
|
|
$0.append(1)
|
|
}
|
|
}
|
|
|
|
suite.test("InlineArray initialization throws")
|
|
.require(.stdlib_6_2).code {
|
|
guard #available(SwiftStdlib 6.2, *) else { return }
|
|
|
|
enum LocalError: Error { case error }
|
|
|
|
class I {
|
|
static var count = 0
|
|
init() { Self.count += 1 }
|
|
deinit { Self.count -= 1 }
|
|
}
|
|
|
|
let a: InlineArray<4, I>
|
|
do throws(LocalError) {
|
|
a = try InlineArray {
|
|
o throws(LocalError) in
|
|
o.append(I())
|
|
o.append(I())
|
|
o.append(I())
|
|
o.append(I())
|
|
expectEqual(I.count, 4)
|
|
throw LocalError.error
|
|
}
|
|
_ = a
|
|
} catch {
|
|
expectEqual(I.count, 0)
|
|
}
|
|
}
|