Files
swift-mirror/validation-test/stdlib/StringViews.swift
Alejandro Alonso 7db88b2257 Disable some failing tests (#40338)
change to requires
2021-11-30 19:03:44 -08:00

853 lines
26 KiB
Swift
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//===--- StringViews.swift ------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 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
//
//===----------------------------------------------------------------------===//
// rdar://84233775
// REQUIRES: rdar84233775
// RUN: %target-run-stdlib-swift
// REQUIRES: executable_test
import Swift
import StdlibUnittest
import StdlibUnicodeUnittest
import StdlibCollectionUnittest
#if _runtime(_ObjC)
// FIXME: Foundation leaks through StdlibUnittest. It adds some conformances
// that overload resolution picks up in this code.
import Foundation
#endif
// CHECK: testing...
print("testing...")
let replacementUTF16: UTF16.CodeUnit = 0xFFFD
let replacementUTF8: [UTF8.CodeUnit] = [0xEF, 0xBF, 0xBD]
let replacementScalar = UnicodeScalar(replacementUTF16)!
let replacementCharacter = Character(replacementScalar)
// This string contains a variety of non-ASCII characters, including
// Unicode scalars that must be represented with a surrogate pair in
// UTF16, grapheme clusters composed of multiple Unicode scalars, and
// invalid UTF16 that should be replaced with replacement characters.
let winterUTF16 = Array("🏂☃❅❆❄︎⛄️❄️".utf16) + [0xD83C, 0x0020, 0xDF67, 0xD83C]
var winter = winterUTF16.withUnsafeBufferPointer {
String._fromInvalidUTF16($0)
}
let winterInvalidUTF8: [UTF8.CodeUnit] = replacementUTF8 + ([0x20] as [UTF8.CodeUnit]) + replacementUTF8 + replacementUTF8
let winterUTF8: [UTF8.CodeUnit] = [
0xf0, 0x9f, 0x8f, 0x82, 0xe2, 0x98, 0x83, 0xe2, 0x9d, 0x85, 0xe2,
0x9d, 0x86, 0xe2, 0x9d, 0x84, 0xef, 0xb8, 0x8e, 0xe2, 0x9b, 0x84,
0xef, 0xb8, 0x8f, 0xe2, 0x9d, 0x84, 0xef, 0xb8, 0x8f
] + winterInvalidUTF8
let summer = "school's out!"
let summerBytes: [UInt8] = [
0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x27, 0x73, 0x20, 0x6f, 0x75, 0x74, 0x21]
var tests = TestSuite("StringViews")
tests.test("decoding") {
expectEqualSequence(
winterUTF8,
winter.utf8
)
expectEqualSequence(
[0xd83c, 0xdfc2, 0x2603, 0x2745, 0x2746, 0x2744, 0xfe0e, 0x26c4,
0xfe0f, 0x2744, 0xfe0f,
replacementUTF16, 0x0020, replacementUTF16, replacementUTF16
],
winter.utf16
)
expectEqualSequence(
summerBytes,
summer.utf8
)
expectEqualSequence(
summerBytes.map {UTF16.CodeUnit($0)},
summer.utf16
)
}
// winter UTF8 grapheme clusters ([]) and unicode scalars (|)
// [f0 9f 8f 82] [e2 98 83] [e2 9d 85] [e2 9d 86] [e2 9d 84 | ef b8 8e]
// [e2 9b 84 | ef b8 8f] [e2 9d 84 | ef b8 8f]
//===--- To UTF8 ----------------------------------------------------------===//
func checkToUTF8(
_ id: String,
mapIndex: @escaping (String.Index, String.UTF8View)->String.Index?
) {
tests.test("index-mapping/character-to-utf8/\(id)") {
// the first three utf8 code units at the start of each grapheme
// cluster
expectEqualSequence(
[
[0xf0, 0x9f, 0x8f],
[0xe2, 0x98, 0x83],
[0xe2, 0x9d, 0x85],
[0xe2, 0x9d, 0x86],
[0xe2, 0x9d, 0x84],
[0xe2, 0x9b, 0x84],
[0xe2, 0x9d, 0x84],
replacementUTF8,
[0x20] + replacementUTF8[0..<2],
replacementUTF8,
replacementUTF8
] as [[UTF8.CodeUnit]],
winter.indices.map {
i in (0..<3).map {
let w = winter
return w.utf8[w.utf8.index(mapIndex(i, w.utf8)!, offsetBy: $0)]
}
}, sameValue: ==)
expectEqual(
winter.utf8.endIndex, mapIndex(winter.endIndex, winter.utf8))
expectEqualSequence(
summerBytes,
summer.indices.map {
summer.utf8[mapIndex($0, summer.utf8)!]
}
)
expectEqual(
summer.utf8.endIndex, mapIndex(summer.endIndex, summer.utf8))
}
tests.test("index-mapping/unicode-scalar-to-utf8/\(id)") {
// the first three utf8 code units at the start of each unicode
// scalar
expectEqualSequence(
[
[0xf0, 0x9f, 0x8f],
[0xe2, 0x98, 0x83],
[0xe2, 0x9d, 0x85],
[0xe2, 0x9d, 0x86],
[0xe2, 0x9d, 0x84],
[0xef, 0xb8, 0x8e],
[0xe2, 0x9b, 0x84],
[0xef, 0xb8, 0x8f],
[0xe2, 0x9d, 0x84],
[0xef, 0xb8, 0x8f],
replacementUTF8,
[0x20] + replacementUTF8[0..<2],
replacementUTF8,
replacementUTF8
] as [[UTF8.CodeUnit]],
winter.unicodeScalars.indices.map {
i in (0..<3).map {
let w = winter
return w.utf8[w.utf8.index(mapIndex(i, w.utf8)!, offsetBy: $0)]
}
}, sameValue: ==)
expectEqual(
winter.utf8.endIndex,
mapIndex(winter.unicodeScalars.endIndex, winter.utf8))
expectEqualSequence(
summerBytes,
summer.unicodeScalars.indices.map {
summer.utf8[mapIndex($0, summer.utf8)!]
}
)
expectEqual(
summer.utf8.endIndex,
mapIndex(summer.unicodeScalars.endIndex, summer.utf8))
}
tests.test("index-mapping/utf16-to-utf8/\(id)") {
// check the first three utf8 code units at the start of each utf16
// code unit
expectEqualSequence(
[
[0xf0, 0x9f, 0x8f],
// Prior to UTF-8 String, this tested for empty array in "legacy mode" or
// the replacemnet character otherwise. However, SE-0180 (String Index
// Overhual) dictates subscript behavior should treat it as emergent
// behavior from its encoded offset, hence we should get the same 3 code
// units as prior for non-scalar-aligned UTF-16 offsets applied to the
// UTF-8 view.
//
// Old code:
// // does not align with any utf8 code unit
// id == "legacy" ? [] : replacementUTF8,
id == "legacy" ? [] : [0xf0, 0x9f, 0x8f],
[0xe2, 0x98, 0x83],
[0xe2, 0x9d, 0x85],
[0xe2, 0x9d, 0x86],
[0xe2, 0x9d, 0x84],
[0xef, 0xb8, 0x8e],
[0xe2, 0x9b, 0x84],
[0xef, 0xb8, 0x8f],
[0xe2, 0x9d, 0x84],
[0xef, 0xb8, 0x8f],
replacementUTF8,
[0x20] + replacementUTF8[0..<2],
replacementUTF8,
replacementUTF8
] as [[UTF8.CodeUnit]],
winter.utf16.indices.map {
i16 in mapIndex(i16, winter.utf8).map {
i8 in (0..<3).map {
winter.utf8[winter.utf8.index(i8, offsetBy: $0)]
}
} ?? []
}, sameValue: ==)
expectNotNil(mapIndex(winter.utf16.endIndex, winter.utf8))
expectEqual(
winter.utf8.endIndex,
mapIndex(winter.utf16.endIndex, winter.utf8)!)
expectEqualSequence(
summerBytes,
summer.utf16.indices.map {
summer.utf8[mapIndex($0, summer.utf8)!]
}
)
expectNotNil(mapIndex(summer.utf16.endIndex, summer.utf8))
expectEqual(
summer.utf8.endIndex,
mapIndex(summer.utf16.endIndex, summer.utf8)!)
}
tests.test("index-mapping/utf8-to-utf8/\(id)") {
// should always succeed
for i in winter.utf8.indices {
expectEqual(i, mapIndex(i, winter.utf8)!)
}
}
}
checkToUTF8("legacy") { $0.samePosition(in: $1) }
checkToUTF8("interchange") { i, _ in i }
//===--- To UTF16 ---------------------------------------------------------===//
func checkToUTF16(
_ id: String,
mapIndex: @escaping (String.Index, String.UTF16View)->String.Index?
) {
func err(_ codeUnit: Unicode.UTF16.CodeUnit) -> Unicode.UTF16.CodeUnit? {
return id == "legacy" ? nil : codeUnit
}
tests.test("index-mapping/character-to-utf16/\(id)") {
expectEqualSequence(
[
0xd83c, // 0xdfc2,
0x2603,
0x2745,
0x2746,
0x2744, // 0xfe0e,
0x26c4, // 0xfe0f,
0x2744, // 0xfe0f,
replacementUTF16, 0x20, replacementUTF16, replacementUTF16
] as [UTF16.CodeUnit],
winter.indices.map {
winter.utf16[mapIndex($0, winter.utf16)!]
},
sameValue: ==)
expectEqual(winter.utf16.endIndex, mapIndex(winter.endIndex, winter.utf16))
expectEqualSequence(
summerBytes.map { UTF16.CodeUnit($0) },
summer.indices.map { summer.utf16[mapIndex($0, summer.utf16)!] }
)
expectEqual(summer.utf16.endIndex, mapIndex(summer.endIndex, summer.utf16))
}
tests.test("index-mapping/unicode-scalar-to-utf16/\(id)") {
expectEqualSequence(
[
0xd83c, // 0xdfc2,
0x2603,
0x2745,
0x2746,
0x2744, 0xfe0e,
0x26c4, 0xfe0f,
0x2744, 0xfe0f,
replacementUTF16, 0x20, replacementUTF16, replacementUTF16
] as [UTF16.CodeUnit],
winter.unicodeScalars.indices.map {
winter.utf16[mapIndex($0, winter.utf16)!]
})
expectEqual(
winter.utf16.endIndex,
mapIndex(winter.unicodeScalars.endIndex, winter.utf16))
expectEqualSequence(
summerBytes.map { UTF16.CodeUnit($0) },
summer.unicodeScalars.indices.map {
summer.utf16[mapIndex($0, summer.utf16)!]
}
)
expectEqual(
summer.utf16.endIndex,
mapIndex(summer.unicodeScalars.endIndex, summer.utf16))
}
tests.test("index-mapping/utf8-to-utf16/\(id)") {
expectEqualSequence(
[
0xd83c, err(0xd83c), err(0xd83c), err(0xd83c),
0x2603, err(0x2603), err(0x2603),
0x2745, err(0x2745), err(0x2745),
0x2746, err(0x2746), err(0x2746),
0x2744, err(0x2744), err(0x2744),
0xfe0e, err(0xfe0e), err(0xfe0e),
0x26c4, err(0x26c4), err(0x26c4),
0xfe0f, err(0xfe0f), err(0xfe0f),
0x2744, err(0x2744), err(0x2744),
0xfe0f, err(0xfe0f), err(0xfe0f),
replacementUTF16, err(replacementUTF16), err(replacementUTF16),
0x20,
replacementUTF16, err(replacementUTF16), err(replacementUTF16),
replacementUTF16, err(replacementUTF16), err(replacementUTF16)
] as [UTF16.CodeUnit?],
winter.utf8.indices.map {
mapIndex($0, winter.utf16).map {
winter.utf16[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(winter.utf8.endIndex, winter.utf16))
expectEqual(
winter.utf16.endIndex,
mapIndex(winter.utf8.endIndex, winter.utf16)!)
expectEqualSequence(
summerBytes.map { UTF16.CodeUnit($0) },
summer.utf8.indices.map { summer.utf16[mapIndex($0, summer.utf16)!] }
)
expectNotNil(mapIndex(summer.utf8.endIndex, summer.utf16))
expectEqual(
summer.utf16.endIndex,
mapIndex(summer.utf8.endIndex, summer.utf16)!)
}
}
checkToUTF16("legacy") { $0.samePosition(in: $1) }
checkToUTF16("interchange") { i, _ in i }
//===--- To UnicodeScalar -------------------------------------------------===//
func checkToUnicodeScalar(
_ id: String,
mapIndex: @escaping (String.Index, String.UnicodeScalarView)->String.Index?
) {
func err(_ scalarValue: UInt32) -> UnicodeScalar? {
return id == "legacy" ? nil : UnicodeScalar(scalarValue)
}
tests.test("index-mapping/character-to-unicode-scalar/\(id)") {
let winterCharacterUnicodeScalars: [UnicodeScalar] = [
UnicodeScalar(0x1f3c2)!,
UnicodeScalar(0x2603)!,
UnicodeScalar(0x2745)!,
UnicodeScalar(0x2746)!,
UnicodeScalar(0x2744)!, // 0xfe0e,
UnicodeScalar(0x26c4)!, // 0xfe0f,
UnicodeScalar(0x2744)!, // 0xfe0f
replacementScalar, UnicodeScalar(0x20)!, replacementScalar, replacementScalar
]
expectEqualSequence(
winterCharacterUnicodeScalars,
winter.indices.map {
let w = winter
return w.unicodeScalars[mapIndex($0, w.unicodeScalars)!]
})
expectEqual(winter.unicodeScalars.endIndex, mapIndex(winter.endIndex, winter.unicodeScalars))
expectEqualSequence(
summerBytes.map { UnicodeScalar($0) },
summer.indices.map { summer.unicodeScalars[mapIndex($0, summer.unicodeScalars)!] }
)
expectEqual(summer.unicodeScalars.endIndex, mapIndex(summer.endIndex, summer.unicodeScalars))
}
tests.test("index-mapping/utf8-to-unicode-scalar/\(id)") {
// Define expectation separately to help the type-checker, which
// otherwise runs out of time solving.
let winterUtf8UnicodeScalars: [UnicodeScalar?] = [
UnicodeScalar(0x1f3c2), err(0x1f3c2), err(0x1f3c2), err(0x1f3c2),
UnicodeScalar(0x2603), err(0x2603), err(0x2603),
UnicodeScalar(0x2745), err(0x2745), err(0x2745),
UnicodeScalar(0x2746), err(0x2746), err(0x2746),
UnicodeScalar(0x2744), err(0x2744), err(0x2744),
UnicodeScalar(0xfe0e), err(0xfe0e), err(0xfe0e),
UnicodeScalar(0x26c4), err(0x26c4), err(0x26c4),
UnicodeScalar(0xfe0f), err(0xfe0f), err(0xfe0f),
UnicodeScalar(0x2744), err(0x2744), err(0x2744),
UnicodeScalar(0xfe0f), err(0xfe0f), err(0xfe0f),
replacementScalar,
err(replacementScalar.value), err(replacementScalar.value),
UnicodeScalar(0x20),
replacementScalar,
err(replacementScalar.value), err(replacementScalar.value),
replacementScalar,
err(replacementScalar.value), err(replacementScalar.value)
]
expectEqualSequence(
winterUtf8UnicodeScalars,
winter.utf8.indices.map {
i in mapIndex(i, winter.unicodeScalars).map {
winter.unicodeScalars[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(winter.utf8.endIndex, winter.unicodeScalars))
expectEqual(
winter.unicodeScalars.endIndex,
mapIndex(winter.utf8.endIndex, winter.unicodeScalars)!)
expectEqualSequence(
summerBytes.map { UnicodeScalar($0) as UnicodeScalar? },
summer.utf8.indices.map {
i in mapIndex(i, summer.unicodeScalars).map {
summer.unicodeScalars[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(summer.utf8.endIndex, summer.unicodeScalars))
expectEqual(
summer.unicodeScalars.endIndex,
mapIndex(summer.utf8.endIndex, summer.unicodeScalars)!)
}
tests.test("index-mapping/utf16-to-unicode-scalar/\(id)") {
let winterUtf16UnicodeScalars: [UnicodeScalar?] = [
UnicodeScalar(0x1f3c2),
// Prior to UTF-8 String, this tested for empty array in "legacy mode" or
// the replacemnet character otherwise. However, SE-0180 (String Index
// Overhual) dictates subscript behavior should treat it as emergent
// behavior from its encoded offset, hence we should get the same 3 code
// units as prior for non-scalar-aligned UTF-16 offsets applied to the
// UTF-8 view.
//
// Old code:
// err(replacementScalar.value),
err(0x1f3c2),
UnicodeScalar(0x2603),
UnicodeScalar(0x2745),
UnicodeScalar(0x2746),
UnicodeScalar(0x2744), UnicodeScalar(0xfe0e),
UnicodeScalar(0x26c4), UnicodeScalar(0xfe0f),
UnicodeScalar(0x2744), UnicodeScalar(0xfe0f),
replacementScalar, UnicodeScalar(0x20), replacementScalar, replacementScalar
]
expectEqualSequence(
winterUtf16UnicodeScalars,
winter.utf16.indices.map {
i in mapIndex(i, winter.unicodeScalars).map {
winter.unicodeScalars[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(winter.utf16.endIndex, winter.unicodeScalars))
expectEqual(
winter.unicodeScalars.endIndex,
mapIndex(winter.utf16.endIndex, winter.unicodeScalars)!)
expectEqualSequence(
summerBytes.map { UnicodeScalar($0) as UnicodeScalar? },
summer.utf16.indices.map {
i in mapIndex(i, summer.unicodeScalars).map {
summer.unicodeScalars[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(summer.utf16.endIndex, summer.unicodeScalars))
expectEqual(
summer.unicodeScalars.endIndex,
mapIndex(summer.utf16.endIndex, summer.unicodeScalars)!)
}
}
checkToUnicodeScalar("legacy") { $0.samePosition(in: $1) }
checkToUnicodeScalar("interchange") { i, _ in i }
//===--- To Character -----------------------------------------------------===//
func checkToCharacter(
_ id: String,
mapIndex: @escaping (String.Index, String)->String.Index?
) {
func err(_ c: Character) -> Character? {
return id == "legacy" ? nil : c
}
tests.test("index-mapping/unicode-scalar-to-character/\(id)") {
let winterUnicodeScalarCharacters: [Character?] = [
"🏂", "", "", "", "❄︎", err("\u{FE0E}"), "⛄️", err("\u{FE0F}"),
"❄️", err("\u{FE0F}"),
replacementCharacter, "\u{20}", replacementCharacter, replacementCharacter
]
expectEqualSequence(
winterUnicodeScalarCharacters,
winter.unicodeScalars.indices.map {
i in mapIndex(i, winter).map {
winter[$0]
}
}, sameValue: ==)
expectEqual(winter.endIndex, mapIndex(winter.unicodeScalars.endIndex, winter)!)
expectEqualSequence(
summerBytes.map { Character(UnicodeScalar($0)) },
summer.unicodeScalars.indices.map { summer[mapIndex($0, summer)!] }
)
expectEqual(summer.endIndex, mapIndex(summer.unicodeScalars.endIndex, summer)!)
}
tests.test("index-mapping/utf8-to-character/\(id)") {
// Define expectation separately to help the type-checker, which
// otherwise runs out of time solving.
let winterUtf8Characters: [Character?] = [
"🏂", err("🏂"), err("🏂"), err("🏂"),
"", err(""), err(""),
"", err(""), err(""),
"", err(""), err(""),
"❄︎", err("❄︎"), err("❄︎"),
err("\u{fe0e}"), err("\u{fe0e}"), err("\u{fe0e}"),
"⛄️", err("⛄️"), err("⛄️"),
err("\u{fe0f}"), err("\u{fe0f}"), err("\u{fe0f}"),
"❄️", err("❄️"), err("❄️"),
err("\u{fe0f}"), err("\u{fe0f}"), err("\u{fe0f}"),
replacementCharacter, err(replacementCharacter), err(replacementCharacter),
"\u{20}",
replacementCharacter, err(replacementCharacter), err(replacementCharacter),
replacementCharacter, err(replacementCharacter), err(replacementCharacter),
]
expectEqualSequence(
winterUtf8Characters,
winter.utf8.indices.map {
(i:String.Index) -> Character? in mapIndex(i, winter).map {
winter[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(winter.utf8.endIndex, winter))
expectEqual(
winter.endIndex,
mapIndex(winter.utf8.endIndex, winter)!)
expectEqualSequence(
summerBytes.map { Character(UnicodeScalar($0)) },
summer.utf8.indices.map { summer[mapIndex($0, summer)!] }
)
expectNotNil(mapIndex(summer.utf8.endIndex, summer))
expectEqual(
summer.endIndex,
mapIndex(summer.utf8.endIndex, summer)!)
}
tests.test("index-mapping/utf16-to-character/\(id)") {
let winterUtf16Characters: [Character?] = [
"🏂",
// Prior to UTF-8 String, this tested for empty array in "legacy mode" or
// the replacemnet character otherwise. However, SE-0180 (String Index
// Overhual) dictates subscript behavior should treat it as emergent
// behavior from its encoded offset, hence we should get the same 3 code
// units as prior for non-scalar-aligned UTF-16 offsets applied to the
// UTF-8 view. Under a mixed-encoding String model, we necessarily have to
// clamp all indices to the nearest prior scalar boundary...
//
// Old code:
// err(replacementCharacter),
err("🏂"),
"", "", "", "❄︎", err("\u{fe0e}"),
"⛄️", err("\u{fe0f}"), "❄️", err("\u{fe0f}"),
replacementCharacter, "\u{20}", replacementCharacter, replacementCharacter
]
expectEqualSequence(
winterUtf16Characters,
winter.utf16.indices.map {
i in mapIndex(i, winter).map {
winter[$0]
}
}, sameValue: ==)
expectNotNil(mapIndex(winter.utf16.endIndex, winter))
expectEqual(
winter.endIndex,
mapIndex(winter.utf16.endIndex, winter)!)
expectEqualSequence(
summerBytes.map { Character(UnicodeScalar($0)) },
summer.utf16.indices.map {
summer[mapIndex($0, summer)!]
}
)
expectNotNil(mapIndex(summer.utf16.endIndex, summer))
expectEqual(
summer.endIndex,
mapIndex(summer.utf16.endIndex, summer)!)
}
}
checkToCharacter("legacy") { $0.samePosition(in: $1) }
checkToCharacter("interchange") { i, _ in i }
//===----------------------------------------------------------------------===//
// These are rather complicated due to their internal buffers, so
// rigorous tests are required
tests.test("UTF8 indexes") {
// Make sure that equivalent UTF8 indices computed in different ways
// are still equal.
//
// CHECK-NEXT: true
let abc = "abcdefghijklmnop"
do {
let start = String.Index(abc.startIndex, within: abc.utf8)
expectEqual(
abc.utf8.index(after: start!),
String.Index(abc.index(after: abc.startIndex), within: abc.utf8))
}
let diverseCharacters = summer + winter + winter + summer
let s = diverseCharacters.unicodeScalars
let u8 = diverseCharacters.utf8
let u16 = diverseCharacters.utf16
//===--- nested for...in loops ------------------------------------------===//
// Test all valid subranges si0..<si1 of positions in s. ds is
// always si0.distance(to: si1)
for si0 in s.indices {
for (ds, si1) in s.indices[si0..<s.endIndex].enumerated() {
// Map those unicode scalar indices into utf8 indices
let u8i1 = si1.samePosition(in: u8)
let u8i0 = si0.samePosition(in: u8)
//===--- while loop -------------------------------------------------===//
// Advance an index from u8i0 over ds Unicode scalars (thus
// reaching u8i1) by counting leading bytes traversed
var u8i0a = u8i0! // <========== NOTE SOURCE COMPATIBILITY BREAKAGE
var dsa = 0 // number of Unicode scalars it has advanced over
while true {
//===--- loop condition -------------------------------------------===//
let b = u8[u8i0a]
let isLeadingByte = !UTF8.isContinuation(b)
if dsa == ds && isLeadingByte { break } //
//===--------------------------------------------------------------===//
expectNotEqual(u8i0a, u8i1) // We're not there yet
if isLeadingByte { // On a unicode scalar boundary?
let u16i0a = u8i0a.samePosition(in: u16)!
// we should be able to round-trip through UTF16
expectEqual(u8i0a, u16i0a.samePosition(in: u8)!)
if UTF16.isLeadSurrogate(u16[u16i0a]) {
// We only have well-formed UTF16 in this string, so the
// successor points to a trailing surrogate of a pair and
// thus shouldn't convert to a UTF8 position
expectNil(u16.index(after: u16i0a).samePosition(in: u8))
}
dsa = dsa.advanced(by: 1) // we're moving off the beginning of a new Unicode scalar
}
else {
expectNil(u8i0a.samePosition(in: u16))
}
u8i0a = u8.index(u8i0a, offsetBy: 1)
}
expectEqual(u8i0a, u8i1) // We should be there now
// Also check some UTF8 positions between unicode scalars for equality
var u8i0b = u8i0a
for n0 in 0..<8 {
var u8i1b = u8i1
for n1 in 0..<8 {
expectEqualTest(u8i0b, u8i1b, sameValue: n0 == n1 ? (==) : (!=))
if u8i1b == u8.endIndex { break }
u8i1b = u8.index(u8i1b!, offsetBy: 1)
}
if u8i0b == u8.endIndex { break }
u8i0b = u8.index(u8i0b, offsetBy: 1)
}
}
}
}
tests.test("index/Comparable")
.forEach(in: [summer, winter]) { str in
checkComparable(str.indices, oracle: <=>)
checkComparable(str.unicodeScalars.indices, oracle: <=>)
checkComparable(str.utf16.indices, oracle: <=>)
checkComparable(str.utf8.indices, oracle: <=>)
}
tests.test("UTF16->String") {
let s = summer + winter + winter + summer
let v = s.utf16
for i in v.indices {
for j in v.indices[i..<v.endIndex] {
if let si = i.samePosition(in: s) {
if let sj = j.samePosition(in: s) {
expectEqual(s[si..<sj], String(v[i..<j])!)
continue
}
}
}
}
}
tests.test("UTF8->String") {
let s = summer + winter + winter + summer
let v = s.utf8
for i in v.indices {
for j in v.indices[i..<v.endIndex] {
if let si = i.samePosition(in: s) {
if let sj = j.samePosition(in: s) {
expectEqual(
s[si..<sj], String(v[i..<j])!,
"\(String(reflecting: s))[\n \(si..<sj)\n] != String(\n \(String(reflecting: v))[\n \(i..<j)\n ])!"
)
continue
}
}
}
}
}
tests.test("UnicodeScalars->String") {
let s = summer + winter + winter + summer
let v = s.unicodeScalars
for i in s.indices {
for j in s.indices[i..<s.endIndex] {
expectEqual(
s[i..<j],
String(v[i.samePosition(in: v)!..<j.samePosition(in: v)!])
)
}
}
}
// Note: Strideable conformance for UTF16View.Index when Foundation is imported
// has been dropped for Swift 4.
tests.test("String.UTF8View/Collection")
.forEach(in: utfTests) {
test in
checkBidirectionalCollection(test.utf8, test.string.utf8)
}
tests.test("String.UTF16View/BidirectionalCollection")
.forEach(in: utfTests) {
test in
checkBidirectionalCollection(test.utf16, test.string.utf16)
}
tests.test("String.UTF32View/BidirectionalCollection")
.forEach(in: utfTests) {
test in
checkBidirectionalCollection(
test.unicodeScalars, test.string.unicodeScalars)
}
tests.test("String View Setters") {
var string = "abcd🤠👨👨👦👦efg"
string.utf8 = winter.utf8
expectEqual(winter, string)
string.utf8 = summer.utf8
expectEqual(summer, string)
string.utf16 = winter.utf16
expectEqual(winter, string)
string.utf16 = summer.utf16
expectEqual(summer, string)
string.unicodeScalars = winter.unicodeScalars
expectEqual(winter, string)
string.unicodeScalars = summer.unicodeScalars
expectEqual(summer, string)
string = winter
expectEqual(winter, string)
string = summer
expectEqual(summer, string)
}
tests.test("Scalar alignment") {
// Misaligned indices were fixed in 5.1
guard _hasSwift_5_1() else { return }
let str = "😀"
let idx = str.utf8.index(after: str.startIndex)
let substr = str[idx...]
expectEqual(str, substr)
checkBidirectionalCollection(str, substr)
checkBidirectionalCollection(str.utf16, substr.utf16)
checkBidirectionalCollection(str.utf8, substr.utf8)
checkBidirectionalCollection(str.unicodeScalars, substr.unicodeScalars)
let idxBeforeLast = str.utf8.index(before: str.endIndex)
let substr2 = str[idx...]
expectEqual(str, substr2)
expectEqual(substr, substr2)
checkBidirectionalCollection(str, substr2)
checkBidirectionalCollection(str.utf16, substr2.utf16)
checkBidirectionalCollection(str.utf8, substr2.utf8)
checkBidirectionalCollection(str.unicodeScalars, substr2.unicodeScalars)
}
runAllTests()