Skip to content

Commit 8317fe3

Browse files
committed
fix: always execute global and base states
Ensure that global and base states are executed regardless of whether interaction defines a provider state, as described in the docs. Fixes #180
1 parent 08bb2ab commit 8317fe3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lib/pact/provider/test_methods.rb

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

3838
def set_up_provider_states provider_states, consumer, options = {}
39+
# If there are no provider state, execute with an nil state to ensure global and base states are executed
40+
Pact.configuration.provider_state_set_up.call(nil, consumer, options) if provider_states.nil? || provider_states.empty?
3941
provider_states.each do | provider_state |
4042
Pact.configuration.provider_state_set_up.call(provider_state.name, consumer, options.merge(params: provider_state.params))
4143
end
4244
end
4345

4446
def tear_down_provider_states provider_states, consumer, options = {}
47+
# If there are no provider state, execute with an nil state to ensure global and base states are executed
48+
Pact.configuration.provider_state_tear_down.call(nil, consumer, options) if provider_states.nil? || provider_states.empty?
4549
provider_states.reverse.each do | provider_state |
4650
Pact.configuration.provider_state_tear_down.call(provider_state.name, consumer, options.merge(params: provider_state.params))
4751
end

lib/pact/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Remember to bump pact-provider-proxy when this changes major version
22
module Pact
3-
VERSION = "1.36.0"
3+
VERSION = "1.36.1"
44
end

0 commit comments

Comments
 (0)