debian-mirror-gitlab/spec/models/project_services/gitlab_issue_tracker_service_spec.rb

53 lines
1.9 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe GitlabIssueTrackerService do
2015-04-26 12:48:37 +05:30
describe "Associations" do
it { is_expected.to belong_to :project }
it { is_expected.to have_one :service_hook }
end
2016-06-02 11:05:42 +05:30
describe 'Validations' do
context 'when service is active' do
2017-09-10 17:25:29 +05:30
subject { described_class.new(project: create(:project), active: true) }
2016-06-02 11:05:42 +05:30
it { is_expected.to validate_presence_of(:issues_url) }
it_behaves_like 'issue tracker service URL attribute', :issues_url
end
context 'when service is inactive' do
2017-09-10 17:25:29 +05:30
subject { described_class.new(project: create(:project), active: false) }
2016-06-02 11:05:42 +05:30
it { is_expected.not_to validate_presence_of(:issues_url) }
end
end
2015-04-26 12:48:37 +05:30
describe 'project and issue urls' do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
let(:service) { project.create_gitlab_issue_tracker_service(active: true) }
2015-04-26 12:48:37 +05:30
context 'with absolute urls' do
before do
2017-09-10 17:25:29 +05:30
allow(described_class).to receive(:default_url_options).and_return(script_name: "/gitlab/root")
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'gives the correct path' do
2017-09-10 17:25:29 +05:30
expect(service.project_url).to eq("http://#{Gitlab.config.gitlab.host}/gitlab/root/#{project.full_path}/issues")
expect(service.new_issue_url).to eq("http://#{Gitlab.config.gitlab.host}/gitlab/root/#{project.full_path}/issues/new")
expect(service.issue_url(432)).to eq("http://#{Gitlab.config.gitlab.host}/gitlab/root/#{project.full_path}/issues/432")
2015-04-26 12:48:37 +05:30
end
end
context 'with relative urls' do
before do
2017-09-10 17:25:29 +05:30
allow(described_class).to receive(:default_url_options).and_return(script_name: "/gitlab/root")
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'gives the correct path' do
2017-09-10 17:25:29 +05:30
expect(service.issue_tracker_path).to eq("/gitlab/root/#{project.full_path}/issues")
expect(service.new_issue_path).to eq("/gitlab/root/#{project.full_path}/issues/new")
expect(service.issue_path(432)).to eq("/gitlab/root/#{project.full_path}/issues/432")
2015-04-26 12:48:37 +05:30
end
end
end
end