mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Doing so is safe even though we have mock SDK. The include paths for modules with the same name in the real and mock SDKs are different, and the module files will be distinct (because they will have a different hash). This reduces test runtime on OS X by 30% and brings it under a minute on a 16-core machine. This also uncovered some problems with some tests -- even when run for iOS configurations, some tests would still run with macosx triple. I fixed the tests where I noticed this issue. rdar://problem/19125022 Swift SVN r23683
232 lines
6.7 KiB
Swift
232 lines
6.7 KiB
Swift
//===--- UnicodeTrie.swift.gyb --------------------------------*- swift -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// RUN: rm -rf %t && mkdir -p %t && %S/../../utils/gyb -DunicodeGraphemeBreakPropertyFile=%S/../../utils/UnicodeData/GraphemeBreakProperty.txt -DunicodeGraphemeBreakTestFile=%S/../../utils/UnicodeData/GraphemeBreakTest.txt %s -o %t/UnicodeTrie.swift
|
|
// RUN: %S/../../utils/line-directive %t/UnicodeTrie.swift -- %target-build-swift %t/UnicodeTrie.swift -o %t/a.out -g -Xfrontend -disable-access-control
|
|
// RUN: %target-run %t/a.out
|
|
|
|
%{
|
|
|
|
from GYBUnicodeDataUtils import *
|
|
|
|
grapheme_cluster_break_property_table = \
|
|
GraphemeClusterBreakPropertyTable(unicodeGraphemeBreakPropertyFile)
|
|
|
|
}%
|
|
|
|
import StdlibUnittest
|
|
import Darwin
|
|
import Foundation
|
|
|
|
var graphemeBreakPropertyTable = [
|
|
// 'as Int' annotations are needed to help prevent the type-checker from
|
|
// blowing the stack. <rdar://problem/17539704>
|
|
% for start_code_point,end_code_point,value in grapheme_cluster_break_property_table.property_value_ranges:
|
|
(${start_code_point} as Int, ${end_code_point} as Int, _GraphemeClusterBreakPropertyValue.${value}),
|
|
% end
|
|
]
|
|
|
|
var UnicodeTrie = TestSuite("UnicodeTrie")
|
|
|
|
UnicodeTrie.test("_UnicodeGraphemeClusterBreakPropertyTrie") {
|
|
// Verify that the trie reports correct values of the property for every code
|
|
// point.
|
|
|
|
var trie = _UnicodeGraphemeClusterBreakPropertyTrie()
|
|
|
|
var expected = [_GraphemeClusterBreakPropertyValue](count: 0x110000,
|
|
repeatedValue: _GraphemeClusterBreakPropertyValue.Other)
|
|
for (startCodePoint, endCodePoint, value) in graphemeBreakPropertyTable {
|
|
for cp in startCodePoint...endCodePoint {
|
|
expected[cp] = value
|
|
}
|
|
}
|
|
|
|
for cp in UInt32(0)...UInt32(0x10ffff) {
|
|
if cp % 0x10000 == 0 {
|
|
println("\(cp)...")
|
|
}
|
|
expectEqual(expected[Int(cp)], trie.getPropertyValue(cp)) {
|
|
"code point \(cp)"
|
|
}
|
|
}
|
|
}
|
|
|
|
%{
|
|
|
|
grapheme_cluster_break_tests = \
|
|
get_grapheme_cluster_break_tests_as_unicode_scalars(unicodeGraphemeBreakTestFile)
|
|
|
|
}%
|
|
|
|
struct ArraySinkOf<T> : SinkType {
|
|
init() {}
|
|
|
|
init(_ array: [T]) {
|
|
self.array = array
|
|
}
|
|
|
|
mutating func put(x: T) {
|
|
array.append(x)
|
|
}
|
|
|
|
var array: [T] = []
|
|
}
|
|
|
|
// The most simple subclass of NSString that CoreFoundation does not know
|
|
// about.
|
|
class NonContiguousNSString : NSString {
|
|
override init() {
|
|
_value = []
|
|
super.init()
|
|
}
|
|
|
|
required init(coder aDecoder: NSCoder) {
|
|
fatalError("don't call this initializer")
|
|
}
|
|
|
|
init(_ value: [UInt16]) {
|
|
_value = value
|
|
super.init()
|
|
}
|
|
|
|
convenience init(_ scalars: [UInt32]) {
|
|
var encoded = ArraySinkOf<UInt16>()
|
|
var g = scalars.generate()
|
|
let hadError =
|
|
transcode(UTF32.self, UTF16.self, g, &encoded, stopOnError: true)
|
|
expectFalse(hadError)
|
|
self.init(encoded.array)
|
|
}
|
|
|
|
@objc override func copyWithZone(zone: NSZone) -> AnyObject {
|
|
// Ensure that copying this string produces a class that CoreFoundation
|
|
// does not know about.
|
|
return self
|
|
}
|
|
|
|
@objc override var length: Int {
|
|
return _value.count
|
|
}
|
|
|
|
@objc override func characterAtIndex(index: Int) -> unichar {
|
|
return _value[index]
|
|
}
|
|
|
|
var _value: [UInt16]
|
|
}
|
|
|
|
/// Verify that extended grapheme cluster boundaries in `subject` occur at
|
|
/// positions specified in `expectedBoundaries`.
|
|
func checkGraphemeClusterSegmentation(
|
|
expectedBoundaries: [Int], subject: String, stackTrace: SourceLocStack
|
|
) {
|
|
var actualBoundaries: [Int] = [ 0 ]
|
|
var unicodeScalarCount = 0
|
|
for c in subject {
|
|
let currentClusterSize = count(String(c).unicodeScalars)
|
|
unicodeScalarCount += currentClusterSize
|
|
actualBoundaries += [ unicodeScalarCount ]
|
|
}
|
|
expectEqual(expectedBoundaries, actualBoundaries,
|
|
stackTrace: stackTrace.withCurrentLoc()) {
|
|
"scalars: \(asHex(lazy(subject.unicodeScalars).map { $0.value }.array))"
|
|
}
|
|
|
|
var expectedCharacters: [Character] = Array(subject)
|
|
checkSliceableWithBidirectionalIndex(expectedCharacters, subject,
|
|
stackTrace.withCurrentLoc())
|
|
}
|
|
|
|
func checkGraphemeClusterSegmentation(
|
|
expectedBoundaries: [Int], #scalars: [UInt32], stackTrace: SourceLocStack
|
|
) {
|
|
let subject: String = NonContiguousNSString(scalars)
|
|
checkGraphemeClusterSegmentation(expectedBoundaries, subject,
|
|
stackTrace.withCurrentLoc())
|
|
}
|
|
|
|
func checkGraphemeClusterSegmentation(
|
|
expectedBoundaries: [Int], #codeUnits: [UInt16], stackTrace: SourceLocStack
|
|
) {
|
|
let subject: String = NonContiguousNSString(codeUnits)
|
|
checkGraphemeClusterSegmentation(expectedBoundaries, subject,
|
|
stackTrace.withCurrentLoc())
|
|
}
|
|
|
|
UnicodeTrie.test("GraphemeClusterSegmentation/UnicodeSpec") {
|
|
// Test segmentation algorithm using test data from the Unicode
|
|
// specification.
|
|
|
|
% for code_points,expected_boundaries in grapheme_cluster_break_tests:
|
|
if true {
|
|
let scalars: [UInt32] =
|
|
[ ${", ".join([ str(cp) for cp in code_points ])} ]
|
|
let expectedBoundaries: [Int] =
|
|
[ ${", ".join([ str(x) for x in expected_boundaries ])} ]
|
|
checkGraphemeClusterSegmentation(expectedBoundaries, scalars: scalars,
|
|
SourceLocStack().withCurrentLoc())
|
|
}
|
|
|
|
% end
|
|
}
|
|
|
|
UnicodeTrie.test("GraphemeClusterSegmentation/Extra") {
|
|
// Extra tests for input Strings that contain ill-formed code unit sequences.
|
|
|
|
// U+D800 (high-surrogate)
|
|
checkGraphemeClusterSegmentation(
|
|
[ 0, 1 ],
|
|
codeUnits: [ 0xd800 ],
|
|
SourceLocStack().withCurrentLoc())
|
|
|
|
// U+D800 (high-surrogate)
|
|
// U+D800 (high-surrogate)
|
|
checkGraphemeClusterSegmentation(
|
|
[ 0, 1, 2 ],
|
|
codeUnits: [ 0xd800, 0xd800 ],
|
|
SourceLocStack().withCurrentLoc())
|
|
|
|
// U+0041 LATIN CAPITAL LETTER A
|
|
// U+D800 (high-surrogate)
|
|
checkGraphemeClusterSegmentation(
|
|
[ 0, 1, 2 ],
|
|
codeUnits: [ 0x0041, 0xd800 ],
|
|
SourceLocStack().withCurrentLoc())
|
|
|
|
// U+D800 (high-surrogate)
|
|
// U+0041 LATIN CAPITAL LETTER A
|
|
checkGraphemeClusterSegmentation(
|
|
[ 0, 1, 2 ],
|
|
codeUnits: [ 0xd800, 0x0041 ],
|
|
SourceLocStack().withCurrentLoc())
|
|
|
|
// U+0041 LATIN CAPITAL LETTER A
|
|
// U+0301 COMBINING ACUTE ACCENT
|
|
// U+D800 (high-surrogate)
|
|
checkGraphemeClusterSegmentation(
|
|
[ 0, 2, 3 ],
|
|
codeUnits: [ 0x0041, 0x0301, 0xd800 ],
|
|
SourceLocStack().withCurrentLoc())
|
|
|
|
// U+D800 (high-surrogate)
|
|
// U+0041 LATIN CAPITAL LETTER A
|
|
// U+0301 COMBINING ACUTE ACCENT
|
|
checkGraphemeClusterSegmentation(
|
|
[ 0, 1, 3 ],
|
|
codeUnits: [ 0xd800, 0x0041, 0x0301 ],
|
|
SourceLocStack().withCurrentLoc())
|
|
}
|
|
|
|
runAllTests()
|
|
|