-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTaskSeq.Cast.Tests.fs
188 lines (152 loc) · 5.59 KB
/
TaskSeq.Cast.Tests.fs
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
module TaskSeq.Tests.Cast
open System
open Xunit
open FsUnit.Xunit
open FSharp.Control
//
// TaskSeq.box
// TaskSeq.unbox
// TaskSeq.cast
//
/// Asserts that a sequence contains the char values 'A'..'J'.
let validateSequence ts =
ts
|> TaskSeq.toListAsync
|> Task.map (List.map string)
|> Task.map (String.concat "")
|> Task.map (should equal "12345678910")
module EmptySeq =
[<Fact>]
let ``Null source is invalid`` () =
assertNullArg <| fun () -> TaskSeq.box null
assertNullArg <| fun () -> TaskSeq.unbox null
assertNullArg <| fun () -> TaskSeq.cast null
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-box empty`` variant = Gen.getEmptyVariant variant |> TaskSeq.box |> verifyEmpty
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-unbox empty`` variant =
Gen.getEmptyVariant variant
|> TaskSeq.box
|> TaskSeq.unbox<int>
|> verifyEmpty
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-cast empty`` variant =
Gen.getEmptyVariant variant
|> TaskSeq.box
|> TaskSeq.cast<int>
|> verifyEmpty
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-unbox empty to invalid type should not fail`` variant =
Gen.getEmptyVariant variant
|> TaskSeq.box
|> TaskSeq.unbox<Guid> // cannot cast to int, but for empty sequences, the exception won't be thrown
|> verifyEmpty
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
let ``TaskSeq-cast empty to invalid type should not fail`` variant =
Gen.getEmptyVariant variant
|> TaskSeq.box
|> TaskSeq.cast<string> // cannot cast to int, but for empty sequences, the exception won't be thrown
|> verifyEmpty
module Immutable =
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-box`` variant =
Gen.getSeqImmutable variant
|> TaskSeq.box
|> validateSequence
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-unbox`` variant =
Gen.getSeqImmutable variant
|> TaskSeq.box
|> TaskSeq.unbox<int>
|> validateSequence
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-cast`` variant =
Gen.getSeqImmutable variant
|> TaskSeq.box
|> TaskSeq.cast<int>
|> validateSequence
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-unbox invalid type should throw`` variant =
fun () ->
Gen.getSeqImmutable variant
|> TaskSeq.box
|> TaskSeq.unbox<uint> // cannot unbox from int to uint, even though types have the same size
|> TaskSeq.toArrayAsync
|> Task.ignore
|> should throwAsyncExact typeof<InvalidCastException>
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-cast invalid type should throw`` variant =
fun () ->
Gen.getSeqImmutable variant
|> TaskSeq.box
|> TaskSeq.cast<string>
|> TaskSeq.toArrayAsync
|> Task.ignore
|> should throwAsyncExact typeof<InvalidCastException>
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-unbox invalid type should NOT throw before sequence is iterated`` variant =
fun () ->
Gen.getSeqImmutable variant
|> TaskSeq.box
|> TaskSeq.unbox<uint> // no iteration done
|> ignore
|> should not' (throw typeof<Exception>)
[<Theory; ClassData(typeof<TestImmTaskSeq>)>]
let ``TaskSeq-cast invalid type should NOT throw before sequence is iterated`` variant =
fun () ->
Gen.getSeqImmutable variant
|> TaskSeq.box
|> TaskSeq.cast<string> // no iteration done
|> ignore
|> should not' (throw typeof<Exception>)
module SideEffects =
[<Fact>]
let ``TaskSeq-box prove that it has no effect until executed`` () =
let mutable i = 0
let ts = taskSeq {
i <- i + 1 // we should not get here
i <- i + 1
yield 42
i <- i + 1
}
// point of this test: just calling 'box' won't execute anything of the sequence!
let boxed = ts |> TaskSeq.box |> TaskSeq.box |> TaskSeq.box
// no side effect until iterated
i |> should equal 0
boxed
|> TaskSeq.last
|> Task.map (should equal 42)
|> Task.map (fun () -> i = 9)
[<Fact>]
let ``TaskSeq-unbox prove that it has no effect until executed`` () =
let mutable i = 0
let ts = taskSeq {
i <- i + 1 // we should not get here
i <- i + 1
yield box 42
i <- i + 1
}
// point of this test: just calling 'unbox' won't execute anything of the sequence!
let unboxed = ts |> TaskSeq.unbox
// no side effect until iterated
i |> should equal 0
unboxed
|> TaskSeq.last
|> Task.map (should equal 42)
|> Task.map (fun () -> i = 3)
[<Fact>]
let ``TaskSeq-cast prove that it has no effect until executed`` () =
let mutable i = 0
let ts = taskSeq {
i <- i + 1 // we should not get here
i <- i + 1
yield box 42
i <- i + 1
}
// point of this test: just calling 'cast' won't execute anything of the sequence!
let cast = ts |> TaskSeq.cast<int>
i |> should equal 0 // no side effect until iterated
cast
|> TaskSeq.last
|> Task.map (should equal 42)
|> Task.map (fun () -> i = 3)