mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 02:09:54 +08:00
168de52538
* DEV: Change sidebar header dropdown to use wait_for_animation
Introduced in 54351e1b8a
, this
helper should remove the need to have to add the .animated
CSS class in JS for the sidebar.
* DEV: Revert spec change
93 lines
2.9 KiB
Ruby
93 lines
2.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe "Viewing sidebar", type: :system, js: true do
|
|
fab!(:admin) { Fabricate(:admin) }
|
|
fab!(:user) { Fabricate(:user) }
|
|
fab!(:category_sidebar_section_link) { Fabricate(:category_sidebar_section_link, user: user) }
|
|
|
|
before { sign_in(user) }
|
|
|
|
describe "when using the legacy navigation menu" do
|
|
before { SiteSetting.navigation_menu = "legacy" }
|
|
|
|
it "should display the sidebar when `navigation_menu` query param is 'sidebar'" do
|
|
visit("/latest?navigation_menu=sidebar")
|
|
|
|
sidebar = PageObjects::Components::Sidebar.new
|
|
|
|
expect(sidebar).to be_visible
|
|
expect(sidebar).to have_category_section_link(category_sidebar_section_link.linkable)
|
|
expect(page).not_to have_css(".hamburger-dropdown")
|
|
end
|
|
|
|
it "should display the sidebar dropdown menu when `navigation_menu` query param is 'header_dropdown'" do
|
|
visit("/latest?navigation_menu=header_dropdown")
|
|
|
|
sidebar = PageObjects::Components::Sidebar.new
|
|
|
|
expect(sidebar).to be_not_visible
|
|
|
|
header_dropdown = PageObjects::Components::SidebarHeaderDropdown.new
|
|
header_dropdown.click
|
|
|
|
expect(header_dropdown).to be_visible
|
|
end
|
|
end
|
|
|
|
describe "when using the header dropdown navigation menu" do
|
|
before { SiteSetting.navigation_menu = "header dropdown" }
|
|
|
|
it "should display the sidebar when `navigation_menu` query param is 'sidebar'" do
|
|
visit("/latest?navigation_menu=sidebar")
|
|
|
|
sidebar = PageObjects::Components::Sidebar.new
|
|
|
|
expect(sidebar).to be_visible
|
|
expect(page).not_to have_css(".hamburger-dropdown")
|
|
end
|
|
|
|
it "should display the legacy dropdown menu when `navigation_menu` query param is 'legacy'" do
|
|
visit("/latest?navigation_menu=legacy")
|
|
|
|
sidebar = PageObjects::Components::Sidebar.new
|
|
|
|
expect(sidebar).to be_not_visible
|
|
|
|
legacy_header_dropdown = PageObjects::Components::LegacyHeaderDropdown.new
|
|
legacy_header_dropdown.click
|
|
|
|
expect(legacy_header_dropdown).to be_visible
|
|
end
|
|
end
|
|
|
|
describe "when using the sidebar navigation menu" do
|
|
before { SiteSetting.navigation_menu = "sidebar" }
|
|
|
|
it "should display the legacy dropdown menu when `navigation_menu` query param is 'legacy'" do
|
|
visit("/latest?navigation_menu=legacy")
|
|
|
|
sidebar = PageObjects::Components::Sidebar.new
|
|
|
|
expect(sidebar).to be_not_visible
|
|
|
|
legacy_header_dropdown = PageObjects::Components::LegacyHeaderDropdown.new
|
|
legacy_header_dropdown.click
|
|
|
|
expect(legacy_header_dropdown).to be_visible
|
|
end
|
|
|
|
it "should display the sidebar dropdown menu when `navigation_menu` query param is 'header_dropdown'" do
|
|
visit("/latest?navigation_menu=header_dropdown")
|
|
|
|
sidebar = PageObjects::Components::Sidebar.new
|
|
|
|
expect(sidebar).to be_not_visible
|
|
|
|
header_dropdown = PageObjects::Components::SidebarHeaderDropdown.new
|
|
header_dropdown.click
|
|
|
|
expect(header_dropdown).to be_visible
|
|
end
|
|
end
|
|
end
|