Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/sidebars/projects/menus/issues_menu_spec.rb')
-rw-r--r--spec/lib/sidebars/projects/menus/issues_menu_spec.rb86
1 files changed, 86 insertions, 0 deletions
diff --git a/spec/lib/sidebars/projects/menus/issues_menu_spec.rb b/spec/lib/sidebars/projects/menus/issues_menu_spec.rb
new file mode 100644
index 00000000000..ac62cd7594a
--- /dev/null
+++ b/spec/lib/sidebars/projects/menus/issues_menu_spec.rb
@@ -0,0 +1,86 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Sidebars::Projects::Menus::IssuesMenu do
+ let(:project) { build(:project) }
+ let(:user) { project.owner }
+ let(:context) { Sidebars::Projects::Context.new(current_user: user, container: project) }
+
+ subject { described_class.new(context) }
+
+ describe '#render?' do
+ context 'when user can read issues' do
+ it 'returns true' do
+ expect(subject.render?).to eq true
+ end
+ end
+
+ context 'when user cannot read issues' do
+ let(:user) { nil }
+
+ it 'returns false' do
+ expect(subject.render?).to eq false
+ end
+ end
+ end
+
+ describe '#has_pill?' do
+ context 'when issues feature is enabled' do
+ it 'returns true' do
+ expect(subject.has_pill?).to eq true
+ end
+ end
+
+ context 'when issue feature is disabled' do
+ it 'returns false' do
+ allow(project).to receive(:issues_enabled?).and_return(false)
+
+ expect(subject.has_pill?).to eq false
+ end
+ end
+ end
+
+ describe '#pill_count' do
+ it 'returns zero when there are no open issues' do
+ expect(subject.pill_count).to eq 0
+ end
+
+ it 'memoizes the query' do
+ subject.pill_count
+
+ control = ActiveRecord::QueryRecorder.new do
+ subject.pill_count
+ end
+
+ expect(control.count).to eq 0
+ end
+
+ context 'when there are open issues' do
+ it 'returns the number of open issues' do
+ create_list(:issue, 2, :opened, project: project)
+ create(:issue, :closed, project: project)
+
+ expect(subject.pill_count).to eq 2
+ end
+ end
+ end
+
+ describe 'Menu Items' do
+ subject { described_class.new(context).renderable_items.index { |e| e.item_id == item_id } }
+
+ describe 'Labels' do
+ let(:item_id) { :labels }
+
+ specify { is_expected.to be_nil }
+
+ context 'when feature flag :sidebar_refactor is disabled' do
+ before do
+ stub_feature_flags(sidebar_refactor: false)
+ end
+
+ specify { is_expected.not_to be_nil }
+ end
+ end
+ end
+end