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

54 lines
1.6 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe RedmineService do
2016-06-02 11:05:42 +05:30
describe 'Associations' do
it { is_expected.to belong_to :project }
it { is_expected.to have_one :service_hook }
end
describe 'Validations' do
2019-12-04 20:38:33 +05:30
# if redmine is set in setting the urls are set to defaults
# therefore the validation passes as the values are not nil
before do
settings = {
'redmine' => {}
}
allow(Gitlab.config).to receive(:issues_tracker).and_return(settings)
end
2016-06-02 11:05:42 +05:30
context 'when service is active' do
2017-09-10 17:25:29 +05:30
before do
subject.active = true
end
2016-06-02 11:05:42 +05:30
it { is_expected.to validate_presence_of(:project_url) }
it { is_expected.to validate_presence_of(:issues_url) }
it { is_expected.to validate_presence_of(:new_issue_url) }
2019-12-04 20:38:33 +05:30
2016-06-02 11:05:42 +05:30
it_behaves_like 'issue tracker service URL attribute', :project_url
it_behaves_like 'issue tracker service URL attribute', :issues_url
it_behaves_like 'issue tracker service URL attribute', :new_issue_url
end
context 'when service is inactive' do
2017-09-10 17:25:29 +05:30
before do
subject.active = false
end
2016-06-02 11:05:42 +05:30
it { is_expected.not_to validate_presence_of(:project_url) }
it { is_expected.not_to validate_presence_of(:issues_url) }
it { is_expected.not_to validate_presence_of(:new_issue_url) }
end
end
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
describe '.reference_pattern' do
2016-11-03 12:29:30 +05:30
it_behaves_like 'allows project key on reference pattern'
it 'does allow # on the reference' do
2017-08-17 22:00:37 +05:30
expect(described_class.reference_pattern.match('#123')[:issue]).to eq('123')
2016-11-03 12:29:30 +05:30
end
end
2016-06-02 11:05:42 +05:30
end