Skip to content

Commit

Permalink
fix: correctly calculate exit code when a mix of pending and non pend…
Browse files Browse the repository at this point in the history
…ing pacts are verified

Closes: #223
  • Loading branch information
bethesque committed Sep 26, 2020
1 parent aa9e7cb commit 533faa1
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 16 deletions.
4 changes: 4 additions & 0 deletions lib/pact/provider/pact_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ def pact_hash
@pact_hash ||= JSON.load(pact_json, nil, { max_nesting: 50 })
end

def pending?
uri.metadata[:pending]
end

def hal_entity
http_client_keys = [:username, :password, :token]
http_client_options = uri.options.reject{ |k, _| !http_client_keys.include?(k) }
Expand Down
15 changes: 4 additions & 11 deletions lib/pact/provider/pact_spec_runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
require 'pact/provider/rspec/pact_broker_formatter'
require 'pact/provider/rspec/json_formatter'
require 'pact/provider/rspec'
require 'pact/provider/rspec/calculate_exit_code'

module Pact
module Provider
Expand Down Expand Up @@ -79,6 +80,7 @@ def configure_rspec
executing_with_ruby = executing_with_ruby?

config.after(:suite) do | suite |
Pact.provider_world.failed_examples = suite.reporter.failed_examples
Pact::Provider::Help::Write.call(Pact.provider_world.pact_sources) if executing_with_ruby
end
end
Expand All @@ -90,7 +92,8 @@ def run_specs
::RSpec::Core::CommandLine.new(NoConfigurationOptions.new)
.run(::RSpec.configuration.output_stream, ::RSpec.configuration.error_stream)
end
pending_mode? ? 0 : exit_code

Pact::Provider::RSpec::CalculateExitCode.call(pact_sources, Pact.provider_world.failed_examples)
end

def rspec_runner_options
Expand Down Expand Up @@ -147,8 +150,6 @@ def configure_output
end

::RSpec.configuration.full_backtrace = @options[:full_backtrace]

::RSpec.configuration.failure_color = :yellow if pending_mode?
end

def ordered_pact_json(pact_json)
Expand All @@ -159,20 +160,12 @@ def ordered_pact_json(pact_json)
consumer_contract.to_json
end

def all_pacts_pending?
pact_urls.all?{ | pact_url| pact_url.metadata[:pending] }
end

def class_exists? name
Kernel.const_get name
rescue NameError
false
end

def pending_mode?
(all_pacts_pending? || options[:ignore_failures])
end

def executing_with_ruby?
ENV['PACT_EXECUTING_LANGUAGE'] == 'ruby'
end
Expand Down
18 changes: 18 additions & 0 deletions lib/pact/provider/rspec/calculate_exit_code.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module Pact
module Provider
module RSpec
module CalculateExitCode
def self.call(pact_sources, failed_examples)
any_non_pending_failures = pact_sources.any? do |pact_source|
if pact_source.pending?
nil
else
failed_examples.select { |e| e.metadata[:pact_source] == pact_source }.any?
end
end
any_non_pending_failures ? 1 : 0
end
end
end
end
end
10 changes: 6 additions & 4 deletions lib/pact/provider/rspec/formatter_rspec_3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,14 @@ def print_rerun_commands summary
interaction_rerun_commands(pending_interaction_examples(summary)).each do | message |
output.puts(message)
end
set_rspec_failure_color(:red)
end

set_rspec_failure_color(:red)
output.puts("\nFailed interactions:\n\n")
interaction_rerun_commands(failed_interaction_examples(summary)).each do | message |
output.puts(message)
if failed_interactions_count(summary) > 0
output.puts("\nFailed interactions:\n\n")
interaction_rerun_commands(failed_interaction_examples(summary)).each do | message |
output.puts(message)
end
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/pact/provider/world.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def self.clear_provider_world
module Provider
class World

attr_accessor :pact_sources
attr_accessor :pact_sources, :failed_examples

def provider_states
@provider_states_proxy ||= Pact::Provider::State::ProviderStateProxy.new
Expand Down
56 changes: 56 additions & 0 deletions spec/lib/pact/provider/rspec/calculate_exit_code_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
require 'pact/provider/rspec/calculate_exit_code'

module Pact
module Provider
module RSpec
module CalculateExitCode
describe ".call" do
let(:pact_source_1) { double('pact_source_1', pending?: pending_1) }
let(:pending_1) { nil }
let(:pact_source_2) { double('pact_source_2', pending?: pending_2) }
let(:pending_2) { nil }
let(:pact_source_3) { double('pact_source_3', pending?: pending_3) }
let(:pending_3) { nil }
let(:pact_sources) { [pact_source_1, pact_source_2, pact_source_3]}

let(:failed_examples) { [ example_1, example_2, example_3 ] }
let(:example_1) { double('example_1', metadata: { pact_source: pact_source_1 }) }
let(:example_2) { double('example_2', metadata: { pact_source: pact_source_1 }) }
let(:example_3) { double('example_3', metadata: { pact_source: pact_source_2 }) }

subject { CalculateExitCode.call(pact_sources, failed_examples ) }

context "when all pacts are pending" do
let(:pending_1) { true }
let(:pending_2) { true }
let(:pending_3) { true }

it "returns 0" do
expect(subject).to eq 0
end
end

context "when a non pending pact has no failures" do
let(:pending_1) { true }
let(:pending_2) { true }
let(:pending_3) { false }

it "returns 0" do
expect(subject).to eq 0
end
end

context "when a non pending pact no failures" do
let(:pending_1) { true }
let(:pending_2) { false }
let(:pending_3) { false }

it "returns 1" do
expect(subject).to eq 1
end
end
end
end
end
end
end

0 comments on commit 533faa1

Please sign in to comment.