OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/webhooks/spec/workers/time_entry_webhook_job.rb

142 lines
4.3 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2017 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See docs/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
describe TimeEntryWebhookJob, type: :job, webmock: true do
shared_let(:user) { FactoryBot.create :admin }
shared_let(:request_url) { "http://example.net/test/42" }
shared_let(:time_entry) { FactoryBot.create :time_entry, hours: 10 }
shared_let(:webhook) { FactoryBot.create :webhook, all_projects: true, url: request_url, secret: nil }
shared_examples "a time entry webhook call" do
let(:event) { "time_entry:created" }
let(:job) { TimeEntryWebhookJob.perform_now(webhook.id, time_entry, event) }
let(:stubbed_url) { request_url }
let(:request_headers) do
{ content_type: "application/json", accept: "application/json" }
end
let(:response_code) { 200 }
let(:response_body) { "hook called" }
let(:response_headers) do
{ content_type: "text/plain", x_spec: "foobar" }
end
let(:stub) do
stub_request(:post, stubbed_url.sub("http://", ""))
.with(
body: hash_including(
"action" => event,
"time_entry" => hash_including(
"_type" => "TimeEntry",
"hours" => 'PT10H'
)
),
headers: request_headers
)
.to_return(
status: response_code,
body: response_body,
headers: response_headers
)
end
subject do
begin
job
rescue
# ignoring it as it's expected to throw exceptions in certain scenarios
nil
end
end
before do
allow(::Webhooks::Webhook).to receive(:find).with(webhook.id).and_return(webhook)
login_as user
stub
end
it 'requests with all projects' do
expect(webhook)
.to receive(:enabled_for_project?).with(time_entry.project_id)
.and_call_original
subject
expect(stub).to have_been_requested
end
it 'does not request when project does not match' do
expect(webhook)
.to receive(:enabled_for_project?).with(time_entry.project_id)
.and_return(false)
subject
expect(stub).not_to have_been_requested
end
describe 'successful flow' do
before do
subject
end
it "calls the webhook url" do
expect(stub).to have_been_requested
end
it "creates a log for the call" do
log = Webhooks::Log.last
expect(log.webhook).to eq webhook
expect(log.url).to eq webhook.url
expect(log.event_name).to eq event
expect(log.request_headers).to eq request_headers
expect(log.response_code).to eq response_code
expect(log.response_body).to eq response_body
expect(log.response_headers).to eq response_headers
end
end
end
describe "triggering a time entry creation" do
it_behaves_like "a time entry webhook call" do
let(:event) { "time_entry:created" }
end
end
describe "triggering a work package create with an invalid url" do
it_behaves_like "a time entry webhook call" do
let(:event) { "time_entry:create" }
let(:response_code) { 404 }
let(:response_body) { "not found" }
end
end
end