Sha256: 3b43ce86a87faff82c4a5d680f81c24606773e83b629b2b96633e33f9d997244
Contents?: true
Size: 1.47 KB
Versions: 10
Compression:
Stored size: 1.47 KB
Contents
# All of these pacts have the same underlying pact_version_sha (content) # No point verifying them multiple times, so squash all the relevant info into one # "verifiable pact" module PactBroker module Pacts module SquashPactsForVerification def self.call(provider_version_tags, provider_version_branch, selected_pact, include_pending_status = false) domain_pact = selected_pact.pact if include_pending_status pending_provider_tags = [] pending = nil if provider_version_branch pending = domain_pact.pending_for_provider_branch?(provider_version_branch) elsif provider_version_tags.any? pending_provider_tags = domain_pact.select_pending_provider_version_tags(provider_version_tags) pending = pending_provider_tags.any? else pending = domain_pact.pending_for_any_provider_branch? end non_pending_provider_tags = provider_version_tags - pending_provider_tags VerifiablePact.new( domain_pact, selected_pact.selectors, pending, pending_provider_tags, non_pending_provider_tags, provider_version_branch ) else VerifiablePact.new( domain_pact, selected_pact.selectors ) end end def squash_pacts_for_verification(*args) SquashPactsForVerification.call(*args) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems