Sha256: fcccbf4d4011a3441d481bdce0cbb51216e95341f0b4a1c310cd951c041386a7

Contents?: true

Size: 1.5 KB

Versions: 3

Compression:

Stored size: 1.5 KB

Contents

require 'spec_helper'
require 'pact_broker/api/decorators/webhooks_decorator'

module PactBroker
  module Api
    module Decorators
      describe WebhooksDecorator do

        let(:webhook) do
          instance_double(Domain::Webhook,
            uuid: 'some-uuid',
            display_description: 'description'
          )
        end
        let(:base_url) { 'http://example.org' }
        let(:resource_url) { 'http://example.org/webhooks' }

        let(:decorator_context) do
          DecoratorContext.new(base_url, resource_url, resource_title: 'Title')
        end

        let(:webhooks) { [webhook] }

        describe "to_json" do

          let(:json) { WebhooksDecorator.new(webhooks).to_json(user_options: decorator_context) }

          subject { JSON.parse(json, symbolize_names: true) }

          it "includes a link to itself with a title" do
            expect(subject[:_links][:self][:href]).to eq resource_url
            expect(subject[:_links][:self][:title]).to eq 'Title'
          end

          it "includes a list of links to the webhooks" do
            expect(subject[:_links][:'pb:webhooks']).to be_instance_of(Array)
            expect(subject[:_links][:'pb:webhooks'].first).to eq title: 'Webhook', name: 'description', href: 'http://example.org/webhooks/some-uuid'
          end

          it "includes curies" do
            expect(subject[:_links][:curies]).to eq [{:name=>"pb", :href=>"http://example.org/doc/webhooks-{rel}", templated: true}]
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pact_broker-2.34.0 spec/lib/pact_broker/api/decorators/webhooks_decorator_spec.rb
pact_broker-2.33.0 spec/lib/pact_broker/api/decorators/webhooks_decorator_spec.rb
pact_broker-2.32.0 spec/lib/pact_broker/api/decorators/webhooks_decorator_spec.rb