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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
module Concurrent
RSpec.describe 'dataflow' do
let(:executor) { ImmediateExecutor.new }
let(:root_executor) { SimpleExecutorService.new }
it 'raises an exception when no block given' do
expect { Concurrent::dataflow }.to raise_error(ArgumentError)
expect { Concurrent::dataflow_with(root_executor) }.to raise_error(ArgumentError)
end
specify '#dataflow uses the global fast executor' do
input = Future.execute{0}
expect(Concurrent).to receive(:dataflow_with).once.
with(Concurrent.global_io_executor, input)
Concurrent::dataflow(input){0}
end
specify '#dataflow_with uses the given executor' do
input = Future.execute{0}
result = Future.new{0}
expect(Future).to receive(:new).with(executor: root_executor).and_return(result)
Concurrent::dataflow_with(root_executor, input){0}
end
specify '#dataflow_with raises an exception when no executor given' do
expect {
Concurrent::dataflow_with(nil){ nil }
}.to raise_error(ArgumentError)
end
it 'accepts zero or more dependencies' do
Concurrent::dataflow(){0}
Concurrent::dataflow(Future.execute{0}){0}
Concurrent::dataflow(Future.execute{0}, Future.execute{0}){0}
Concurrent::dataflow_with(root_executor, ){0}
Concurrent::dataflow_with(root_executor, Future.execute{0}){0}
Concurrent::dataflow_with(root_executor, Future.execute{0}, Future.execute{0}){0}
end
it 'accepts uncompleted dependencies' do
d = Future.new(executor: executor){0}
Concurrent::dataflow(d){0}
d.execute
d = Future.new(executor: executor){0}
Concurrent::dataflow_with(root_executor, d){0}
d.execute
end
it 'accepts completed dependencies' do
d = Future.new(executor: executor){0}
d.execute
Concurrent::dataflow(d){0}
d = Future.new(executor: executor){0}
d.execute
Concurrent::dataflow_with(root_executor, d){0}
end
it 'raises an exception if any dependencies are not IVars' do
expect { Concurrent::dataflow(nil) }.to raise_error(ArgumentError)
expect { Concurrent::dataflow(Future.execute{0}, nil) }.to raise_error(ArgumentError)
expect { Concurrent::dataflow(nil, Future.execute{0}) }.to raise_error(ArgumentError)
expect { Concurrent::dataflow_with(root_executor, nil) }.to raise_error(ArgumentError)
expect { Concurrent::dataflow_with(root_executor, Future.execute{0}, nil) }.to raise_error(ArgumentError)
expect { Concurrent::dataflow_with(root_executor, nil, Future.execute{0}) }.to raise_error(ArgumentError)
end
it 'doesn\'t raise exceptions from dependencies, unless called with !' do
d1 = Concurrent::dataflow { raise 'd1 error' }
d2 = Concurrent::dataflow { raise 'd2 error' }
f = Concurrent::dataflow!(d1, d2) { |d1v, d2v| [d1v, d2v] }
expect { f.value! }.to raise_error(RuntimeError).with_message('d1 error')
d1 = Concurrent::dataflow { raise 'd1 error' }
d2 = Concurrent::dataflow { raise 'd2 error' }
f = Concurrent::dataflow(d1, d2) { |d1v, d2v| [d1v, d2v] }
expect { f.value! }.to_not raise_error
end
it 'returns a Future' do
expect(Concurrent::dataflow{0}).to be_a(Future)
expect(Concurrent::dataflow{0}).to be_a(Future)
end
context 'does not schedule the Future' do
specify 'if no dependencies are completed' do
d = Future.new(executor: executor){0}
f = Concurrent::dataflow(d){0}
expect(f).to be_unscheduled
d.execute
d = Future.new(executor: executor){0}
f = Concurrent::dataflow_with(root_executor, d){0}
expect(f).to be_unscheduled
d.execute
end
specify 'if one dependency of two is completed' do
d1 = Future.new(executor: executor){0}
d2 = Future.new(executor: executor){0}
f = Concurrent::dataflow(d1, d2){0}
d1.execute
expect(f).to be_unscheduled
d2.execute
d1 = Future.new(executor: executor){0}
d2 = Future.new(executor: executor){0}
f = Concurrent::dataflow_with(root_executor, d1, d2){0}
d1.execute
expect(f).to be_unscheduled
d2.execute
end
end
context 'schedules the Future when all dependencies are available' do
specify 'if there is just one' do
d = Future.new(executor: executor){0}
f = Concurrent::dataflow(d){0}
d.execute
expect(f.value).to eq 0
d = Future.new(executor: executor){0}
f = Concurrent::dataflow_with(root_executor, d){0}
d.execute
expect(f.value).to eq 0
end
specify 'if there is more than one' do
d1 = Future.new(executor: executor){0}
d2 = Future.new(executor: executor){0}
f = Concurrent::dataflow(d1, d2){0}
d1.execute
d2.execute
expect(f.value).to eq 0
d1 = Future.new(executor: executor){0}
d2 = Future.new(executor: executor){0}
f = Concurrent::dataflow_with(root_executor, d1, d2){0}
d1.execute
d2.execute
expect(f.value).to eq 0
end
end
context 'counts already executed dependencies' do
specify 'if there is just one' do
d = Future.new(executor: executor){0}
d.execute
f = Concurrent::dataflow(d){0}
expect(f.value).to eq 0
d = Future.new(executor: executor){0}
d.execute
f = Concurrent::dataflow_with(root_executor, d){0}
expect(f.value).to eq 0
end
specify 'if there is more than one' do
d1 = Future.new(executor: executor){0}
d2 = Future.new(executor: executor){0}
d1.execute
d2.execute
f = Concurrent::dataflow(d1, d2){0}
expect(f.value).to eq 0
d1 = Future.new(executor: executor){0}
d2 = Future.new(executor: executor){0}
d1.execute
d2.execute
f = Concurrent::dataflow_with(root_executor, d1, d2){0}
expect(f.value).to eq 0
end
end
context 'passes the values of dependencies into the block' do
specify 'if there is just one' do
d = Future.new(executor: executor){14}
f = Concurrent::dataflow(d){|v| v }
d.execute
expect(f.value).to eq 14
d = Future.new(executor: executor){14}
f = Concurrent::dataflow_with(root_executor, d){|v| v }
d.execute
expect(f.value).to eq 14
end
specify 'if there is more than one' do
d1 = Future.new(executor: executor){14}
d2 = Future.new(executor: executor){2}
f = Concurrent::dataflow(d1, d2) {|v1, v2| v1 + v2}
d1.execute
d2.execute
expect(f.value).to eq 16
d1 = Future.new(executor: executor){14}
d2 = Future.new(executor: executor){2}
f = Concurrent::dataflow_with(root_executor, d1, d2) {|v1, v2| v1 + v2}
d1.execute
d2.execute
expect(f.value).to eq 16
end
end
context 'module function' do
it 'can be called as Concurrent.dataflow and Concurrent.dataflow_with' do
def fib_with_dot(n)
if n < 2
Concurrent.dataflow { n }
else
n1 = fib_with_dot(n - 1)
n2 = fib_with_dot(n - 2)
Concurrent.dataflow_with(ImmediateExecutor.new, n1, n2) { n1.value + n2.value }
end
end
expected = fib_with_dot(7)
expect(expected.value).to eq 13
end
end
end
end
|