-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathTaskSeq.Zip.Tests.fs
More file actions
134 lines (104 loc) · 4.02 KB
/
TaskSeq.Zip.Tests.fs
File metadata and controls
134 lines (104 loc) · 4.02 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
module TaskSeq.Tests.Zip
open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling
open FSharp.Control
//
// TaskSeq.zip
//
module EmptySeq =
[<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 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) |]
}