-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathJoinedTests.swift
147 lines (124 loc) · 4.68 KB
/
JoinedTests.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Algorithms open source project
//
// Copyright (c) 2021 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
//
//===----------------------------------------------------------------------===//
import XCTest
@testable import Algorithms
final class JoinedTests: XCTestCase {
let stringArrays = [
[],
[""],
["", ""],
["foo"],
["foo", "bar"],
["", "", "foo", "", "bar", "baz", ""],
]
func testJoined() {
let expected = ["", "", "", "foo", "foobar", "foobarbaz"]
for (strings, expected) in zip(stringArrays, expected) {
// regular sequence
expectEqualSequences(AnySequence(strings).joined(), expected)
// lazy sequence
expectEqualSequences(AnySequence(strings).lazy.joined(), expected)
// regular collection
expectEqualSequences(strings.joined(), expected)
// lazy collection
expectEqualSequences(
strings.lazy.joined() as FlattenCollection, expected)
}
}
func testJoinedByElement() {
let separator: Character = " "
let expected = ["", "", " ", "foo", "foo bar", " foo bar baz "]
for (strings, expected) in zip(stringArrays, expected) {
expectEqualSequences(
AnySequence(strings).joined(by: separator), expected)
expectEqualSequences(
AnySequence(strings).lazy.joined(by: separator), expected)
expectEqualSequences(strings.joined(by: separator), expected)
expectEqualSequences(strings.lazy.joined(by: separator), expected)
}
}
func testJoinedBySequence() {
let separator = ", "
let expected = ["", "", ", ", "foo", "foo, bar", ", , foo, , bar, baz, "]
for (strings, expected) in zip(stringArrays, expected) {
expectEqualSequences(
AnySequence(strings).joined(by: separator), expected)
expectEqualSequences(
AnySequence(strings).lazy.joined(by: separator), expected)
expectEqualSequences(strings.joined(by: separator), expected)
expectEqualSequences(strings.lazy.joined(by: separator), expected)
}
}
func testJoinedByElementClosure() {
let separator = { (left: String, right: String) -> Character in
left.isEmpty || right.isEmpty ? " " : "-"
}
let expected = ["", "", " ", "foo", "foo-bar", " foo bar-baz "]
for (strings, expected) in zip(stringArrays, expected) {
expectEqualSequences(
AnySequence(strings).joined(by: separator), expected)
expectEqualSequences(
AnySequence(strings).lazy.joined(by: separator), expected)
expectEqualSequences(strings.joined(by: separator), expected)
expectEqualSequences(strings.lazy.joined(by: separator), expected)
}
}
func testJoinedBySequenceClosure() {
let separator = { (left: String, right: String) in
"(\(left.count), \(right.count))"
}
let expected = [
"",
"",
"(0, 0)",
"foo",
"foo(3, 3)bar",
"(0, 0)(0, 3)foo(3, 0)(0, 3)bar(3, 3)baz(3, 0)",
]
for (strings, expected) in zip(stringArrays, expected) {
expectEqualSequences(
AnySequence(strings).joined(by: separator), expected)
expectEqualSequences(
AnySequence(strings).lazy.joined(by: separator), expected)
expectEqualSequences(strings.joined(by: separator), expected)
expectEqualSequences(strings.lazy.joined(by: separator), expected)
}
}
func testJoinedLazy() {
requireLazySequence(AnySequence([[1], [2]]).lazy.joined())
requireLazySequence(AnySequence([[1], [2]]).lazy.joined(by: 1))
requireLazySequence(
AnySequence([[1], [2]]).lazy.joined(by: { _, _ in 1 }))
requireLazyCollection([[1], [2]].lazy.joined())
requireLazyCollection([[1], [2]].lazy.joined(by: 1))
requireLazyCollection([[1], [2]].lazy.joined(by: { _, _ in 1 }))
}
func testJoinedIndexTraversals() {
let validator = IndexValidator<FlattenCollection<[String]>>()
// the last test case takes too long to run
for strings in stringArrays.dropLast() {
validator.validate(strings.joined() as FlattenCollection)
}
}
func testJoinedByIndexTraversals() {
let validator1 = IndexValidator<JoinedByCollection<[String], String>>()
let validator2 = IndexValidator<
JoinedByClosureCollection<[String], String>
>()
// the last test case takes too long to run
for (strings, separator) in product(
stringArrays.dropLast(), ["", " ", ", "])
{
validator1.validate(strings.joined(by: separator))
validator2.validate(strings.lazy.joined(by: { _, _ in separator }))
}
}
}