Sha256: 60fa1d822490d57389936bd3be970c04b83c5213a0a7b2a3564ad687bb6c7069

Contents?: true

Size: 1.58 KB

Versions: 1

Compression:

Stored size: 1.58 KB

Contents

require_relative "base_decorator"

module PactBroker
  module Api
    module Decorators
      class VerificationDecorator < BaseDecorator
        class TagDecorator < BaseDecorator
          property :name
          property :latest?, as: :latest
        end

        property :provider_name, as: :providerName, writeable: false
        property :provider_version_number, as: :providerApplicationVersion, writeable: false
        property :success
        property :execution_date, as: :verificationDate
        property :build_url, as: :buildUrl
        property :test_results, as: :testResults
        nested :verifiedBy do
          property :verified_by_implementation, as: :implementation
          property :verified_by_version, as: :version
        end

        link :self do | options |
          {
            title: "Verification result",
            name: "Verification result #{represented.number} for #{represented.latest_pact_publication.name}",
            href: verification_url(represented, options.fetch(:base_url), )
          }
        end

        link "pb:pact-version" do | options |
          {
            title: "Pact",
            name: represented.latest_pact_publication.name,
            href: pact_url(options.fetch(:base_url), represented.latest_pact_publication)
          }
        end

        link "pb:triggered-webhooks" do | options |
          {
            title: "Webhooks triggered by the publication of this verification result",
            href: verification_triggered_webhooks_url(represented, options.fetch(:base_url))
          }
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pact_broker-2.86.0 lib/pact_broker/api/decorators/verification_decorator.rb