Sha256: 7360a5f6a6d3661f2c66f68203bb9e8c09a713ab656f539b291d1db3ca1f7b74

Contents?: true

Size: 1.87 KB

Versions: 9

Compression:

Stored size: 1.87 KB

Contents

require 'pact/consumer/mock_service_interaction_expectation'

module Pact
  module Consumer
    class MockServiceClient

      MOCK_SERVICE_ADMINISTRATON_HEADERS = {'X-Pact-Mock-Service' => 'true'}

      def initialize name, port
        @http = Net::HTTP.new('localhost', port)
      end

      def verify example_description
        response = http.request_get("/verify?example_description=#{URI.encode(example_description)}", MOCK_SERVICE_ADMINISTRATON_HEADERS)
        raise response.body unless response.is_a? Net::HTTPSuccess
      end

      def log msg
        http.request_get("/log?msg=#{URI.encode(msg)}", MOCK_SERVICE_ADMINISTRATON_HEADERS)
      end

      def wait_for_interactions wait_max_seconds, poll_interval
        wait_until_true(wait_max_seconds, poll_interval) do
          response = http.request_get("/number_of_missing_interactions", MOCK_SERVICE_ADMINISTRATON_HEADERS)
          response.body == '0'
        end
      end

      def clear_interactions example_description
        http.delete("/interactions?example_description=#{URI.encode(example_description)}", MOCK_SERVICE_ADMINISTRATON_HEADERS)
      end

      def add_expected_interaction interaction
        http.request_post('/interactions', MockServiceInteractionExpectation.new(interaction).to_json, MOCK_SERVICE_ADMINISTRATON_HEADERS)
      end

      def self.clear_interactions port, example_description
        Net::HTTP.new("localhost", port).delete("/interactions?example_description=#{URI.encode(example_description)}", MOCK_SERVICE_ADMINISTRATON_HEADERS)
      end

      private
      attr_reader :http

      #todo: in need a better home (where can we move it?)
      def wait_until_true timeout=3, interval=0.1
        time_limit = Time.now + timeout
        loop do
          result =  yield
          return if result || Time.now >= time_limit
          sleep interval
        end
      end

    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
pact-1.0.22 lib/pact/consumer/mock_service_client.rb
pact-1.0.21 lib/pact/consumer/mock_service_client.rb
pact-1.0.20 lib/pact/consumer/mock_service_client.rb
pact-1.0.19 lib/pact/consumer/mock_service_client.rb
pact-1.0.18 lib/pact/consumer/mock_service_client.rb
pact-1.0.15 lib/pact/consumer/mock_service_client.rb
pact-1.0.13 lib/pact/consumer/mock_service_client.rb
pact-1.0.12 lib/pact/consumer/mock_service_client.rb
pact-1.0.11 lib/pact/consumer/mock_service_client.rb