Skip to content

Commit cbad0be

Browse files
committed
feat(v3): support set up and tear down of multiple provider states
1 parent 6207520 commit cbad0be

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

lib/pact/provider/rspec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ def describe_interaction interaction, options
8484
before do | example |
8585
interaction_context.run_once :before do
8686
Pact.configuration.logger.info "Running example '#{Pact::RSpec.full_description(example)}'"
87-
set_up_provider_state interaction.provider_state, options[:consumer]
87+
set_up_provider_states interaction.provider_states, options[:consumer]
8888
replay_interaction interaction, options[:request_customizer]
8989
interaction_context.last_response = last_response
9090
end
9191
end
9292

9393
after do
9494
interaction_context.run_once :after do
95-
tear_down_provider_state interaction.provider_state, options[:consumer]
95+
tear_down_provider_states interaction.provider_states, options[:consumer]
9696
end
9797
end
9898

lib/pact/provider/test_methods.rb

+8-4
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,16 @@ def parse_body_from_response rack_response
3535
end
3636
end
3737

38-
def set_up_provider_state provider_state_name, consumer, options = {}
39-
Pact.configuration.provider_state_set_up.call(provider_state_name, consumer, options)
38+
def set_up_provider_states provider_states, consumer, options = {}
39+
provider_states.each do | provider_state |
40+
Pact.configuration.provider_state_set_up.call(provider_state.name, consumer, options.merge(params: provider_state.params))
41+
end
4042
end
4143

42-
def tear_down_provider_state provider_state_name, consumer, options = {}
43-
Pact.configuration.provider_state_tear_down.call(provider_state_name, consumer, options)
44+
def tear_down_provider_states provider_states, consumer, options = {}
45+
provider_states.reverse.each do | provider_state |
46+
Pact.configuration.provider_state_tear_down.call(provider_state.name, consumer, options.merge(params: provider_state.params))
47+
end
4448
end
4549

4650
def set_metadata example, key, value

0 commit comments

Comments
 (0)