-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTaskSeq.Zip.Tests.fs
More file actions
193 lines (154 loc) · 6.44 KB
/
TaskSeq.Zip.Tests.fs
File metadata and controls
193 lines (154 loc) · 6.44 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
module TaskSeq.Tests.Zip
open Xunit
open FsUnit.Xunit
open FSharp.Control
//
// TaskSeq.zip
//
module EmptySeq =
[<Fact>]
let ``Null source is invalid`` () =
assertNullArg <| fun () -> TaskSeq.zip null TaskSeq.empty
assertNullArg <| fun () -> TaskSeq.zip TaskSeq.empty null
assertNullArg <| fun () -> TaskSeq.zip null null
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-zip can zip empty sequences v1`` variant =
TaskSeq.zip (Gen.getEmptyVariant variant) (Gen.getEmptyVariant variant)
|> verifyEmpty
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-zip can zip empty sequences v2`` variant =
TaskSeq.zip TaskSeq.empty<int> (Gen.getEmptyVariant variant)
|> verifyEmpty
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-zip can zip empty sequences v3`` variant =
TaskSeq.zip (Gen.getEmptyVariant variant) TaskSeq.empty<int>
|> verifyEmpty
module Immutable =
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-zip zips in correct order`` variant = task {
let one = Gen.getSeqImmutable variant
let two = Gen.getSeqImmutable variant
let combined = TaskSeq.zip one two
let! combined = TaskSeq.toArrayAsync combined
combined
|> Array.forall (fun (x, y) -> x = y)
|> should be True
combined |> should be (haveLength 10)
combined
|> should equal (Array.init 10 (fun x -> x + 1, x + 1))
}
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-zip zips in correct order for differently delayed sequences`` variant = task {
let one = Gen.getSeqImmutable variant
let two = taskSeq { yield! [ 1..10 ] }
let combined = TaskSeq.zip one two
let! combined = TaskSeq.toArrayAsync combined
combined
|> Array.forall (fun (x, y) -> x = y)
|> should be True
combined |> should be (haveLength 10)
combined
|> should equal (Array.init 10 (fun x -> x + 1, x + 1))
}
module SideEffects =
[<Theory; ClassData(typeof<TestSideEffectTaskSeq>)>]
let ``TaskSeq-zip zips can deal with side effects in sequences`` variant = task {
let one = Gen.getSeqWithSideEffect variant
let two = Gen.getSeqWithSideEffect variant
let combined = TaskSeq.zip one two
let! combined = TaskSeq.toArrayAsync combined
combined
|> Array.forall (fun (x, y) -> x = y)
|> should be True
combined |> should be (haveLength 10)
combined
|> should equal (Array.init 10 (fun x -> x + 1, x + 1))
}
[<Theory; ClassData(typeof<TestSideEffectTaskSeq>)>]
let ``TaskSeq-zip zips combine a side-effect-free, and a side-effect-full sequence`` variant = task {
let one = Gen.getSeqWithSideEffect variant
let two = taskSeq { yield! [ 1..10 ] }
let combined = TaskSeq.zip one two
let! combined = TaskSeq.toArrayAsync combined
combined
|> Array.forall (fun (x, y) -> x = y)
|> should be True
combined |> should be (haveLength 10)
combined
|> should equal (Array.init 10 (fun x -> x + 1, x + 1))
}
module Performance =
[<Theory; InlineData 100; InlineData 1_000; InlineData 10_000; InlineData 100_000>]
let ``TaskSeq-zip zips large sequences just fine`` length = task {
let one = Gen.sideEffectTaskSeqMicro 10L<µs> 50L<µs> length
let two = Gen.sideEffectTaskSeq_Sequential length
let combined = TaskSeq.zip one two
let! combined = TaskSeq.toArrayAsync combined
combined
|> Array.forall (fun (x, y) -> x = y)
|> should be True
combined |> should be (haveLength length)
combined |> Array.last |> should equal (length, length)
}
module UnequalLength =
[<Fact>]
let ``TaskSeq-zip stops at shorter first sequence`` () = task {
// documented: "when one sequence is exhausted any remaining elements in the other sequence are ignored"
let short = taskSeq { yield! [ 1..5 ] }
let long = taskSeq { yield! [ 1..10 ] }
let! combined = TaskSeq.zip short long |> TaskSeq.toArrayAsync
combined |> should be (haveLength 5)
combined
|> should equal (Array.init 5 (fun i -> i + 1, i + 1))
}
[<Fact>]
let ``TaskSeq-zip stops at shorter second sequence`` () = task {
// documented: "when one sequence is exhausted any remaining elements in the other sequence are ignored"
let long = taskSeq { yield! [ 1..10 ] }
let short = taskSeq { yield! [ 1..3 ] }
let! combined = TaskSeq.zip long short |> TaskSeq.toArrayAsync
combined |> should be (haveLength 3)
combined
|> should equal (Array.init 3 (fun i -> i + 1, i + 1))
}
[<Fact>]
let ``TaskSeq-zip with first sequence empty returns empty`` () =
// documented: remaining elements in the longer sequence are ignored
let empty = taskSeq { yield! ([]: int list) }
let nonEmpty = taskSeq { yield! [ 1..10 ] }
TaskSeq.zip empty nonEmpty |> verifyEmpty
[<Fact>]
let ``TaskSeq-zip with second sequence empty returns empty`` () =
// documented: remaining elements in the longer sequence are ignored
let nonEmpty = taskSeq { yield! [ 1..10 ] }
let empty = taskSeq { yield! ([]: int list) }
TaskSeq.zip nonEmpty empty |> verifyEmpty
[<Fact>]
let ``TaskSeq-zip with singleton first and longer second returns singleton`` () = task {
let one = taskSeq { yield 42 }
let many = taskSeq { yield! [ 1..10 ] }
let! combined = TaskSeq.zip one many |> TaskSeq.toArrayAsync
combined |> should equal [| (42, 1) |]
}
[<Fact>]
let ``TaskSeq-zip with longer first and singleton second returns singleton`` () = task {
let many = taskSeq { yield! [ 1..10 ] }
let one = taskSeq { yield 99 }
let! combined = TaskSeq.zip many one |> TaskSeq.toArrayAsync
combined |> should equal [| (1, 99) |]
}
module Other =
[<Fact>]
let ``TaskSeq-zip zips different types`` () = task {
let one = taskSeq {
yield "one"
yield "two"
}
let two = taskSeq {
yield 42L
yield 43L
}
let combined = TaskSeq.zip one two
let! combined = TaskSeq.toArrayAsync combined
combined |> should equal [| ("one", 42L); ("two", 43L) |]
}