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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2020 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
//
//===----------------------------------------------------------------------===//
#if canImport(TestSupport)
import TestSupport
#endif
#if FOUNDATION_FRAMEWORK
@testable import Foundation
#else
@testable import FoundationEssentials
#endif
extension AttributedStringProtocol {
fileprivate mutating func genericSetAttribute() {
self.testInt = 3
}
}
/// Tests for `AttributedString` to confirm expected CoW behavior
final class TestAttributedStringCOW: XCTestCase {
// MARK: - Utility Functions
func createAttributedString() -> AttributedString {
var str = AttributedString("Hello", attributes: container)
str += AttributedString(" ")
str += AttributedString("World", attributes: containerB)
return str
}
func assertCOWCopy(file: StaticString = #filePath, line: UInt = #line, _ operation: (inout AttributedString) -> Void) {
let str = createAttributedString()
var copy = str
operation(©)
XCTAssertNotEqual(str, copy, "Mutation operation did not copy when multiple references exist", file: file, line: line)
}
func assertCOWNoCopy(file: StaticString = #filePath, line: UInt = #line, _ operation: (inout AttributedString) -> Void) {
var str = createAttributedString()
let gutsPtr = Unmanaged.passUnretained(str._guts)
operation(&str)
let newGutsPtr = Unmanaged.passUnretained(str._guts)
XCTAssertEqual(gutsPtr.toOpaque(), newGutsPtr.toOpaque(), "Mutation operation copied when only one reference exists", file: file, line: line)
}
func assertCOWBehavior(file: StaticString = #filePath, line: UInt = #line, _ operation: (inout AttributedString) -> Void) {
assertCOWCopy(file: file, line: line, operation)
assertCOWNoCopy(file: file, line: line, operation)
}
func makeSubrange(_ str: AttributedString) -> Range<AttributedString.Index> {
return str.characters.index(str.startIndex, offsetBy: 2)..<str.characters.index(str.endIndex, offsetBy: -2)
}
lazy var container: AttributeContainer = {
var container = AttributeContainer()
container.testInt = 2
return container
}()
lazy var containerB: AttributeContainer = {
var container = AttributeContainer()
container.testBool = true
return container
}()
// MARK: - Tests
func testTopLevelType() {
assertCOWBehavior { (str) in
str.setAttributes(container)
}
assertCOWBehavior { (str) in
str.mergeAttributes(container)
}
assertCOWBehavior { (str) in
str.replaceAttributes(container, with: containerB)
}
assertCOWBehavior { (str) in
str.append(AttributedString("b", attributes: containerB))
}
assertCOWBehavior { (str) in
str.insert(AttributedString("b", attributes: containerB), at: str.startIndex)
}
assertCOWBehavior { (str) in
str.removeSubrange(..<str.characters.index(str.startIndex, offsetBy: 3))
}
assertCOWBehavior { (str) in
str.replaceSubrange(..<str.characters.index(str.startIndex, offsetBy: 3), with: AttributedString("b", attributes: containerB))
}
assertCOWBehavior { (str) in
str[AttributeScopes.TestAttributes.TestIntAttribute.self] = 3
}
assertCOWBehavior { (str) in
str.testInt = 3
}
assertCOWBehavior { (str) in
str.test.testInt = 3
}
}
func testSubstring() {
assertCOWBehavior { (str) in
str[makeSubrange(str)].setAttributes(container)
}
assertCOWBehavior { (str) in
str[makeSubrange(str)].mergeAttributes(container)
}
assertCOWBehavior { (str) in
str[makeSubrange(str)].replaceAttributes(container, with: containerB)
}
assertCOWBehavior { (str) in
str[makeSubrange(str)][AttributeScopes.TestAttributes.TestIntAttribute.self] = 3
}
assertCOWBehavior { (str) in
str[makeSubrange(str)].testInt = 3
}
assertCOWBehavior { (str) in
str[makeSubrange(str)].test.testInt = 3
}
}
func testCharacters() {
let char: Character = "a"
assertCOWBehavior { (str) in
str.characters.replaceSubrange(makeSubrange(str), with: "abc")
}
assertCOWBehavior { (str) in
str.characters.append(char)
}
assertCOWBehavior { (str) in
str.characters.append(contentsOf: "abc")
}
assertCOWBehavior { (str) in
str.characters.append(contentsOf: [char, char, char])
}
assertCOWBehavior { (str) in
str.characters[str.startIndex] = "A"
}
assertCOWBehavior { (str) in
str.characters[makeSubrange(str)].append("a")
}
}
func testUnicodeScalars() {
let scalar: UnicodeScalar = "a"
assertCOWBehavior { (str) in
str.unicodeScalars.replaceSubrange(makeSubrange(str), with: [scalar, scalar])
}
}
func testGenericProtocol() {
assertCOWBehavior {
$0.genericSetAttribute()
}
assertCOWBehavior {
$0[makeSubrange($0)].genericSetAttribute()
}
}
}
|