@@ -10,7 +10,8 @@ module Provider
10
10
module RSpec
11
11
describe Formatter do
12
12
13
- let ( :interaction ) { InteractionFactory . create 'provider_state' => 'a state' , 'description' => 'a description' }
13
+ let ( :interaction ) { InteractionFactory . create 'provider_state' => 'a state' , 'description' => 'a description' , '_id' => id , 'index' => 2 }
14
+ let ( :id ) { nil }
14
15
let ( :pactfile_uri ) { 'pact_file_uri' }
15
16
let ( :description ) { 'an interaction' }
16
17
let ( :pact_json ) { { some : 'pact json' } . to_json }
@@ -29,11 +30,13 @@ module RSpec
29
30
let ( :failed_examples ) { [ example , example ] }
30
31
let ( :examples ) { [ example , example , example_2 ] }
31
32
let ( :output ) { StringIO . new }
32
- let ( :rerun_command ) { "rake pact:verify:at[pact_file_uri] PACT_DESCRIPTION=\" a description\" PACT_PROVIDER_STATE=\" a state\" # an interaction" }
33
+ let ( :rerun_command ) { 'PACT_DESCRIPTION="a description" PACT_PROVIDER_STATE="a state" # an interaction' }
34
+ let ( :broker_rerun_command ) { "rake pact:verify:at[pact_file_uri] PACT_BROKER_INTERACTION_ID=\" 1234\" # an interaction" }
33
35
let ( :missing_provider_states ) { 'missing_provider_states' }
34
36
let ( :summary ) { double ( "summary" , failure_count : 1 , failed_examples : failed_examples , examples : examples ) }
35
37
let ( :pact_executing_language ) { 'ruby' }
36
38
let ( :pact_interaction_rerun_command ) { Pact ::TaskHelper ::PACT_INTERACTION_RERUN_COMMAND }
39
+ let ( :pact_interaction_rerun_command_for_broker ) { Pact ::TaskHelper ::PACT_INTERACTION_RERUN_COMMAND_FOR_BROKER }
37
40
let ( :ignore_failures ) { nil }
38
41
39
42
subject { Formatter . new output }
@@ -43,6 +46,7 @@ module RSpec
43
46
before do
44
47
allow ( ENV ) . to receive ( :[] ) . with ( 'PACT_INTERACTION_RERUN_COMMAND' ) . and_return ( pact_interaction_rerun_command )
45
48
allow ( ENV ) . to receive ( :[] ) . with ( 'PACT_EXECUTING_LANGUAGE' ) . and_return ( pact_executing_language )
49
+ allow ( ENV ) . to receive ( :[] ) . with ( 'PACT_INTERACTION_RERUN_COMMAND_FOR_BROKER' ) . and_return ( pact_interaction_rerun_command_for_broker )
46
50
allow ( PrintMissingProviderStates ) . to receive ( :call )
47
51
allow ( Pact ::Provider ::Help ::PromptText ) . to receive ( :call ) . and_return ( "some help" )
48
52
allow ( subject ) . to receive ( :failed_examples ) . and_return ( failed_examples )
@@ -69,15 +73,46 @@ module RSpec
69
73
end
70
74
end
71
75
72
- context "when PACT_INTERACTION_RERUN_COMMAND is not set" do
76
+ context "when PACT_INTERACTION_RERUN_COMMAND_FOR_BROKER is set" do
77
+ context "when the _id is populated" do
78
+ let ( :id ) { "1234" }
79
+
80
+ it "prints a list of rerun commands" do
81
+ expect ( output_result ) . to include ( broker_rerun_command )
82
+ end
83
+
84
+ it "only prints unique commands" do
85
+ expect ( output_result . scan ( broker_rerun_command ) . size ) . to eq 1
86
+ end
87
+ end
88
+
89
+ context "when the _id is not populated" do
90
+ it "prints a list of rerun commands using the provider state and description" do
91
+ expect ( output_result ) . to include ( rerun_command )
92
+ end
93
+ end
94
+ end
95
+
96
+ context "when PACT_INTERACTION_RERUN_COMMAND and PACT_INTERACTION_RERUN_COMMAND_FOR_BROKER are not set" do
73
97
let ( :pact_interaction_rerun_command ) { nil }
98
+ let ( :pact_interaction_rerun_command_for_broker ) { nil }
99
+
100
+ context "when the _id is populated" do
101
+ let ( :id ) { "1234" }
102
+
103
+ it "prints a list of failed interactions" do
104
+ expect ( output_result ) . to include ( '* an interaction (to re-run just this interaction, set environment variable PACT_BROKER_INTERACTION_ID="1234")' )
105
+ end
106
+ end
74
107
75
- it "prints a list of failed interactions" do
76
- expect ( output_result ) . to include ( "* #{ description } \n " )
108
+ context "when the _id is not populated" do
109
+ it "prints a list of failed interactions" do
110
+ expect ( output_result ) . to include ( '* an interaction (to re-run just this interaction, set environment variables PACT_DESCRIPTION="a description" PACT_PROVIDER_STATE="a state")' )
111
+ end
77
112
end
78
113
79
114
it "only prints unique commands" do
80
- expect ( output_result . scan ( "* #{ description } \n " ) . size ) . to eq 1
115
+ expect ( output_result . scan ( "* #{ description } " ) . size ) . to eq 1
81
116
end
82
117
end
83
118
0 commit comments