class Pact::Provider::Configuration::PactVerificationFromBroker
Attributes
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
If user declares a variable with the same name as one of these attributes in parent scope, it will clash with these ones, so put an underscore in front of the name to be safer.
Public Class Methods
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 20 def initialize(provider_name, provider_version_branch, provider_version_tags) @_provider_name = provider_name @_provider_version_branch = provider_version_branch @_provider_version_tags = provider_version_tags @_consumer_version_tags = [] @_consumer_version_selectors = [] @_enable_pending = false @_include_wip_pacts_since = nil @_verbose = false end
Public Instance Methods
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 41 def consumer_version_selectors consumer_version_selectors self._consumer_version_selectors = *consumer_version_selectors end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 45 def enable_pending enable_pending self._enable_pending = enable_pending end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 62 def finalize validate create_pact_verification end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 49 def include_wip_pacts_since since self._include_wip_pacts_since = if since.respond_to?(:xmlschema) since.xmlschema else since end end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 32 def pact_broker_base_url pact_broker_base_url, basic_auth_options = {} self._pact_broker_base_url = pact_broker_base_url self._basic_auth_options = basic_auth_options end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 57 def verbose verbose self._verbose = verbose end
Private Instance Methods
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 106 def convert_consumer_version_selectors _consumer_version_selectors.collect do | selector | selector.each_with_object({}) do | (key, value), new_selector | new_selector[Pact::Utils::String.camelcase(key.to_s).to_sym] = value end end end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 69 def create_pact_verification fetch_pacts = Pact::PactBroker::FetchPactURIsForVerification.new( _provider_name, consumer_version_selectors, _provider_version_branch, _provider_version_tags, _pact_broker_base_url, _basic_auth_options.merge(verbose: _verbose), { include_pending_status: _enable_pending, include_wip_pacts_since: _include_wip_pacts_since } ) Pact.provider_world.add_pact_uri_source fetch_pacts end
# File lib/pact/provider/configuration/pact_verification_from_broker.rb, line 114 def validate raise Pact::Error.new("Please provide a pact_broker_base_url from which to retrieve the pacts") unless _pact_broker_base_url end