Skip to content

Commit ca19aa8

Browse files
committed
feat: allow --out FILE to be specified for the output from pact verify
1 parent ebea53e commit ca19aa8

File tree

4 files changed

+74
-20
lines changed

4 files changed

+74
-20
lines changed

lib/pact/cli.rb

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class CLI < Thor
1717
method_option :description, aliases: "-d", desc: "Interaction description filter"
1818
method_option :provider_state, aliases: "-s", desc: "Provider state filter"
1919
method_option :format, aliases: "-f", banner: "FORMATTER", desc: "RSpec formatter. Defaults to custom Pact formatter. [j]son may also be used."
20+
method_option :out, aliases: "-o", banner: "FILE", desc: "Write output to a file instead of $stdout."
2021

2122
def verify
2223
require 'pact/cli/run_pact_verification'

lib/pact/cli/run_pact_verification.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def self.call options
1414
new(options).call
1515
end
1616

17-
1817
def call
1918
initialize_rspec
2019
setup_load_path
@@ -71,10 +70,10 @@ def pact_spec_options
7170
{
7271
full_backtrace: options[:backtrace],
7372
criteria: SpecCriteria.call(options),
74-
format: options[:format]
73+
format: options[:format],
74+
out: options[:out]
7575
}
7676
end
77-
7877
end
7978
end
8079
end

lib/pact/provider/pact_spec_runner.rb

+23-15
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,7 @@ def configure_rspec
6262
config.output_stream = Pact.configuration.output_stream
6363
end
6464

65-
Pact::RSpec.with_rspec_3 do
66-
::RSpec.configuration.add_formatter Pact::Provider::RSpec::PactBrokerFormatter, StringIO.new
67-
end
68-
69-
if options[:format]
70-
::RSpec.configuration.add_formatter options[:format]
71-
# Don't want to mess up the JSON parsing with messages to stdout, so send it to stderr
72-
Pact.configuration.output_stream = Pact.configuration.error_stream
73-
else
74-
# Sometimes the formatter set in the cli.rb get set with an output of StringIO.. don't know why
75-
formatter_class = Pact::RSpec.formatter_class
76-
pact_formatter = ::RSpec.configuration.formatters.find {|f| f.class == formatter_class && f.output == ::RSpec.configuration.output_stream}
77-
::RSpec.configuration.add_formatter formatter_class unless pact_formatter
78-
end
79-
::RSpec.configuration.full_backtrace = @options[:full_backtrace]
65+
configure_output
8066

8167
config.before(:suite) do
8268
# Preload app before suite so the classes loaded in memory are consistent for
@@ -138,6 +124,28 @@ def initialize_specs
138124
end
139125
end
140126

127+
def configure_output
128+
Pact::RSpec.with_rspec_3 do
129+
::RSpec.configuration.add_formatter Pact::Provider::RSpec::PactBrokerFormatter, StringIO.new
130+
end
131+
132+
output = options[:out] || Pact.configuration.output_stream
133+
if options[:format]
134+
::RSpec.configuration.add_formatter options[:format], output
135+
if !options[:out]
136+
# Don't want to mess up the JSON parsing with messages to stdout, so send it to stderr
137+
Pact.configuration.output_stream = Pact.configuration.error_stream
138+
end
139+
else
140+
# Sometimes the formatter set in the cli.rb get set with an output of StringIO.. don't know why
141+
formatter_class = Pact::RSpec.formatter_class
142+
pact_formatter = ::RSpec.configuration.formatters.find {|f| f.class == formatter_class && f.output == ::RSpec.configuration.output_stream}
143+
::RSpec.configuration.add_formatter(formatter_class, output) unless pact_formatter
144+
end
145+
146+
::RSpec.configuration.full_backtrace = @options[:full_backtrace]
147+
end
148+
141149
def ordered_pact_json(pact_json)
142150
return pact_json if Pact.configuration.interactions_replay_order == :recorded
143151

spec/integration/cli_spec.rb

+48-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
include Pact::Support::CLI
77

8+
let(:expected_test_output) { "2 interactions, 0 failures" }
9+
810
describe "running a failing test with --backtrace" do
911
let(:command) do
1012
[
@@ -32,7 +34,29 @@
3234
end
3335
end
3436

35-
describe "running with json output" do
37+
describe "running with json output and an output path specified" do
38+
before do
39+
FileUtils.rm_rf 'tmp/foo.json'
40+
end
41+
42+
let(:command) do
43+
[
44+
"bundle exec bin/pact verify",
45+
"--pact-uri spec/support/test_app_pass.json",
46+
"--pact-helper spec/support/pact_helper.rb",
47+
"--format json",
48+
"--out tmp/foo.json"
49+
].join(" ")
50+
end
51+
52+
it "formats the output as json to the specified file" do
53+
output = `#{command}`
54+
expect(JSON.parse(File.read('tmp/foo.json'))["examples"].size).to be > 1
55+
expect(output).to_not include expected_test_output
56+
end
57+
end
58+
59+
describe "running with json output and no output path specified" do
3660
let(:command) do
3761
[
3862
"bundle exec bin/pact verify",
@@ -41,9 +65,31 @@
4165
"--format json"
4266
].join(" ")
4367
end
44-
it "formats the output as json" do
68+
69+
it "formats the output as json to stdout" do
4570
output = `#{command}`
4671
expect(JSON.parse(output)["examples"].size).to be > 1
4772
end
4873
end
74+
75+
describe "running with an output path specified" do
76+
before do
77+
FileUtils.rm_rf 'tmp/foo.out'
78+
end
79+
80+
let(:command) do
81+
[
82+
"bundle exec bin/pact verify",
83+
"--pact-uri spec/support/test_app_pass.json",
84+
"--pact-helper spec/support/pact_helper.rb",
85+
"--out tmp/foo.out"
86+
].join(" ")
87+
end
88+
89+
it "writes the output to the specified path and not to stdout" do
90+
output = `#{command}`
91+
expect(File.read('tmp/foo.out')).to include expected_test_output
92+
expect(output).to_not include expected_test_output
93+
end
94+
end
4995
end

0 commit comments

Comments
 (0)