Class: PactBroker::Api::Resources::PactContentDiff

Inherits:
BaseResource
  • Object
show all
Defined in:
lib/pact_broker/api/resources/pact_content_diff.rb

Constant Summary

Constants included from Logging

Logging::LOG_DIR, Logging::LOG_FILE_NAME

Instance Method Summary collapse

Methods inherited from BaseResource

#base_url, #charsets_provided, #consumer_name, #contract_validation_errors?, #decorator_context, #encode, #finish_request, #handle_exception, #identifier_from_path, #initialize, #invalid_json?, #pacticipant_name, #params, #params_with_string_keys, #provider_name, #request_body, #resource_url, #set_json_error_message, #set_json_validation_error_messages, #validation_errors?

Methods included from Logging

included, #log_error, #logger, #logger=

Methods included from PactBrokerUrls

#hal_browser_url, #latest_pact_url, #latest_pacts_url, #latest_verifications_for_consumer_version_url, #latest_version_url, #new_verification_url, #pact_url, #pact_url_from_params, #pact_version_url, #pact_versions_url, #pacticipant_url, #pacticipants_url, #previous_distinct_diff_url, #previous_distinct_pact_version_url, #tag_url, #tags_url, #url_encode, #verification_publication_url, #verification_url, #version_url, #versions_url, #webhook_execution_url, #webhook_url, #webhooks_for_pact_url, #webhooks_url

Methods included from Services

#group_service, #pact_service, #pacticipant_service, #tag_service, #verification_service, #version_service, #webhook_service

Constructor Details

This class inherits a constructor from PactBroker::Api::Resources::BaseResource

Instance Method Details

#allowed_methodsObject



13
14
15
# File 'lib/pact_broker/api/resources/pact_content_diff.rb', line 13

def allowed_methods
  ["GET"]
end

#content_types_providedObject



9
10
11
# File 'lib/pact_broker/api/resources/pact_content_diff.rb', line 9

def content_types_provided
  [["text/plain", :to_text]]
end

#pactObject



27
28
29
# File 'lib/pact_broker/api/resources/pact_content_diff.rb', line 27

def pact
  @pact ||= pact_service.find_pact(pact_params)
end

#pact_paramsObject



31
32
33
# File 'lib/pact_broker/api/resources/pact_content_diff.rb', line 31

def pact_params
  @pact_params ||= PactBroker::Pacts::PactParams.from_request request, path_info
end

#resource_exists?Boolean

Returns:

  • (Boolean)


17
18
19
20
# File 'lib/pact_broker/api/resources/pact_content_diff.rb', line 17

def resource_exists?
  pacticipant_service.find_pacticipant_by_name(consumer_name) &&
    pacticipant_service.find_pacticipant_by_name(provider_name)
end

#to_textObject



22
23
24
25
# File 'lib/pact_broker/api/resources/pact_content_diff.rb', line 22

def to_text
  output = PactBroker::Pacts::Diff.new.process pact_params.merge(base_url: base_url)
  response.body = output
end