|
| 1 | +require 'pact/provider/verification_results/create' |
| 2 | + |
| 3 | +module Pact |
| 4 | + module Provider |
| 5 | + module VerificationResults |
| 6 | + describe Create do |
| 7 | + before do |
| 8 | + allow(Pact.configuration).to receive(:provider).and_return(provider_configuration) |
| 9 | + allow(VerificationResult).to receive(:new).and_return(verification_result) |
| 10 | + end |
| 11 | + |
| 12 | + let(:verification_result) { double('VerificationResult') } |
| 13 | + let(:provider_configuration) do |
| 14 | + double('provider_configuration', application_version: '1.2.3') |
| 15 | + end |
| 16 | + let(:pact_source_1) do |
| 17 | + instance_double('Pact::Provider::PactSource', uri: pact_uri_1, pact_hash: pact_hash_1) |
| 18 | + end |
| 19 | + let(:pact_uri_1) { instance_double('Pact::Provider::PactURI', uri: URI('foo')) } |
| 20 | + let(:pact_uri_2) { instance_double('Pact::Provider::PactURI', uri: URI('bar')) } |
| 21 | + let(:example_1) do |
| 22 | + { |
| 23 | + pact_uri: pact_uri_1, |
| 24 | + pact_interaction: double('interaction'), |
| 25 | + status: 'passed' |
| 26 | + } |
| 27 | + end |
| 28 | + let(:example_2) do |
| 29 | + { |
| 30 | + pact_uri: pact_uri_2, |
| 31 | + pact_interaction: double('interaction'), |
| 32 | + status: 'passed' |
| 33 | + } |
| 34 | + end |
| 35 | + let(:test_results_hash) do |
| 36 | + { |
| 37 | + examples: [example_1, example_2] |
| 38 | + } |
| 39 | + end |
| 40 | + let(:pact_hash_1) do |
| 41 | + { |
| 42 | + 'interactions' => [{}] |
| 43 | + } |
| 44 | + end |
| 45 | + |
| 46 | + subject { Create.call(pact_source_1, test_results_hash) } |
| 47 | + |
| 48 | + it "returns a verification result" do |
| 49 | + expect(subject).to eq verification_result |
| 50 | + end |
| 51 | + |
| 52 | + it "creates a VerificationResult with the relevant test results" do |
| 53 | + expected_test_results_hash = { |
| 54 | + examples: [{ status: "passed" }], |
| 55 | + summary: { exampleCount: 1, failureCount: 0} |
| 56 | + } |
| 57 | + expect(VerificationResult).to receive(:new).with(anything, anything, anything, expected_test_results_hash) |
| 58 | + subject |
| 59 | + end |
| 60 | + |
| 61 | + it "creates a VerificationResult with the provider application version" do |
| 62 | + expect(provider_configuration).to receive(:application_version) |
| 63 | + expect(VerificationResult).to receive(:new).with(anything, anything, '1.2.3', anything) |
| 64 | + subject |
| 65 | + end |
| 66 | + |
| 67 | + context "when every interaction has been executed" do |
| 68 | + it "sets publishable to true" do |
| 69 | + expect(VerificationResult).to receive(:new).with(true, anything, anything, anything) |
| 70 | + subject |
| 71 | + end |
| 72 | + end |
| 73 | + |
| 74 | + context "when not every interaction has been executed" do |
| 75 | + let(:pact_hash_1) do |
| 76 | + { |
| 77 | + 'interactions' => [{}, {}] |
| 78 | + } |
| 79 | + end |
| 80 | + it "sets publishable to false" do |
| 81 | + expect(VerificationResult).to receive(:new).with(false, anything, anything, anything) |
| 82 | + subject |
| 83 | + end |
| 84 | + end |
| 85 | + |
| 86 | + context "when all the examples passed" do |
| 87 | + it "sets the success to true" do |
| 88 | + expect(VerificationResult).to receive(:new).with(anything, true, anything, anything) |
| 89 | + subject |
| 90 | + end |
| 91 | + end |
| 92 | + |
| 93 | + context "when not all the examples passed" do |
| 94 | + before do |
| 95 | + example_1[:status] = 'notpassed' |
| 96 | + end |
| 97 | + |
| 98 | + it "sets the success to false" do |
| 99 | + expect(VerificationResult).to receive(:new).with(anything, false, anything, anything) |
| 100 | + subject |
| 101 | + end |
| 102 | + |
| 103 | + it "sets the failureCount" do |
| 104 | + expect(VerificationResult).to receive(:new) do | _, _, _, test_results_hash| |
| 105 | + expect(test_results_hash[:summary][:failureCount]).to eq 1 |
| 106 | + end |
| 107 | + subject |
| 108 | + end |
| 109 | + end |
| 110 | + end |
| 111 | + end |
| 112 | + end |
| 113 | +end |
0 commit comments