summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTim <tgaudette88@gmail.com>2016-06-26 13:36:43 -0400
committerTim <tgaudette88@gmail.com>2016-06-29 06:01:54 -0400
commitbc313deaae2fae3e5532a28245fe72fcf9aef9a6 (patch)
tree6f9dabc184e0ce79207b648242ec15270a9a756e /spec
parent1023289605f075cef86833ab5c1b0e87d967f69e (diff)
downloadgitlab-ce-bc313deaae2fae3e5532a28245fe72fcf9aef9a6.tar.gz
Added Bugzilla as external issue tracker option
Requested in #14669 Added note to changelog
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_services/bugzilla_service_spec.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/spec/models/project_services/bugzilla_service_spec.rb b/spec/models/project_services/bugzilla_service_spec.rb
new file mode 100644
index 00000000000..a6d9717ccb5
--- /dev/null
+++ b/spec/models/project_services/bugzilla_service_spec.rb
@@ -0,0 +1,49 @@
+# == Schema Information
+#
+# Table name: services
+#
+# id :integer not null, primary key
+# type :string(255)
+# title :string(255)
+# project_id :integer
+# created_at :datetime
+# updated_at :datetime
+# active :boolean default(FALSE), not null
+# properties :text
+# template :boolean default(FALSE)
+# push_events :boolean default(TRUE)
+# issues_events :boolean default(TRUE)
+# merge_requests_events :boolean default(TRUE)
+# tag_push_events :boolean default(TRUE)
+# note_events :boolean default(TRUE), not null
+#
+
+require 'spec_helper'
+
+describe BugzillaService, models: true do
+ describe 'Associations' do
+ it { is_expected.to belong_to :project }
+ it { is_expected.to have_one :service_hook }
+ end
+
+ describe 'Validations' do
+ context 'when service is active' do
+ before { subject.active = true }
+
+ 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) }
+ 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
+ before { subject.active = false }
+
+ 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
+end