@@ -11,13 +11,14 @@ class MockService
11
11
12
12
extend Pact ::DSL
13
13
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
15
15
16
16
def initialize name , consumer_name , provider_name
17
17
@name = name
18
18
@consumer_name = consumer_name
19
19
@provider_name = provider_name
20
20
@port = nil
21
+ @host = "localhost"
21
22
@standalone = false
22
23
@verify = true
23
24
@pact_specification_version = '2'
@@ -29,6 +30,10 @@ def port port
29
30
self . port = port
30
31
end
31
32
33
+ def host host
34
+ self . host = host
35
+ end
36
+
32
37
def standalone standalone
33
38
self . standalone = standalone
34
39
end
@@ -53,7 +58,7 @@ def finalize
53
58
54
59
def register_mock_service
55
60
unless standalone
56
- url = "http://localhost #{ port . nil? ? '' : ":#{ port } " } "
61
+ url = "http://#{ host } #{ port . nil? ? '' : ":#{ port } " } "
57
62
ret = Pact ::MockService ::AppManager . instance . register_mock_service_for ( provider_name , url , mock_service_options )
58
63
raise "pact-mock_service(v#{ Pact ::MockService ::VERSION } ) does not support 'find available port' feature" unless ret
59
64
@port = ret
@@ -73,6 +78,7 @@ def create_consumer_contract_builder
73
78
:provider_name => provider_name ,
74
79
:pactfile_write_mode => Pact . configuration . pactfile_write_mode ,
75
80
:port => port ,
81
+ :host => host ,
76
82
:pact_dir => Pact . configuration . pact_dir
77
83
}
78
84
Pact ::Consumer ::ConsumerContractBuilder . new consumer_contract_builder_fields
0 commit comments