Skip to content

Commit de267bd

Browse files
committed
feat: allow host of mock service to be specified
closes: #186
1 parent 7f0357d commit de267bd

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

lib/pact/consumer/configuration/mock_service.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ class MockService
1111

1212
extend Pact::DSL
1313

14-
attr_accessor :port, :standalone, :verify, :provider_name, :consumer_name, :pact_specification_version
14+
attr_accessor :port, :host, :standalone, :verify, :provider_name, :consumer_name, :pact_specification_version
1515

1616
def initialize name, consumer_name, provider_name
1717
@name = name
1818
@consumer_name = consumer_name
1919
@provider_name = provider_name
2020
@port = nil
21+
@host = "localhost"
2122
@standalone = false
2223
@verify = true
2324
@pact_specification_version = '2'
@@ -29,6 +30,10 @@ def port port
2930
self.port = port
3031
end
3132

33+
def host host
34+
self.host = host
35+
end
36+
3237
def standalone standalone
3338
self.standalone = standalone
3439
end
@@ -53,7 +58,7 @@ def finalize
5358

5459
def register_mock_service
5560
unless standalone
56-
url = "http://localhost#{port.nil? ? '' : ":#{port}"}"
61+
url = "http://#{host}#{port.nil? ? '' : ":#{port}"}"
5762
ret = Pact::MockService::AppManager.instance.register_mock_service_for(provider_name, url, mock_service_options)
5863
raise "pact-mock_service(v#{Pact::MockService::VERSION}) does not support 'find available port' feature" unless ret
5964
@port = ret
@@ -73,6 +78,7 @@ def create_consumer_contract_builder
7378
:provider_name => provider_name,
7479
:pactfile_write_mode => Pact.configuration.pactfile_write_mode,
7580
:port => port,
81+
:host => host,
7682
:pact_dir => Pact.configuration.pact_dir
7783
}
7884
Pact::Consumer::ConsumerContractBuilder.new consumer_contract_builder_fields

lib/pact/consumer/consumer_contract_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def initialize(attributes)
2121
pactfile_write_mode: attributes[:pactfile_write_mode].to_s,
2222
pact_dir: attributes.fetch(:pact_dir)
2323
}
24-
@mock_service_client = Pact::MockService::Client.new(attributes[:port])
25-
@mock_service_base_url = "http://localhost:#{attributes[:port]}"
24+
@mock_service_client = Pact::MockService::Client.new(attributes[:port], attributes[:host])
25+
@mock_service_base_url = "http://#{attributes[:host]}:#{attributes[:port]}"
2626
end
2727

2828
def given(provider_state)

lib/pact/consumer/spec_hooks.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def before_all
1515
def before_each example_description
1616
Pact.consumer_world.register_pact_example_ran
1717
Pact.configuration.logger.info "Clearing all expectations"
18-
Pact::MockService::AppManager.instance.ports_of_mock_services.each do | port |
19-
Pact::MockService::Client.clear_interactions port, example_description
18+
Pact::MockService::AppManager.instance.urls_of_mock_services.each do | url |
19+
Pact::MockService::Client.clear_interactions url, example_description
2020
end
2121
end
2222

pact.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
2929
gem.add_runtime_dependency 'term-ansicolor', '~> 1.0'
3030

3131
gem.add_runtime_dependency 'pact-support', '~> 1.8'
32-
gem.add_runtime_dependency 'pact-mock_service', '~> 2.10'
32+
gem.add_runtime_dependency 'pact-mock_service', '~> 3.0'
3333

3434
gem.add_development_dependency 'rake', '~> 10.0.3'
3535
gem.add_development_dependency 'webmock', '~> 3.0'

spec/features/foo_bar_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
has_pact_with "Bar" do
1818
mock_service :bar_service do
1919
pact_specification_version "2"
20+
host "127.0.0.1"
2021
port 4638
2122
end
2223
end

spec/lib/pact/consumer/consumer_contract_builder_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ module Consumer
1616
provider_name: provider_name,
1717
pactfile_write_mode: :overwrite,
1818
port: 2222,
19+
host: 'localhost',
1920
pact_dir: pact_dir)
2021
end
2122

@@ -70,6 +71,7 @@ module Consumer
7071
pact_dir: './spec/pacts',
7172
consumer_name: consumer_name,
7273
provider_name: provider_name,
74+
host: 'localhost',
7375
port: 1234
7476
)
7577
end

0 commit comments

Comments
 (0)