2023-06-05 11:08:04 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-06-06 20:26:58 -05:00
|
|
|
RSpec.describe "Network Disconnected", type: :system do
|
2023-06-05 11:08:04 -05:00
|
|
|
fab!(:current_user) { Fabricate(:user) }
|
|
|
|
|
2023-06-06 02:39:18 -05:00
|
|
|
before { skip(<<~TEXT) }
|
|
|
|
This group of tests is flaky and needs to be fixed. Example of error:
|
|
|
|
|
|
|
|
Failures:
|
|
|
|
|
|
|
|
1) Network Disconnected Doesn't show the offline indicator when the site setting isn't present
|
|
|
|
Failure/Error: expect(page).to have_css("html.message-bus-offline")
|
|
|
|
expected to find css "html.message-bus-offline" but there were no matches
|
|
|
|
TEXT
|
|
|
|
|
2023-06-05 11:08:04 -05:00
|
|
|
def with_network_disconnected
|
|
|
|
page.driver.browser.network_conditions = { offline: true }
|
|
|
|
yield
|
|
|
|
page.driver.browser.network_conditions = { offline: false }
|
|
|
|
end
|
|
|
|
|
2023-06-06 02:39:18 -05:00
|
|
|
it "Message bus connectivity service adds class to DOM and displays offline indicator" do
|
2023-06-05 11:08:04 -05:00
|
|
|
SiteSetting.enable_offline_indicator = true
|
|
|
|
|
|
|
|
visit("/c")
|
|
|
|
|
|
|
|
expect(page).to have_no_css("html.message-bus-offline")
|
|
|
|
expect(page).to have_no_css(".offline-indicator")
|
|
|
|
|
|
|
|
with_network_disconnected do
|
|
|
|
# Message bus connectivity services adds the disconnected class to the DOM
|
|
|
|
expect(page).to have_css("html.message-bus-offline")
|
|
|
|
|
|
|
|
# Offline indicator is rendered
|
|
|
|
expect(page).to have_css(".offline-indicator")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "Doesn't show the offline indicator when the site setting isn't present" do
|
|
|
|
SiteSetting.enable_offline_indicator = false
|
|
|
|
|
|
|
|
visit("/c")
|
|
|
|
|
|
|
|
with_network_disconnected do
|
|
|
|
expect(page).to have_css("html.message-bus-offline")
|
|
|
|
expect(page).not_to have_css(".offline-indicator")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|