-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathreduce_if_else_spec.rb
60 lines (45 loc) · 1.43 KB
/
reduce_if_else_spec.rb
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
require 'spec_helper'
require 'test_doubles'
RSpec.describe LightService::Organizer do
class TestReduceIfElse
extend LightService::Organizer
def self.call(context)
with(context).reduce(actions)
end
def self.actions
[
TestDoubles::AddsOneAction,
reduce_if_else(
->(ctx) { ctx.number == 1 },
[TestDoubles::AddsOneAction],
[TestDoubles::AddsTwoAction]
)
]
end
end
let(:empty_context) { LightService::Context.make }
it 'reduces the if_steps if the condition is true' do
result = TestReduceIfElse.call(:number => 0)
expect(result).to be_success
expect(result[:number]).to eq(2)
end
it 'reduces the else_steps if the condition is false' do
result = TestReduceIfElse.call(:number => 2)
expect(result).to be_success
expect(result[:number]).to eq(5)
end
it 'will not reduce over a failed context' do
empty_context.fail!('Something bad happened')
result = TestReduceIfElse.call(empty_context)
expect(result).to be_failure
end
it 'does not reduce over a skipped context' do
empty_context.skip_remaining!('No more needed')
result = TestReduceIfElse.call(empty_context)
expect(result).to be_success
end
it "knows that it's being conditionally reduced from within an organizer" do
result = TestReduceIfElse.call(:number => 2)
expect(result.organized_by).to eq TestReduceIfElse
end
end