mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
89883b2f51
* WIP: Experiemental Bulk Topic Actions Dropdown Creates a new dropdown that can be used for topic bulk actions.
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe "Topic bulk select", type: :system do
|
|
before { SiteSetting.experimental_topic_bulk_actions_enabled_groups = "1" }
|
|
fab!(:topics) { Fabricate.times(10, :post).map(&:topic) }
|
|
let(:topic_list_header) { PageObjects::Components::TopicListHeader.new }
|
|
let(:topic_list) { PageObjects::Components::TopicList.new }
|
|
|
|
context "when in topic" do
|
|
fab!(:admin)
|
|
|
|
before { sign_in(admin) }
|
|
|
|
it "closes multiple topics" do
|
|
visit("/latest")
|
|
expect(page).to have_css(".topic-list button.bulk-select")
|
|
expect(topic_list_header).to have_bulk_select_button
|
|
|
|
# Click bulk select button
|
|
topic_list_header.click_bulk_select_button
|
|
expect(topic_list).to have_topic_checkbox(topics.first)
|
|
|
|
# Select Topics
|
|
topic_list.click_topic_checkbox(topics.first)
|
|
topic_list.click_topic_checkbox(topics.second)
|
|
|
|
# Has Dropdown
|
|
expect(topic_list_header).to have_bulk_select_topics_dropdown
|
|
topic_list_header.click_bulk_select_topics_dropdown
|
|
|
|
# Clicking the close button opens up the modal
|
|
expect(topic_list_header).to have_close_topics_button
|
|
topic_list_header.click_close_topics_button
|
|
expect(topic_list_header).to have_bulk_select_modal
|
|
|
|
# Closes the selected topics
|
|
topic_list_header.click_bulk_topics_confirm
|
|
expect(topic_list).to have_closed_status(topics.first)
|
|
end
|
|
end
|
|
end
|