2022-11-04 22:06:24 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-06-07 09:26:58 +08:00
|
|
|
RSpec.describe "Navigation", type: :system do
|
2022-11-07 16:04:43 +08:00
|
|
|
fab!(:category) { Fabricate(:category) }
|
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
|
|
|
fab!(:post) { Fabricate(:post, topic: topic) }
|
2023-06-28 07:58:47 +08:00
|
|
|
fab!(:current_user) { Fabricate(:admin) }
|
2022-11-04 22:06:24 +08:00
|
|
|
fab!(:category_channel) { Fabricate(:category_channel) }
|
2022-11-11 13:39:15 +08:00
|
|
|
fab!(:category_channel_2) { Fabricate(:category_channel) }
|
2022-11-04 22:06:24 +08:00
|
|
|
fab!(:message) { Fabricate(:chat_message, chat_channel: category_channel) }
|
2022-11-07 21:48:18 +08:00
|
|
|
let(:chat_page) { PageObjects::Pages::Chat.new }
|
2023-06-28 07:58:47 +08:00
|
|
|
let(:thread_page) { PageObjects::Pages::ChatThread.new }
|
|
|
|
let(:thread_list_page) { PageObjects::Components::Chat::ThreadList.new }
|
|
|
|
let(:channel_page) { PageObjects::Pages::ChatChannel.new }
|
|
|
|
let(:side_panel_page) { PageObjects::Pages::ChatSidePanel.new }
|
2022-11-09 06:58:11 +08:00
|
|
|
let(:sidebar_page) { PageObjects::Pages::Sidebar.new }
|
2023-04-12 15:52:10 +08:00
|
|
|
let(:sidebar_component) { PageObjects::Components::Sidebar.new }
|
2022-11-11 13:39:15 +08:00
|
|
|
let(:chat_drawer_page) { PageObjects::Pages::ChatDrawer.new }
|
2022-11-04 22:06:24 +08:00
|
|
|
|
|
|
|
before do
|
2023-06-28 07:58:47 +08:00
|
|
|
chat_system_bootstrap(current_user, [category_channel, category_channel_2])
|
|
|
|
sign_in(current_user)
|
2022-11-04 22:06:24 +08:00
|
|
|
end
|
|
|
|
|
2022-11-25 22:12:32 +08:00
|
|
|
context "when clicking chat icon and drawer is viewing channel" do
|
|
|
|
it "navigates to index" do
|
2022-12-23 00:03:27 +08:00
|
|
|
visit("/")
|
|
|
|
|
2022-11-25 22:12:32 +08:00
|
|
|
chat_page.open_from_header
|
|
|
|
chat_drawer_page.open_channel(category_channel_2)
|
|
|
|
chat_page.open_from_header
|
|
|
|
|
|
|
|
expect(page).to have_content(I18n.t("js.chat.direct_messages.title"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when clicking chat icon on mobile and is viewing channel" do
|
DEV: start glimmer-ification and optimisations of chat plugin (#19531)
Note this is a very large PR, and some of it could have been splited, but keeping it one chunk made it to merge conflicts and to revert if necessary. Actual new code logic is also not that much, as most of the changes are removing js tests, adding system specs or moving things around.
To make it possible this commit is doing the following changes:
- converting (and adding new) existing js acceptances tests into system tests. This change was necessary to ensure as little regressions as possible while changing paradigm
- moving away from store. Using glimmer and tracked properties requires to have class objects everywhere and as a result works well with models. However store/adapters are suffering from many bugs and limitations. As a workaround the `chat-api` and `chat-channels-manager` are an answer to this problem by encapsulating backend calls and frontend storage logic; while still using js models.
- dropping `appEvents` as much as possible. Using tracked properties and a better local storage of channel models, allows to be much more reactive and doesn’t require arbitrary manual updates everywhere in the app.
- while working on replacing store, the existing work of a chat api (backend) has been continued to support more cases.
- removing code from the `chat` service to separate concerns, `chat-subscriptions-manager` and `chat-channels-manager`, being the largest examples of where the code has been rewritten/moved.
Future wok:
- improve behavior when closing/deleting a channel, it's already slightly buggy on live, it's rare enough that it's not a big issue, but should be improved
- improve page objects used in chat
- move more endpoints to the API
- finish temporarily skipped tests
- extract more code from the `chat` service
- use glimmer for `chat-messages`
- separate concerns in `chat-live-pane`
- eventually add js tests for `chat-api`, `chat-channels-manager` and `chat-subscriptions-manager`, they are indirectly heavy tested through system tests but it would be nice to at least test the public API
<!-- NOTE: All pull requests should have tests (rspec in Ruby, qunit in JavaScript). If your code does not include test coverage, please include an explanation of why it was omitted. -->
2022-12-21 20:21:02 +08:00
|
|
|
it "navigates to index", mobile: true do
|
|
|
|
visit("/chat")
|
2022-11-25 22:12:32 +08:00
|
|
|
chat_page.visit_channel(category_channel_2)
|
|
|
|
chat_page.open_from_header
|
|
|
|
|
|
|
|
expect(page).to have_current_path(chat_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when clicking chat icon on desktop and is viewing channel" do
|
|
|
|
it "stays on channel page" do
|
|
|
|
visit("/chat")
|
|
|
|
chat_page.visit_channel(category_channel_2)
|
|
|
|
chat_page.open_from_header
|
|
|
|
|
|
|
|
expect(page).to have_current_path(
|
2023-01-27 20:58:12 +08:00
|
|
|
chat.channel_path(category_channel_2.slug, category_channel_2.id),
|
2022-11-25 22:12:32 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-11-04 22:06:24 +08:00
|
|
|
context "when visiting /chat" do
|
2022-11-07 16:04:43 +08:00
|
|
|
it "opens full page" do
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_page.open
|
2022-11-04 22:06:24 +08:00
|
|
|
|
|
|
|
expect(page).to have_current_path(
|
2023-01-27 20:58:12 +08:00
|
|
|
chat.channel_path(category_channel.slug, category_channel.id),
|
2022-11-04 22:06:24 +08:00
|
|
|
)
|
|
|
|
expect(page).to have_css("html.has-full-page-chat")
|
|
|
|
expect(page).to have_css(".chat-message-container[data-id='#{message.id}']")
|
|
|
|
end
|
|
|
|
end
|
2022-11-07 16:04:43 +08:00
|
|
|
|
|
|
|
context "when opening chat" do
|
|
|
|
it "opens the drawer by default" do
|
|
|
|
visit("/")
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.open_from_header
|
2022-11-07 16:04:43 +08:00
|
|
|
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).to have_css(".chat-drawer.is-expanded")
|
2022-11-07 16:04:43 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening chat with full page as preferred mode" do
|
|
|
|
it "opens the full page" do
|
|
|
|
visit("/")
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.open_from_header
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_drawer_page.maximize
|
2022-11-07 16:04:43 +08:00
|
|
|
|
|
|
|
expect(page).to have_current_path(
|
2023-01-27 20:58:12 +08:00
|
|
|
chat.channel_path(category_channel.slug, category_channel.id),
|
2022-11-07 16:04:43 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
visit("/")
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.open_from_header
|
2022-11-07 16:04:43 +08:00
|
|
|
|
|
|
|
expect(page).to have_current_path(
|
2023-01-27 20:58:12 +08:00
|
|
|
chat.channel_path(category_channel.slug, category_channel.id),
|
2022-11-07 16:04:43 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening chat with drawer as preferred mode" do
|
|
|
|
it "opens the full page" do
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_page.open
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.minimize_full_page
|
2022-11-07 16:04:43 +08:00
|
|
|
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).to have_css(".chat-drawer.is-expanded")
|
2022-11-07 16:04:43 +08:00
|
|
|
|
|
|
|
visit("/")
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.open_from_header
|
2022-11-07 16:04:43 +08:00
|
|
|
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).to have_css(".chat-drawer.is-expanded")
|
2022-11-07 16:04:43 +08:00
|
|
|
end
|
|
|
|
end
|
2022-11-07 21:48:18 +08:00
|
|
|
|
|
|
|
context "when collapsing full page with no previous state" do
|
|
|
|
it "redirects to home page" do
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_page.open
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.minimize_full_page
|
|
|
|
|
2022-11-08 02:31:08 +08:00
|
|
|
expect(page).to have_current_path(latest_path)
|
2022-11-07 21:48:18 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when collapsing full page with previous state" do
|
|
|
|
it "redirects to previous state" do
|
|
|
|
visit("/t/-/#{topic.id}")
|
|
|
|
chat_page.open_from_header
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_drawer_page.maximize
|
2022-11-07 21:48:18 +08:00
|
|
|
chat_page.minimize_full_page
|
|
|
|
|
|
|
|
expect(page).to have_current_path("/t/#{topic.slug}/#{topic.id}")
|
|
|
|
expect(page).to have_css(".chat-message-container[data-id='#{message.id}']")
|
|
|
|
end
|
|
|
|
end
|
2022-11-08 23:23:13 +08:00
|
|
|
|
2023-06-28 07:58:47 +08:00
|
|
|
context "when opening a thread" do
|
|
|
|
fab!(:thread) { Fabricate(:chat_thread, channel: category_channel) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.enable_experimental_chat_threaded_discussions = true
|
|
|
|
category_channel.update!(threading_enabled: true)
|
|
|
|
Fabricate(:chat_message, thread: thread)
|
|
|
|
thread.add(current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening a thread from the thread list" do
|
|
|
|
it "goes back to the thread list when clicking the back button" do
|
|
|
|
visit("/chat")
|
|
|
|
chat_page.visit_channel(category_channel)
|
|
|
|
channel_page.open_thread_list
|
|
|
|
expect(thread_list_page).to have_loaded
|
|
|
|
thread_list_page.open_thread(thread)
|
|
|
|
expect(side_panel_page).to have_open_thread(thread)
|
|
|
|
thread_page.back_to_previous_route
|
|
|
|
expect(thread_list_page).to have_loaded
|
|
|
|
end
|
|
|
|
|
|
|
|
context "for mobile" do
|
|
|
|
it "goes back to the thread list when clicking the back button", mobile: true do
|
|
|
|
visit("/chat")
|
|
|
|
chat_page.visit_channel(category_channel)
|
|
|
|
channel_page.open_thread_list
|
|
|
|
expect(thread_list_page).to have_loaded
|
|
|
|
thread_list_page.open_thread(thread)
|
|
|
|
expect(side_panel_page).to have_open_thread(thread)
|
|
|
|
thread_page.back_to_previous_route
|
|
|
|
expect(thread_list_page).to have_loaded
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening a thread from indicator" do
|
|
|
|
it "goes back to the thread list when clicking the back button" do
|
|
|
|
visit("/chat")
|
|
|
|
chat_page.visit_channel(category_channel)
|
|
|
|
channel_page.message_thread_indicator(thread.original_message).click
|
|
|
|
expect(side_panel_page).to have_open_thread(thread)
|
|
|
|
thread_page.back_to_previous_route
|
|
|
|
expect(thread_list_page).to have_loaded
|
|
|
|
end
|
|
|
|
|
|
|
|
context "for mobile" do
|
|
|
|
it "closes the thread and goes back to the channel when clicking the back button",
|
|
|
|
mobile: true do
|
|
|
|
visit("/chat")
|
|
|
|
chat_page.visit_channel(category_channel)
|
|
|
|
channel_page.message_thread_indicator(thread.original_message).click
|
|
|
|
expect(side_panel_page).to have_open_thread(thread)
|
|
|
|
thread_page.back_to_previous_route
|
|
|
|
expect(side_panel_page).not_to be_open
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-12-08 09:44:29 +08:00
|
|
|
context "when sidebar is configured as the navigation menu" do
|
DEV: start glimmer-ification and optimisations of chat plugin (#19531)
Note this is a very large PR, and some of it could have been splited, but keeping it one chunk made it to merge conflicts and to revert if necessary. Actual new code logic is also not that much, as most of the changes are removing js tests, adding system specs or moving things around.
To make it possible this commit is doing the following changes:
- converting (and adding new) existing js acceptances tests into system tests. This change was necessary to ensure as little regressions as possible while changing paradigm
- moving away from store. Using glimmer and tracked properties requires to have class objects everywhere and as a result works well with models. However store/adapters are suffering from many bugs and limitations. As a workaround the `chat-api` and `chat-channels-manager` are an answer to this problem by encapsulating backend calls and frontend storage logic; while still using js models.
- dropping `appEvents` as much as possible. Using tracked properties and a better local storage of channel models, allows to be much more reactive and doesn’t require arbitrary manual updates everywhere in the app.
- while working on replacing store, the existing work of a chat api (backend) has been continued to support more cases.
- removing code from the `chat` service to separate concerns, `chat-subscriptions-manager` and `chat-channels-manager`, being the largest examples of where the code has been rewritten/moved.
Future wok:
- improve behavior when closing/deleting a channel, it's already slightly buggy on live, it's rare enough that it's not a big issue, but should be improved
- improve page objects used in chat
- move more endpoints to the API
- finish temporarily skipped tests
- extract more code from the `chat` service
- use glimmer for `chat-messages`
- separate concerns in `chat-live-pane`
- eventually add js tests for `chat-api`, `chat-channels-manager` and `chat-subscriptions-manager`, they are indirectly heavy tested through system tests but it would be nice to at least test the public API
<!-- NOTE: All pull requests should have tests (rspec in Ruby, qunit in JavaScript). If your code does not include test coverage, please include an explanation of why it was omitted. -->
2022-12-21 20:21:02 +08:00
|
|
|
before { SiteSetting.navigation_menu = "sidebar" }
|
2022-11-08 23:23:13 +08:00
|
|
|
|
|
|
|
context "when opening channel from sidebar with drawer preferred" do
|
|
|
|
it "opens channel in drawer" do
|
|
|
|
visit("/t/-/#{topic.id}")
|
|
|
|
chat_page.open_from_header
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_drawer_page.close
|
2023-04-12 15:52:10 +08:00
|
|
|
sidebar_component.click_link(category_channel.name)
|
2022-11-08 23:23:13 +08:00
|
|
|
|
|
|
|
expect(page).to have_css(".chat-message-container[data-id='#{message.id}']")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening channel from sidebar with full page preferred" do
|
|
|
|
it "opens channel in full page" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_drawer_page.maximize
|
2022-11-08 23:23:13 +08:00
|
|
|
visit("/")
|
2023-04-12 15:52:10 +08:00
|
|
|
sidebar_component.click_link(category_channel.name)
|
2022-11-08 23:23:13 +08:00
|
|
|
|
|
|
|
expect(page).to have_current_path(
|
2023-01-27 20:58:12 +08:00
|
|
|
chat.channel_path(category_channel.slug, category_channel.id),
|
2022-11-08 23:23:13 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2022-11-09 06:58:11 +08:00
|
|
|
|
|
|
|
context "when starting draft from sidebar with drawer preferred" do
|
|
|
|
it "opens draft in drawer" do
|
|
|
|
visit("/")
|
2022-11-11 13:39:15 +08:00
|
|
|
sidebar_page.open_draft_channel
|
2022-11-09 06:58:11 +08:00
|
|
|
|
|
|
|
expect(page).to have_current_path("/")
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).to have_css(".chat-drawer.is-expanded .direct-message-creator")
|
2022-11-11 13:39:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when starting draft from drawer with drawer preferred" do
|
|
|
|
it "opens draft in drawer" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
|
|
|
chat_drawer_page.open_draft_channel
|
|
|
|
|
|
|
|
expect(page).to have_current_path("/")
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).to have_css(".chat-drawer.is-expanded .direct-message-creator")
|
2022-11-09 06:58:11 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when starting draft from sidebar with full page preferred" do
|
|
|
|
it "opens draft in full page" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_drawer_page.maximize
|
2022-11-09 06:58:11 +08:00
|
|
|
visit("/")
|
2022-11-11 13:39:15 +08:00
|
|
|
sidebar_page.open_draft_channel
|
2022-11-09 06:58:11 +08:00
|
|
|
|
|
|
|
expect(page).to have_current_path("/chat/draft-channel")
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).not_to have_css(".chat-drawer.is-expanded")
|
2022-11-09 06:58:11 +08:00
|
|
|
end
|
|
|
|
end
|
2022-11-11 13:39:15 +08:00
|
|
|
|
|
|
|
context "when opening browse page from drawer in drawer mode" do
|
|
|
|
it "opens browser page in full page" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
|
|
|
chat_drawer_page.open_browse
|
|
|
|
|
|
|
|
expect(page).to have_current_path("/chat/browse/open")
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).not_to have_css(".chat-drawer.is-expanded")
|
2022-11-11 13:39:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening browse page from sidebar in drawer mode" do
|
|
|
|
it "opens browser page in full page" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
|
|
|
sidebar_page.open_browse
|
|
|
|
|
|
|
|
expect(page).to have_current_path("/chat/browse/open")
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).not_to have_css(".chat-drawer.is-expanded")
|
2022-11-11 13:39:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when re-opening drawer after navigating to a channel" do
|
|
|
|
it "opens drawer on correct channel" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
|
|
|
chat_drawer_page.open_channel(category_channel_2)
|
2023-04-13 16:08:12 +08:00
|
|
|
chat_drawer_page.back
|
2022-11-11 13:39:15 +08:00
|
|
|
chat_drawer_page.close
|
|
|
|
chat_page.open_from_header
|
|
|
|
|
|
|
|
expect(page).to have_current_path("/")
|
2022-11-25 21:15:38 +08:00
|
|
|
expect(page).to have_css(".chat-drawer.is-expanded")
|
2022-11-11 13:39:15 +08:00
|
|
|
expect(page).to have_content(category_channel_2.title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when re-opening full page chat after navigating to a channel" do
|
|
|
|
it "opens full page chat on correct channel" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
|
|
|
chat_drawer_page.maximize
|
|
|
|
sidebar_page.open_channel(category_channel_2)
|
|
|
|
find("#site-logo").click
|
|
|
|
chat_page.open_from_header
|
|
|
|
|
|
|
|
expect(page).to have_current_path(
|
2023-01-27 20:58:12 +08:00
|
|
|
chat.channel_path(category_channel_2.slug, category_channel_2.id),
|
2022-11-11 13:39:15 +08:00
|
|
|
)
|
|
|
|
expect(page).to have_content(category_channel_2.title)
|
|
|
|
end
|
|
|
|
end
|
2022-11-12 05:32:06 +08:00
|
|
|
|
|
|
|
context "when opening a channel in full page" do
|
2023-04-11 10:31:17 +08:00
|
|
|
fab!(:other_user) { Fabricate(:user) }
|
2023-06-28 07:58:47 +08:00
|
|
|
fab!(:dm_channel) { Fabricate(:direct_message_channel, users: [current_user, other_user]) }
|
2023-04-11 10:31:17 +08:00
|
|
|
|
2022-11-12 05:32:06 +08:00
|
|
|
it "activates the channel in the sidebar" do
|
2023-01-27 20:58:12 +08:00
|
|
|
visit("/chat/c/#{category_channel.slug}/#{category_channel.id}")
|
2023-04-12 15:52:10 +08:00
|
|
|
|
|
|
|
expect(sidebar_component).to have_section_link(category_channel.name, active: true)
|
2022-11-12 05:32:06 +08:00
|
|
|
end
|
2023-04-11 10:31:17 +08:00
|
|
|
|
|
|
|
it "does not have multiple channels marked active in the sidebar" do
|
|
|
|
chat_page.visit_channel(dm_channel)
|
|
|
|
|
2023-04-12 15:52:10 +08:00
|
|
|
expect(sidebar_component).to have_section_link(other_user.username, active: true)
|
|
|
|
|
|
|
|
sidebar_component.click_section_link(category_channel.name)
|
2023-04-11 10:31:17 +08:00
|
|
|
|
2023-04-12 15:52:10 +08:00
|
|
|
expect(sidebar_component).to have_section_link(category_channel.name, active: true)
|
|
|
|
expect(sidebar_component).to have_one_active_section_link
|
2023-04-11 10:31:17 +08:00
|
|
|
end
|
2022-11-12 05:32:06 +08:00
|
|
|
end
|
|
|
|
|
2022-12-06 05:42:35 +08:00
|
|
|
context "when going back to channel from channel settings in full page" do
|
|
|
|
it "activates the channel in the sidebar" do
|
2023-01-27 20:58:12 +08:00
|
|
|
visit("/chat/c/#{category_channel.slug}/#{category_channel.id}/info/settings")
|
2022-12-06 05:42:35 +08:00
|
|
|
find(".chat-full-page-header__back-btn").click
|
|
|
|
expect(page).to have_content(message.message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-11-12 05:32:06 +08:00
|
|
|
context "when clicking logo from a channel in full page" do
|
|
|
|
it "deactivates the channel in the sidebar" do
|
2023-01-27 20:58:12 +08:00
|
|
|
visit("/chat/c/#{category_channel.slug}/#{category_channel.id}")
|
2022-11-12 05:32:06 +08:00
|
|
|
find("#site-logo").click
|
|
|
|
|
2023-05-05 08:16:23 +08:00
|
|
|
expect(sidebar_component).to have_no_section_link(category_channel.name, active: true)
|
2022-11-12 05:32:06 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when opening a channel in drawer" do
|
|
|
|
it "activates the channel in the sidebar" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
2023-04-12 15:52:10 +08:00
|
|
|
sidebar_component.click_link(category_channel.name)
|
2022-11-12 05:32:06 +08:00
|
|
|
|
2023-04-12 15:52:10 +08:00
|
|
|
expect(sidebar_component).to have_section_link(category_channel.name, active: true)
|
2022-11-12 05:32:06 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when closing drawer in a channel" do
|
|
|
|
it "deactivates the channel in the sidebar" do
|
|
|
|
visit("/")
|
|
|
|
chat_page.open_from_header
|
2023-04-12 15:52:10 +08:00
|
|
|
|
|
|
|
sidebar_component.click_link(category_channel.name)
|
2022-11-12 05:32:06 +08:00
|
|
|
chat_drawer_page.close
|
|
|
|
|
2023-05-05 08:16:23 +08:00
|
|
|
expect(sidebar_component).to have_no_section_link(category_channel.name, active: true)
|
2022-11-12 05:32:06 +08:00
|
|
|
end
|
|
|
|
end
|
2022-11-08 23:23:13 +08:00
|
|
|
end
|
2022-11-04 22:06:24 +08:00
|
|
|
end
|