## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true require 'spec_helper.rb' describe 'Webhook' do it "can fetch" do @holodeck.mock(Twilio::Response.new(500, '')) expect { @client.conversations.v1.configuration \ .webhooks().fetch() }.to raise_exception(Twilio::REST::TwilioError) expect( @holodeck.has_request?(Holodeck::Request.new( method: 'get', url: 'https://conversations.twilio.com/v1/Configuration/Webhooks', ))).to eq(true) end it "receives fetch responses" do @holodeck.mock(Twilio::Response.new( 200, %q[ { "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "pre_webhook_url": "https://example.com/pre", "post_webhook_url": "https://example.com/post", "method": "GET", "filters": [ "onMessageSend", "onConversationUpdated" ], "target": "webhook", "url": "https://conversations.twilio.com/v1/Configuration/Webhooks" } ] )) actual = @client.conversations.v1.configuration \ .webhooks().fetch() expect(actual).to_not eq(nil) end it "can update" do @holodeck.mock(Twilio::Response.new(500, '')) expect { @client.conversations.v1.configuration \ .webhooks().update() }.to raise_exception(Twilio::REST::TwilioError) expect( @holodeck.has_request?(Holodeck::Request.new( method: 'post', url: 'https://conversations.twilio.com/v1/Configuration/Webhooks', ))).to eq(true) end it "receives update responses" do @holodeck.mock(Twilio::Response.new( 200, %q[ { "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "pre_webhook_url": "https://example.com/pre", "post_webhook_url": "http://example.com/post", "method": "GET", "filters": [ "onConversationUpdated" ], "target": "webhook", "url": "https://conversations.twilio.com/v1/Configuration/Webhooks" } ] )) actual = @client.conversations.v1.configuration \ .webhooks().update() expect(actual).to_not eq(nil) end end