mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 00:16:19 +08:00
585a2e4e77
- Inline mentions on posts - Inline mentions on chat messages - The user autocomplete for the composer - The user autocomplete for chat - The chat section of the sidebar
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "User status | sidebar", type: :system do
|
|
fab!(:current_user) { Fabricate(:user) }
|
|
fab!(:dm_channel_1) { Fabricate(:direct_message_channel, users: [current_user]) }
|
|
|
|
let(:chat) { PageObjects::Pages::Chat.new }
|
|
let(:channel) { PageObjects::Pages::ChatChannel.new }
|
|
|
|
before do
|
|
SiteSetting.navigation_menu = "sidebar"
|
|
SiteSetting.enable_user_status = true
|
|
chat_system_bootstrap
|
|
current_user.set_status!("online", "heart")
|
|
sign_in(current_user)
|
|
end
|
|
|
|
it "shows user status" do
|
|
Jobs.run_immediately!
|
|
|
|
visit("/")
|
|
|
|
expect(find(".user-status-message .emoji")["alt"]).to eq("heart")
|
|
expect(find(".user-status-message .emoji")["src"]).to include("heart")
|
|
end
|
|
|
|
context "when changing status" do
|
|
it "updates status" do
|
|
Jobs.run_immediately!
|
|
|
|
visit("/")
|
|
current_user.set_status!("offline", "tooth")
|
|
|
|
expect(page).to have_css('.user-status-message .emoji[alt="tooth"]')
|
|
expect(find(".user-status-message .emoji")["src"]).to include("tooth")
|
|
end
|
|
end
|
|
|
|
context "when removing status" do
|
|
it "removes status" do
|
|
Jobs.run_immediately!
|
|
|
|
visit("/")
|
|
current_user.clear_status!
|
|
|
|
expect(page).to have_no_css(".user-status-message")
|
|
end
|
|
end
|
|
end
|