debian-mirror-gitlab/spec/lib/sidebars/projects/super_sidebar_panel_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.5 KiB
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Sidebars::Projects::SuperSidebarPanel, feature_category: :navigation do
let_it_be(:project) { create(:project, :repository) }
let(:user) { project.first_owner }
let(:context) do
double("Stubbed context", current_user: user, container: project, project: project, current_ref: 'master').as_null_object # rubocop:disable RSpec/VerifiedDoubles
end
subject { described_class.new(context) }
it 'implements #super_sidebar_context_header' do
expect(subject.super_sidebar_context_header).to eq(
{
title: project.name,
avatar: project.avatar_url,
id: project.id
})
end
describe '#renderable_menus' do
let(:category_menu) do
[
Sidebars::StaticMenu,
2023-06-20 00:43:36 +05:30
Sidebars::Projects::SuperSidebarMenus::ManageMenu,
2023-05-27 22:25:52 +05:30
Sidebars::Projects::SuperSidebarMenus::PlanMenu,
2023-06-20 00:43:36 +05:30
Sidebars::Projects::SuperSidebarMenus::CodeMenu,
Sidebars::Projects::SuperSidebarMenus::BuildMenu,
Sidebars::Projects::SuperSidebarMenus::SecureMenu,
2023-05-27 22:25:52 +05:30
Sidebars::Projects::SuperSidebarMenus::OperationsMenu,
2023-06-20 00:43:36 +05:30
Sidebars::Projects::SuperSidebarMenus::MonitorMenu,
Sidebars::Projects::SuperSidebarMenus::AnalyzeMenu,
2023-05-27 22:25:52 +05:30
Sidebars::UncategorizedMenu,
Sidebars::Projects::Menus::SettingsMenu
]
end
it "is exposed as a renderable menu" do
expect(subject.instance_variable_get(:@menus).map(&:class)).to eq(category_menu)
end
end
end