DEV: ensures chat browse spec is waiting for search (#21789)

We were not checking that the page had finished loading resulting in various flakeys. This comlit also refactors the spec to use a proper page object.
This commit is contained in:
Joffrey JAFFEUX 2023-05-28 16:16:09 +02:00 committed by GitHub
parent 9392bd0f79
commit 705410ee48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 100 additions and 75 deletions

View File

@ -3,11 +3,8 @@
RSpec.describe "Browse page", type: :system, js: true do
fab!(:current_user) { Fabricate(:user) }
let(:chat) { PageObjects::Pages::Chat.new }
def browse_view
page.find(".chat-browse-view")
end
let(:chat_page) { PageObjects::Pages::Chat.new }
let(:browse_page) { PageObjects::Pages::ChatBrowse.new }
before do
sign_in(current_user)
@ -18,8 +15,7 @@ RSpec.describe "Browse page", type: :system, js: true do
before { current_user.user_option.update!(chat_enabled: false) }
it "redirects to homepage" do
visit("/chat/browse")
visit("/chat/browse") # no page object here as we actually don't load it
expect(page).to have_current_path("/latest")
end
end
@ -27,48 +23,44 @@ RSpec.describe "Browse page", type: :system, js: true do
context "when user has chat enabled" do
context "when visiting browse page" do
it "defaults to open filer" do
visit("/chat/browse")
expect(page).to have_current_path("/chat/browse/open")
chat_page.visit_browse
expect(browse_page).to have_current_path("/chat/browse/open")
end
it "has the expected tabs" do
visit("/chat/browse")
expect(browse_view).to have_content(I18n.t("js.chat.browse.filter_all"))
expect(browse_view).to have_content(I18n.t("js.chat.browse.filter_open"))
expect(browse_view).to have_content(I18n.t("js.chat.browse.filter_closed"))
chat_page.visit_browse
expect(browse_page).to have_channel(name: I18n.t("js.chat.browse.filter_all"))
expect(browse_page).to have_channel(name: I18n.t("js.chat.browse.filter_open"))
expect(browse_page).to have_channel(name: I18n.t("js.chat.browse.filter_closed"))
end
it "has not archived tab available" do
visit("/chat/browse")
expect(browse_view).to have_no_content(I18n.t("js.chat.browse.filter_archived"))
chat_page.visit_browse
expect(browse_page).to have_no_channel(name: I18n.t("js.chat.browse.filter_archived"))
end
it "redirects archived tab to default tab" do
visit("/chat/browse/archived")
chat_page.visit_browse(:archived)
expect(page).to have_current_path("/chat/browse/open")
expect(browse_page).to have_current_path("/chat/browse/open")
end
context "when archiving channels is enabled" do
before { SiteSetting.chat_allow_archiving_channels = true }
it "has the archived tab" do
visit("/chat/browse")
expect(browse_view).to have_content(I18n.t("js.chat.browse.filter_archived"))
chat_page.visit_browse
expect(browse_page).to have_channel(name: I18n.t("js.chat.browse.filter_archived"))
end
end
end
context "when on mobile", mobile: true do
it "has a back button" do
visit("/chat/browse")
chat_page.visit_browse
find(".chat-full-page-header__back-btn").click
expect(page).to have_current_path("/chat")
expect(browse_page).to have_current_path("/chat")
end
end
@ -78,28 +70,28 @@ RSpec.describe "Browse page", type: :system, js: true do
context "when results are found" do
it "lists expected results" do
visit("/chat/browse")
find(".chat-browse-view .dc-filter-input").fill_in(with: category_channel_1.name)
chat_page.visit_browse
browse_page.search(category_channel_1.name)
expect(browse_view).to have_content(category_channel_1.name)
expect(browse_view).to have_no_content(category_channel_2.name)
expect(browse_page).to have_channel(name: category_channel_1.name)
expect(browse_page).to have_no_channel(name: category_channel_2.name)
end
end
context "when results are not found" do
it "displays the correct message" do
visit("/chat/browse")
find(".chat-browse-view .dc-filter-input").fill_in(with: "x")
chat_page.visit_browse
browse_page.search("x")
expect(browse_view).to have_content(I18n.t("js.chat.empty_state.title"))
expect(browse_page).to have_channel(name: I18n.t("js.chat.empty_state.title"))
end
it "doesnt display any channel" do
visit("/chat/browse")
find(".chat-browse-view .dc-filter-input").fill_in(with: "x")
chat_page.visit_browse
browse_page.search("x")
expect(browse_view).to have_no_content(category_channel_1.name)
expect(browse_view).to have_no_content(category_channel_2.name)
expect(browse_page).to have_no_channel(name: category_channel_1.name)
expect(browse_page).to have_no_channel(name: category_channel_2.name)
end
end
end
@ -116,48 +108,48 @@ RSpec.describe "Browse page", type: :system, js: true do
shared_examples "never visible channels" do
it "doesnt list direct message channel" do
expect(browse_view).to have_no_content(direct_message_channel_1.title(current_user))
expect(browse_page).to have_no_channel(name: direct_message_channel_1.title(current_user))
end
it "doesnt list destroyed channels" do
expect(browse_view).to have_no_content(category_channel_5.title)
expect(browse_page).to have_no_channel(name: category_channel_5.title)
end
end
context "when filter is all" do
it "lists all category channels" do
visit("/chat/browse/all")
chat_page.visit_browse(:all)
expect(browse_view).to have_content(category_channel_1.name)
expect(browse_view).to have_content(category_channel_2.name)
expect(browse_view).to have_content(category_channel_3.name)
expect(browse_view).to have_content(category_channel_4.name)
expect(browse_page).to have_channel(name: category_channel_1.name)
expect(browse_page).to have_channel(name: category_channel_2.name)
expect(browse_page).to have_channel(name: category_channel_3.name)
expect(browse_page).to have_channel(name: category_channel_4.name)
end
context "when loading more" do
before { 25.times { Fabricate(:chat_channel, status: :open) } }
it "works" do
visit("/chat/browse/all")
chat_page.visit_browse(:all)
scroll_to(find(".chat-channel-card:last-child"))
expect(page).to have_selector(".chat-channel-card", count: 29)
expect(browse_page).to have_selector(".chat-channel-card", count: 29)
end
end
include_examples "never visible channels" do
before { visit("/chat/browse/all") }
before { chat_page.visit_browse(:all) }
end
end
context "when filter is open" do
it "lists all opened category channels" do
visit("/chat/browse/open")
chat_page.visit_browse(:open)
expect(browse_view).to have_content(category_channel_1.name)
expect(browse_view).to have_no_content(category_channel_2.name)
expect(browse_view).to have_no_content(category_channel_3.name)
expect(browse_view).to have_no_content(category_channel_4.name)
expect(browse_page).to have_channel(name: category_channel_1.name)
expect(browse_page).to have_no_channel(name: category_channel_2.name)
expect(browse_page).to have_no_channel(name: category_channel_3.name)
expect(browse_page).to have_no_channel(name: category_channel_4.name)
end
context "when loading more" do
@ -165,26 +157,26 @@ RSpec.describe "Browse page", type: :system, js: true do
fab!(:invalid_channel) { Fabricate(:chat_channel, status: :closed) }
it "keeps the filter" do
visit("/chat/browse/open")
chat_page.visit_browse(:open)
expect(page).to have_content(valid_channel.title)
expect(page).to have_no_content(invalid_channel.title)
expect(browse_page).to have_channel(name: valid_channel.title)
expect(browse_page).to have_no_channel(name: invalid_channel.title)
end
end
include_examples "never visible channels" do
before { visit("/chat/browse/open") }
before { chat_page.visit_browse(:open) }
end
end
context "when filter is closed" do
it "lists all closed category channels" do
visit("/chat/browse/closed")
chat_page.visit_browse(:closed)
expect(browse_view).to have_no_content(category_channel_1.name)
expect(browse_view).to have_no_content(category_channel_2.name)
expect(browse_view).to have_content(category_channel_3.name)
expect(browse_view).to have_no_content(category_channel_4.name)
expect(browse_page).to have_no_channel(name: category_channel_1.name)
expect(browse_page).to have_no_channel(name: category_channel_2.name)
expect(browse_page).to have_channel(name: category_channel_3.name)
expect(browse_page).to have_no_channel(name: category_channel_4.name)
end
context "when loading more" do
@ -192,15 +184,15 @@ RSpec.describe "Browse page", type: :system, js: true do
fab!(:invalid_channel) { Fabricate(:chat_channel, status: :open) }
it "keeps the filter" do
visit("/chat/browse/closed")
chat_page.visit_browse(:closed)
expect(page).to have_content(valid_channel.title)
expect(page).to have_no_content(invalid_channel.title)
expect(browse_page).to have_channel(name: valid_channel.title)
expect(browse_page).to have_no_channel(name: invalid_channel.title)
end
end
include_examples "never visible channels" do
before { visit("/chat/browse/closed") }
before { chat_page.visit_browse(:closed) }
end
end
@ -208,12 +200,12 @@ RSpec.describe "Browse page", type: :system, js: true do
before { SiteSetting.chat_allow_archiving_channels = true }
it "lists all archived category channels" do
visit("/chat/browse/archived")
chat_page.visit_browse(:archived)
expect(browse_view).to have_no_content(category_channel_1.name)
expect(browse_view).to have_no_content(category_channel_2.name)
expect(browse_view).to have_no_content(category_channel_3.name)
expect(browse_view).to have_content(category_channel_4.name)
expect(browse_page).to have_no_channel(name: category_channel_1.name)
expect(browse_page).to have_no_channel(name: category_channel_2.name)
expect(browse_page).to have_no_channel(name: category_channel_3.name)
expect(browse_page).to have_channel(name: category_channel_4.name)
end
context "when loading more" do
@ -221,15 +213,15 @@ RSpec.describe "Browse page", type: :system, js: true do
fab!(:invalid_channel) { Fabricate(:chat_channel, status: :open) }
it "keeps the filter" do
visit("/chat/browse/archived")
chat_page.visit_browse(:archived)
expect(page).to have_content(valid_channel.title)
expect(page).to have_no_content(invalid_channel.title)
expect(browse_page).to have_channel(name: valid_channel.title)
expect(browse_page).to have_no_channel(name: invalid_channel.title)
end
end
include_examples "never visible channels" do
before { visit("/chat/browse/archived") }
before { chat_page.visit_browse(:archived) }
end
end
end

View File

@ -0,0 +1,30 @@
# frozen_string_literal: true
module PageObjects
module Pages
class ChatBrowse < PageObjects::Pages::Base
def component
find(".chat-browse-view")
end
def has_finished_loading?
component.has_css?(".loading-container .spinner")
component.has_no_css?(".loading-container .spinner")
end
def search(query)
component.find(".dc-filter-input").fill_in(with: query)
component.has_css?(".loading-container .spinner")
component.has_no_css?(".loading-container .spinner")
end
def has_channel?(name: nil)
component.has_content?(name)
end
def has_no_channel?(name: nil)
component.has_no_content?(name)
end
end
end
end

View File

@ -55,8 +55,11 @@ module PageObjects
visit(channel.url + "/info")
end
def visit_browse
visit("/chat/browse")
def visit_browse(filter = nil)
url = "/chat/browse"
url += "/" + filter.to_s if filter
visit(url)
PageObjects::Pages::ChatBrowse.new.has_finished_loading?
end
def minimize_full_page